Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Hi All,I am trying to peform System Clone from Sandbox to Dev instance...When I am trying to define Target instance on Source.. getting the error:Destination does not allow clone requests (Typically used by live production instances, a property was s

mallereddy
Kilo Explorer

Hi All,I am trying to peform System Clone from Sandbox to Dev instance...When I am trying to define Target instance on Source.. getting the error:Destination does not allow clone requests (Typically used by live production instances, a property was set that prevents the instance from being cloned over) So when I try to check in System properties to set to "True"...I could not able to find"All Properties" Module under System Properties..Can one help please.Adv Thanks.

1 ACCEPTED SOLUTION

Try using the method I suggested above by typing sys_properties.list into the type filter text box at the top of the leftnav.



Edit: Here's a link to a wiki article describing this method: Navigating Applications - ServiceNow Wiki


View solution in original post

11 REPLIES 11

I was checking this on cloning demo instances and it is not allowed to update the property.


So I just tried using background script.



1. Take elevated privileges.


2. Type 'Scripts - background' in the filter.


3. Enter below script:



        var gr = new GlideRecord('sys_properties');


        if(gr.get('sys_id', 'sys id of the property on your instance')){


                  gr.value = 'true';


                  gr.update();


}




// Note: Running background script can cause data loss



Thanks


Deepak


Thanks, while this let me change the value, i couldnt clone to a dev instance, the final check in the clone setup process prevented it