ServiceNow Learning 48: Usage of restoreLocation() function in GlideRecord in ServiceNow.
Hi All, I found a very useful way to use restoreLocation() in GlideRecord scripting. Script: var incidentRecords = new GlideRecord('incident');incidentRecords.addActiveQuery(); // same as .addQuery('active', true) but fancier incidentRecords.setLimit...
