ServiceNow News
792 items
// Add your code herevar scTask = new GlideRecord('sc\_task');scTask.addActiveQuery();scTask.addQuery('request\_item', current.sys\_id);scTask.query();if (scTask.hasNext()) {gs.addErrorMessage('RIT...
Restrict RITM Closure when SCTASK is Open using Business Rules
Import
·
over 3 years
www.servicenow.com
cache
Hello Everyone,
In this video, I will cover scenario-based solutions which our implementations might require in various projects.
I have explained how to Populate Type of Device in Incident using...
Populate Type of Device in Incident using Business Rules
Import
·
over 3 years
www.servicenow.com
cache
// Add your code here
if (current.parent\_incident != '') {
var cat = current.parent\_incident.category.getDisplayValue();var subcat = current.parent\_incident.subcategory.getDisplayValue();var ...
How to Copy Multiple Field Values in a single field using Business Rules?
Import
·
over 3 years
www.servicenow.com
cache
// Add your code herevar sct = new GlideRecord('sc\_task');sct.addQuery('request\_item', current.request\_item);sct.query();
var totalCount = sct.getRowCount();
var sct1 = new GlideRecord('sc\_ta...
How to Close RITM when SCTASK is Closed using Business Rules
Import
·
over 3 years
www.servicenow.com
cache
How to Hide New Button from Related Lists using List Control
Import
·
over 3 years
www.servicenow.com
// Add your code here
var current\_user = gs.getUserID();
var usr = new GlideRecord('sys\_user');usr.addQuery('sys\_id', current\_user);usr.query();if (usr.next()) {current.addQuery('location=' ...
How to Display List of Incidents as per User's Location using Business Rules
Import
·
over 3 years
www.servicenow.com
cache
function onLoad() {//Type appropriate comment here, and begin script belowvar short\_desc = g\_form.getControl('short\_description');
var desc = g\_form.getControl('description');
short\_desc.pla...
How to Set Placeholder for Change Request using Client Scripts
Import
·
over 3 years
www.servicenow.com
cache
Hello Everyone,
In this video, I will cover scenario-based solutions which our implementations might require in various projects.
I have explained how to Hide Priority fields from Personalized Co...
How to Hide Column/Fields (Priority) from Personalized Columns using Access Control Rules
Import
·
over 3 years
www.servicenow.com
cache
Business Rules Demo | What is Business Rules | Types of Business Rules
Import
·
over 3 years
www.servicenow.com
Business Rules Overview | What is Business Rules | Types of Business Rules
Import
·
over 3 years
www.servicenow.com
In this session, I have explained how to return multiple values from the script include and pass it to the client side.
If you have any feedback related to the scripting part, please write it in t...
Make form non editable using Client Scripts for Change Requests
Import
·
almost 4 years
www.servicenow.com
cache
UI Policies Demo | UI Policies with Examples | UI Policy Actions and Script Execution
Import
·
about 4 years
www.servicenow.com
UI Policy Overview | UI Policies for Beginners | UI Policy Actions and Script Execution
Import
·
about 4 years
www.servicenow.com
Client Script Overview | Client Script for Beginners | Client Script Types
Import
·
about 4 years
www.servicenow.com