'Commit' / 'Preview' button missing from Retrieved Update SetsIssue When the User navigates to retrieve update set and open any of the update set records, the Commit and Preview Update Set UI Actions are not visible to the user. https://<instance name>.service-now.com/sys_remote_update_set_list.do?sysparm_userpref_module=bf1184a10a0a0b5000d8f781992a9b5e&sysparm_fixed_query=sys_class_name=sys_remote_update_set ReleaseAnyCause - This is happening because the user's session domain is set to different domain scope and not global. The UI actions will only be visible if the user's session domain is global. - This is defined on the below Script include AbstractUpdateUIActionUtil, where it checks this on the method _isCurrentDomainSafe(). This method is called from those 2 UI action's calling script includes ( UpdateSetCommitVisible and UpdateSetPreviewVisible)Script includes:- AbstractUpdateUIActionUtil: https://<instance name>.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=1b831b5747c22200a03a19fbac9a713a- UpdateSetCommitVisible: https://<instance name>.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=1dd97a4b47022200a03a19fbac9a71ab- UpdateSetPreviewVisible: https://<instance name>.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=0fc79b9747c22200a03a19fbac9a71c3UI Actions:- Commit Update Set UI action: https://<instance name>.service-now.com/sys_ui_action.do?sys_id=c38b2cab0a0a0b5000470398d9e60c36This calls UpdateSetCommitVisible script include- Preview Update Set UI action: https://<instance name>.service-now.com/sys_ui_action.do?sys_id=d9b649160a0a0b5400681316de2cba59This calls UpdateSetPreviewVisible script includeBoth these Script Include extends AbstractUpdateUIActionUtil, where the _isCurrentDomainSafe method is defined (https://<instance name>.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=1b831b5747c22200a03a19fbac9a713a) ResolutionFor the UI Actions to be visible, the user needs to be on a global domain.