- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2024 07:16 AM
Hi,
I done few changes on Knowledge Bases and try to capture in the update set. But I don't have any option to capture it like Related link...
Can anyone help here..how to get that link in the Related Link
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2024 07:19 AM
I think it's removed in latest release. you can still run a background script to use that utility
1. System Definition -> Scripts - Background
2. Add and run below code after replacing table that contains the record and sys Id.
//Query for the record
var rec = new GlideRecord('yourTableNameHere');
rec.get('sysId');
//Push the record into the current update set
var um = new GlideUpdateManager2();
um.saveRecord(rec);
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2024 07:19 AM
I think it's removed in latest release. you can still run a background script to use that utility
1. System Definition -> Scripts - Background
2. Add and run below code after replacing table that contains the record and sys Id.
//Query for the record
var rec = new GlideRecord('yourTableNameHere');
rec.get('sysId');
//Push the record into the current update set
var um = new GlideUpdateManager2();
um.saveRecord(rec);
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2024 08:30 AM
You can use the following form Share to add it to your instances: https://developer.servicenow.com/connect.do#!/share/contents/9824957_add_to_update_set_utility?v=8.2...