Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Add untracked record to update set as tracked change
Ensure that the update set is in tracking / active mode, and application scope matches the intended update while running the script
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// 1. Add record to update set, Query for the record - get sys id
var rec = new GlideRecord('x_sms_request');
rec.get('4012cbc3830d1210887ced70deaad389');
// 2. Push the record into the current update set
var um = new GlideUpdateManager2();
um.saveRecord(rec);
Loading