logo

NJP

News Jace Pro

ServiceNow intelligence for people who need to know what changed.

News, acquisitions, companies, people, events, and public filings in one searchable place. No vendor press-release fog.

The latest

What’s moving right now

Showing stories connected to Ruen Smith. View profile Clear
ServiceNow Blog · over 2 years ago

ServiceNow SAMPLE REST MESSAGE POST - Service Catalog Cart API - How to Order a Catalog Item

<h1 style="text-align: left;">&nbsp;ServiceNow SAMPLE REST MESSAGE POST - Service Catalog Cart API - How to Order a Catalog Item on a Remote Instance</h1><div>see&nbsp;<a href="https://docs.servicenow.com/bundle/vancouver-api-reference/page/integrate/inboun...

Import · almost 3 years ago

SERVICENOW Control When Related Lists Load

In a nutshell this is controlled via user preference> display> set 'load related lists in classic forms' to on demand / whichever option you prefer Haven't tested these all rec...

Details →
Import · almost 3 years ago

ServiceNow RECORD PRODUCER VARIABLES

OPTION 1: var sys\_id\='14d3ca4b1b2ebd50af03dce0b24bcbfc'; var producerVars\_allVars \= new GlideRecord('question\_answer'); producerVars\_allVars.addQuery('table\_sys\_id'...

Details →
Import · almost 3 years ago

ServiceNow Flow Designer Tables

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 Glid...

Details →
Import · almost 3 years ago

ServiceNow SimpleList Widget Vulnerability

Link: <https://support.servicenow.com/kb?id=kb%5Farticle%5Fview&sysparm%5Farticle=KB1553688> recent vulnerability affecting the ServiceNow service portal widget called SimpleLi...

Details →
Import · almost 3 years ago

ServiceNow try-catch error message

I've often done it this way: var message \= ex.toString(); gs.error('ERROR is script xyz::' + message); But can try it this way also: var message \= ex.getMessage()...

Details →
Import · almost 3 years ago

ServiceNow Decrypt a passwordv2 field

For a field named 'password', either of below should work: gr\_atr.password.getDecryptedValue()); var Encrypter \= new GlideEncrypter(); password\=(Encrypter.decrypt(gr...

Details →
Import · almost 3 years ago

ServiceNow Javascript substr deprecated

(Vancouver version) var password='hodljdsnw340949'; var len=9; I would be inclined to replace this: return password.substr(0, len); with: return password.substring(0, le...

Details →