Built something you're proud of? Tell the story. A quick G2 review of App Engine or Build Agent helps other developers see what's possible on ServiceNow. Share your experience.

PrashantLearnIT
Tera Sage

Did you know you can apply template within a scoped application?

 

Here is an example:

var sys_id_of_template = '';  // provide here the sys_id of the template record  
var grObj = new GlideRecord('<tableName>'); // provide here the table on which you wish to apply the template
grObj.initialize(); 
var t = new GlideTemplate.get(sys_id_of_template);   
t.apply(grObj);
grObj.insert();

 

If my content helped you in anyway, please mark this content as BOOKMARK, SUBSCRIBE & HELPFUL

 

Best Regards,

Prashant Kumar (LearnIT)

 

YouTube Channel LearnIT: https://www.youtube.com/@learnitwithprashant

Blog LearnIT: https://medium.com/@LearnITbyPrashant

Prashant Kumar LinkedIn: https://www.linkedin.com/in/learnitbyprashant/

ServiceNow Community Prashant Kumar - https://www.servicenow.com/community/user/viewprofilepage/user-id/19635