My client script is not executing. Any error message or info message also not showing up
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2024 07:20 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2024 02:55 AM
Hi there,
So you are saying that also these at the start of your script don't trigger?
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2024 03:13 AM
@srinivasrao Please update line ga.addParam('sys_id', callerID); with the following
ga.addParam('sysparm_sys_id',callerID);
in client script
In script include, replace var sys_id = this.getParameter('sys_id'); with the following.
var sys_id = this.getParameter('sysparm_sys_id');
Also, check the following in the client script.
1. UI Type: Make sure that UI Type is correctly set
2. Global: Make sure that either Global is checked or correct view is selected
3. Active: Check that Active checkbox is checked.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2024 05:50 AM
Hi Srinivasarao,
Can you please check in script include form check the client callable checkbox as true and in client script on change needs to select the correct field then you can use below script