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.

Get sys id by display value

hatazhix
Mega Expert

Hello,

I am making Business Rule that checks incident number and gets it's sys id.

Problem is how can i make a script that checks my display value for example "INCE0012345" as a query?

var inc = new GlideRecord('incident');

query that queries the display value and return sys id of this ince0012345

inc.addQuery("sys_id", 'this is ince0012345 sys id');
inc.query();
1 ACCEPTED SOLUTION

To display the sys_id you need to do:



var gr = new GlideRecord('incident');


gr.addQuery('number', 'INCE0014635');


gr.query();



while(gr.next()){


gs.print(gr.sys_id);


}



Regards,


Sergiu


View solution in original post

10 REPLIES 10

sergiu_panaite
ServiceNow Employee
ServiceNow Employee

Try this:



var gr = new GlideRecord('incident');


gr.addQuery('number', 'INC0053029');


gr.query();



gs.print(gr.getRowCount());



and I get on my own instance:



[0:00:00.021] Script completed in scope global: script



*** Script: 1


If you are in the current scope you can also use:



gr.addQuery('number', current.number);



Replace the incident number you want.



Regards


Sergiu


var a = "INdfCE RITM INsadCE INCE0014635 asdf"


var b = Math.max(a.indexOf("INCE"), a.indexOf("RITM"))


gs.print(b);



var start = a.indexOf('INCE'); // gets the index where INCE starts


var end = a.indexOf(' ', start); // gets the index where INCE ends


var recordNumber = a.substring(start, end).toString();




gs.print(recordNumber);




var gr = new GlideRecord('incident');  


gr.addQuery('number', 'recordNumber');  


gr.query();  



gs.print(gr.getRowCount());



it didn't print rowCount as 1


Is your recordNumber getting printed properly ?


Jamsta1912
Tera Guru

Hello Hai,



If you want to grab the sys_id of the record that triggered the business rule, you can use this:



var mySysID = current.sys_id;