- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 10:50 AM
I have a need where I need to add 3 users to the RITM watchlist of one catalog item.
I would like to do this through the workflow if possible.
Any way to accomplish this?
Thank you,
Rachel
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 10:54 AM
In the workflow, you can use SetValue activity to set the watch list. Or use runscript, if you have to script and assign users to watchlist.
Also if it is a new catalog, the recommendation is to use flow designer since ServiceNow will not provide support for workflows.
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 10:54 AM
Hi @rachelconstanti yes possible via workflow, how are you going to get those 3 users?
current.watch_list = 'sysid'+ ','+curre t.fieldname;
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 10:54 AM
In the workflow, you can use SetValue activity to set the watch list. Or use runscript, if you have to script and assign users to watchlist.
Also if it is a new catalog, the recommendation is to use flow designer since ServiceNow will not provide support for workflows.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 11:01 AM
It is an existing catalog item and workflow.
I will try using the SetValue activity - that may just work..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 10:54 AM
Hi @rachelconstanti yes possible via workflow, how are you going to get those 3 users?
current.watch_list = 'sysid'+ ','+curre t.fieldname;
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 10:59 AM
the users are in the sys_user table.
where in the workflow do I put this and what is needed?