The Now Platform® Washington DC release is live. Watch now!

Help
Mega Sage
Mega Sage
since ‎09-24-2018
‎09-16-2023

User Statistics

  • 2,675 Posts
  • 272 Solutions
  • 69 Helpfuls given
  • 647 Helpfuls received

User Activity

In OOB, we have a useful utility, GlideRecordUtil() script include to work with GlideRecords. I've found two handy functions to fetch and update the record data. populateFromGR()mergeToGR() populateFromGR(object, gr, ignoreFields)  This function c...
We can enable search configurations on Record producer(s) variables so that when users enter data into a variable,  they can access related search results such as articles/catalog items. Record producer configurations are available in Service Now to ...
In general, We set the timer to Schedule jobs in Service Now to automate manual tasks. We can also use the below API to execute the JOB from the server-side scripts.SncTriggerSynchronizer.executeNow(<Pass the JOB record object>);
We have a global utility called GlobalServiceCatalogUtil in ServiceNow to retrieve information related to Catalog items, one of the interesting functions is getVariablesForTask It retrieves all the variables associated with SCTASK in JSON format. Han...
We can utilize the Service catalog API to raise catalog requests from external applications when integrating third-party applications with ServiceNow. We'll need two important APIs to submit the request  > Add Item To Cart (POST) > Submit Order (POS...