About the name of the exported update set

bonsai
Mega Sage

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.

1 ACCEPTED SOLUTION

Dinesh Reddy By
Kilo Sage

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

View solution in original post

1 REPLY 1

Dinesh Reddy By
Kilo Sage

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