Skip to main content

ServiceNow bulk create request, change tickets in a test environment

 

var instURL = gs.getProperty('glide.servlet.uri'); if (instURL.indexOf('https://PROD.service-now.com') > -1) { gs.print('do not run on prod');
} else { //--bulk-create some test tickets for (ic = 0; ic < 5; ic++) { try { createTestReq(); } catch (ex) { } } for (ic2 = 0; ic2 < 5; ic2++) { try { createTestChg(); } catch (ex) { } } //checkOutTestReq(); //createTestChg(); } function checkOutTestReq() { var cart = new sn_sc.CartJS(); var item = { 'sysparm_id': 'eddc1353dba33700c3aaee805b9xxxx',//--cat item sysid 'sysparm_quantity': '1', 'variables': { 'short_description': 'test-from fix script', 'description': 'test-from fix script', 'nature_of_the_request': 'test-from fix script' } }; //var cartDetails = cart.addToCart(item); var cartDetails = cart.orderNow(item); gs.log(JSON.stringify(cartDetails), 'ritm-bulkCreateTestTickets'); } function createTestChg() { var grChg = new GlideRecord('change_request'); grChg.newRecord(); grChg.type = 'normal'; grChg.short_description = 'test-from fix script'; grChg.description = 'test-from fix script'; grChg.category = 'Applications Software'; grChg.priority = '2'; grChg.risk = '3'; grChg.impact = '2'; grChg.assignment_group = '68648246db2060949fce4705059xxxxx'; grChg.assigned_to = '7f7b201d4fe99300892a0081811xxxxx'; grChg.start_date = '16-09-2022 01:55:44'; grChg.end_date = '17-09-2022 01:55:44'; grChg.justification = 'test'; grChg.implementation_plan = 'test'; grChg.risk_impact_analysis = 'test'; grChg.backout_plan = 'test'; grChg.test_plan = 'test'; grChg.insert(); gs.log(grChg.number, 'change-bulkCreateTestTickets'); }

Comments

Popular posts from this blog

ServiceNow check for null or nil or empty (or not)

Haven't tested these all recently within global/local scopes, so feel free to have a play! option 1 use an encoded query embedded in the GlideRecord , e.g.  var grProf = new GlideRecord ( 'x_cls_clear_skye_i_profile' ); grProf . addQuery ( 'status=1^ owner=NULL ' ); grProf . query (); even better use the glideRecord  addNotNullQuery or addNullQuery option 2 JSUtil.nil / notNil (this might be the most powerful. See this link ) example: if ( current . operation () == 'insert' && JSUtil . notNil ( current . parent ) && ! current . work_effort . nil ())  option 3 there might be times when you need to get inside the GlideRecord and perform the check there, for example if the code goes down 2 optional routes depending on null / not null can use gs.nil : var grAppr = new GlideRecord ( 'sysapproval_approver' ); var grUser = new GlideRecord ( 'sys_user' ); if ( grUser . get ( 'sys_id' , current . approver )){

Get URL Parameter - server side script (portal or classic UI)

Classic UI : var sURL_editparam = gs . action . getGlideURI (). getMap (). get ( ' sysparm_aparameter ' ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); } Portal : var sURL_editparam = $sp . getParameter ( " sysparm_aparameter " ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); }