- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2025 06:00 PM
When you export an update set, it is named something like
"sys_remote_update_set_6aafe3af47212210d9c2f884116d430f.xml".
I think the "6aafe3af47212210d9c2f884116d430f" part is sys_id, but which record is it?
It doesn't seem to be an update set or customer update.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2025 06:29 PM
Hi @bonsai
When you click on "Export to XML" related link, it triggers "new updateSetExport.exportUpdateSet(current)" script include function. This function creates an update set in "sys_remote_update_set" tables and return the sys id of it.
action.setRedirectURL("export_update_set.do?sysparm_sys_id=" + sysid + "&sysparm_delete_when_done=true&sysparm_is_remote=false&sysparm_ck=" + gs.getSessionToken());
This URL initiates the download of the exported XML. After the download completes, the temporary update set is automatically deleted.
Thanks,
Dinesh
Please accept the solution and thumbs up if it answers your question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2025 06:29 PM
Hi @bonsai
When you click on "Export to XML" related link, it triggers "new updateSetExport.exportUpdateSet(current)" script include function. This function creates an update set in "sys_remote_update_set" tables and return the sys id of it.
action.setRedirectURL("export_update_set.do?sysparm_sys_id=" + sysid + "&sysparm_delete_when_done=true&sysparm_is_remote=false&sysparm_ck=" + gs.getSessionToken());
This URL initiates the download of the exported XML. After the download completes, the temporary update set is automatically deleted.
Thanks,
Dinesh
Please accept the solution and thumbs up if it answers your question