- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2022 02:41 AM
I have change request where in the work note system is updating the status so that is the schedule job so how we can find the correct schedule job which are updating in the worknote.
Solved! Go to Solution.
- Labels:
-
Change Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2022 02:57 AM
Hi @ak49
Open the list of Scheduled Script Execution [sysauto_script] table.
Add below condition in the filter to see all the Scheduled Jobs which is have 'change_request' in script:
From the Filtered records, find out the Scheduled Job you are looking for.
Thanks
Anubhav Ritolia
ServiceNow Rising Star 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2022 02:57 AM
Hi @ak49
Open the list of Scheduled Script Execution [sysauto_script] table.
Add below condition in the filter to see all the Scheduled Jobs which is have 'change_request' in script:
From the Filtered records, find out the Scheduled Job you are looking for.
Thanks
Anubhav Ritolia
ServiceNow Rising Star 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2022 02:58 AM
Search the scheduled job table with name *change
See how many scheduled jobs are written for change management. One of them is your culprit. Or you can use code search facility in servicenow studio search in all applications to find any specific keyword in codes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2022 03:00 AM
Hi @ak49
Can you provide details of the scheduled jobs as that is where you will need to make the updates.
Are you saying that you have more that one scheduled job updating the working notes when it runs. If that is the case, Can you not updated the script for each scheduled job to have the Job Name included in the comments
Ray
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2022 03:05 AM
Hi Raycallan,
I got the solution and Anubhav has provided me.