ITSM articles
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Articles

JavaScript for ServiceNow development

I came across a good website where a beginner can get a good content for Javascript before going for ServiceNow development. https://www.codecademy.com/learn/introduction-to-javascript Some of the part (projects and assignments) are paid one. But one...

Validate Email ID

Validate an Email ID using Regex ? There are many articles already posted on this by Nishat, Ankur etc. I am trying to recollect the things and put it in a manner so that one can directly use it without any hassle. 1. Using inbuilt Regex option in Se...

find_real_file.png

Pros and cons of Catalog Item Designer

There have been discussions held with respect to Catalog Item Designer usage. Some companies have found this tool quite useful for its operations, whereas others struggle and cannot make the public embrace the concept and get Service Catalog developm...

Service Catalog - Using catalog client scripts on multi-row variable set to populate a custom table as and when user makes an entry to multi-row variable set

I am new to ServiceNOW community and here is my first article related to service catalog. Did not find an exact article on this topic so thought to write one up. Please share your feedback. Thanks! Recently had a  requirement on service catalog where...

find_real_file.png
Sumit3 by Giga Explorer
  • 1363 Views
  • 2 comments
  • 1 helpfuls

Relation between SLA and REQ

Hi,I would like to create a relation which is highlited  in the colour yellow on like REQ = REQ0000001  on REQ table and Task TableCould you provide ne how to create a relation on Both REQ table and Task Table.Thanks,yashwanth @asifnoor could you hel...

Change Color for State. if Priority is Critical then state is Red , Priority is High then Change state to Orange, Priority is Moderate then Change state to Green

function onChange(control, oldValue, newValue, isLoading, isTemplate) { if (isLoading || newValue === '') { return; }var Priority = g_form.getValue('priority');if(Priority=='3') { g_form.getElement('state').setStyle({color:"green"}); } else if(Priori...

Top Contributors