How to add watchlist to Standard Ticket Configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2025 01:09 AM
Hi everyone,
I try to add watchlist in our Standard Ticket Configuration, so a requester can add someone to the watchlist.
I got this message:
Error Message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2025 05:31 AM
This OOB BR handles that validation "Allow only whitelist fields for Header". We cannot disable that OOB BR as it's read-only.
Set or append the watch_list field to the existing standard ticket config record and update via fix script with setWorkflow(false) and the field will get added. This skips that OOB BR during update.
Steps to follow:
1) Select your application scope as "Service Portal - Standard Ticket"
2) Create a fix script and use this code and run it
var rec = new GlideRecord('ticket_configuration');
rec.get('33ad80e787f10010e0ef0cf888cb0b87'); // sysId of the standard ticket config record
rec.info_fields = rec.info_fields + ',' + 'watch_list';
rec.setWorkflow(false);
rec.update();
Output:
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2025 12:55 AM
Hope you are doing good.
Did my reply answer your question?
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2025 07:25 PM
This displays the watchlist, but doesn't allow users to be added. It also only appears when it's already populated. Any suggestions on how to support adding users and showing it when empty?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2025 07:39 PM
I believe since it's not allowed by platform but we have a hack to show, system won't allow to edit it anyways
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader