Creating a Record Producer and Migrating in a Scoped App

PN2
Kilo Expert

Hi,

 

I am new to creating Scoped apps in ServiceNow. I have created one in Studio but how do I create a record producer for this scoped app? Also, how do I migrate changes from one instance to the next in for scoped apps? Should I still go through the update sources > retrieve updates method?

 

Thanks

5 REPLIES 5

sachin_namjoshi
Kilo Patron
Kilo Patron

You can create record producer in scoped app by first creating update set in your custom scope.

After creating update set in your custom scope, you can create record producer from platform view like below

 

find_real_file.png

 

You need to move update set to migrate your code to next instances.

 

Regards,

Sachin

Namrata Khabale
Giga Guru

Hey PN,

Refer the link:

https://community.servicenow.com/community?id=community_question&sys_id=ffe3544ddb323f004819fb243996...

 

Please refer below link on how to push a Scopped app from one instance to another:

https://docs.servicenow.com/bundle/istanbul-application-development/page/build/applications/task/t_P...

 

you can also publish an application to update set and then migrate on to target instance.

https://docs.servicenow.com/bundle/istanbul-application-development/page/build/applications/task/t_P...

 

Also refer thread:

https://community.servicenow.com/community?id=community_question&sys_id=b1f78e57dbbfa78454250b55ca96...

 

 Mark it Correct or Helpful, if it works based on impact....!!!!

 

Best Regards,

Namrata.

Abhijeet Khandr
Giga Expert

Hello PN,

First you will need to create the update set with the scope

find_real_file.png

Select the scope from the banner and create local update set in that scope

Create the Record producer that will be captured in the update set after that make the update set complete and export to xml

To move the update set to other instance open the retrieved update set upload downloaded update set xml file and preview and the commit the update set

The record producer can be created by selecting the table which will be available there, if unable to see the scoped table then there is some condition on that field written which must be restricting the scoped application table to display there

 

Please Mark Helpful/Correct if this helped you

 

Regards,
Abhijeet

 

PN2
Kilo Expert

My scoped app was created using a global scope and update set because the scope app was still being created. Do I have to create a new update set within the scoped app and move my updates into it to migrate to another instance? Is this the process?