Skip to main content

Posts

Showing posts from October, 2022

ServiceNow GlideRecord Or query example (addOrCondition)

  var gr = new GlideRecord ( "sys_object_source" ); gr . addQuery ( "name" , "SGO-Dynatrace" ); var grOR = gr . addQuery ( "id" , "STARTSWITH" , "HOST-" ); grOR . addOrCondition ( "id" , "STARTSWITH" , "PROCESS_GROUP_INSTANCE-" ); grOR . addOrCondition ( "id" , "STARTSWITH" , "PROCESS_GROUP-" ); grOR . addOrCondition ( "id" , "STARTSWITH" , "SERVICE-" ); grOR . addOrCondition ( "id" , "STARTSWITH" , "APPLICATION-" ); gr . query (); gs . log ( gr . getRowCount (), 'fixScr:Ruens test SG' ); (ServiceNow)      

ServiceNow Notify Twilio References

    https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/product/notify2/reference/notify-landing-page.html   https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/product/notify2/concept/c_NotifyWithIncidentAlert.html   https://docs.servicenow.com/bundle/sandiego-servicenow-platform/page/product/notify2/reference/installed-with-twilio.html   (ServiceNow )