
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2021 12:47 AM
This replaces all users in the watchlist with a single user. I guess that's what I'm asking the flow to do, but I want to be able to add upon the already exisitng users in the list basically.
Kind regards
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2021 05:11 AM
I feel stupid but I managed to solve this by looking up the record and replacing the watchlist with the datapill of the current watchlist + the datapill of the User ID:
That solved it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2021 12:58 AM
Hi
as you already mentioned a simple data pill based assignment will overwrite the existing list in that field. You have to use then inline script variant.
Please see the answers in the following question, which will point you to the right solution: https://community.servicenow.com/community?id=community_question&sys_id=97846855db81f41023f4a345ca96...
Another option is preparing a Flow variable and take its value for updating the record:
Kind regards
Maik
If my answer replied your question please mark appropriate response as correct so that the question will appear as resolved for other users who may have a similar question in the future.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2021 01:01 AM
Hi Jonathan
Try this in your field mapping script
var user1 = fd_data.trigger.current.watch_list; //existing watchlist users.
var user2 = fd_data.trigger.current.caller_id;//modify mapping accordingly.
return user1+','+user2;
Check below link
Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for
Kind Regards,
Rohila V
2022-25 ServiceNow Community MVP

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2021 05:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2021 05:18 AM
Hi
that is exactly the solution I have proposed to you 😞
Please see my answer 4h ago.
Why didn't you recognize that?
Kind regards
Maik