Unable to add members to watchlist of RITM from flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2023 05:00 AM
I'm trying to add members from flow designer using Update record action. I have used "Data pills" and "Inline script" to add members from flow designer. But the system is not adding members to watchlist of RITM.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2023 07:22 AM
Only thing I can think of, is there is some timing issue.
Try putting a wait of 2 seconds in front of this action.
If it still doesn't work, do you see any errors in the system log?
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2023 12:47 AM
Hello @Abhishek18
try with this flow designer...
1.Trigger
2.Action
Script for watch list field
var gr = new GlideRecord('sc_req_item');
gr.addQuery('request',fd_data.trigger.current.sys_id);
gr.query();
if(gr.next()){
return gr.getDisplayValue('requested_for.manager');
}
Mark my answer correct and give 👍if this helps you...
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2023 03:48 AM
It is working as expected in OOB instance, but its not working in our instance. I will raise a HI Case for this.
Thank you all for your assistance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2023 12:22 AM
Hi @Rohit01998 @Ankur Bawiskar
I found the root cause of the issue. There was a business rule written on sc_task table that whenever a record is inserted on sc_task table, the watchlist members od sc_task should be copied to ritm.
By this, the watchlist members are initially adding to RITM watchlist, because of the business rule on sc_task, the watchlist members are getting removed on ritm table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2025 05:27 AM