Using this background script you can capture the record in the current update set.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2024 11:12 PM
Hello,
Using this background script you can capture the record in the current update set.
var rec = new GlideRecord('table_name'); // select the table of the record
rec.get('sys_id'); // select the sys_id of that perticular record
var um = new GlideUpdateManager2();
um.saveRecord(rec);
Please like the article if you think this will help you.
Thank you.
- 262 Views
0 REPLIES 0