Join the Community
ServiceNow Community
About Vaibhav_Nikam
User Activity
Posts
Replies
No posts to display.
Re: How to validate a mobile number in a ServiceNow catalog form before submission?
02-10-2025
Hi @kusumgautam ,you can use below script for onChange client script:function onChange(control, oldValue, newValue, isLoading, isTemplate) { if (isLoading || newValue === '') { return; } var pattern = /^(\+)([1-9]{2})(\s)(\d{10})$/g; if(...
Re: Set a drop down field as "yes" when a perticular record selected from a reference fiel
02-10-2025
Can you please check and share the backend name of dropdown field and the value you are setting?
Re: HI All
02-10-2025
Hi @basha shaik ,You can use the After Business Rule on table A for insert/update which will update value in table B Like(function executeRule(current, previous /*null when async*/) { var grTab = new GlideRecord('problem'); ...
Re: Set a drop down field as "yes" when a perticular record selected from a reference fiel
02-10-2025
Hi @1_DipikaD ,Can you please try below code?function onChange(control, oldValue, newValue, isLoading, isTemplate) { if (isLoading || newValue == '') { // change '===' to '==' return; } if ( g_form.getValue("department") == "5...
Re: Reference qualifier in catalog item reference field
02-06-2025
Hi @CCZMAX1 ,Can you please check the below article?How can I do a contains search on 'name' as well as other fields for a Reference variable?
View more
Helpfuls from
User
Count
CCZMAX1
1
Paul Porter
1
sanyalshubh
1
ashok17
1
View all
Helpfuls given to
User
Count
Sagar Pagar
3
sushantmalsure
1
Anil Lande
1
Mark Roethof
1
View all