Unable to create Clone Profile Preservers for non-Global/scoped application tablesIssue Unable to create Clone Profile Preservers for non-Global/scoped application tables Example : - Create a Clone - Data Preserver - for a Scoped Application, No System Profile row is created under Preserver section CauseNot supported - new functionality added in Quebec via PRB1399987ResolutionWorkaround : Under Global scope - Go to Clone Data Preserver and Copy Sys_id - Go to Script - Background and run similar: var preserverSysID = 'YOUR_SYS_ID_FROM_PREVIOUS_STEP'; var gr = new GlideRecord('clone_profile_preservers'); gr.get('UNIQUE_SYS_ID'); gr.sys_id = ''; gr.preserver = preserverSysID; gr.profile = 'SYS_ID OF YOUR_DESIRED_PROFILE'; gr.insert();