how to use watchlist from an service catalog form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-26-2017 04:31 AM
I have an requirement to add 2 fields that can be filled by user on an record producer form. Those mail ids should be in watch list while receiving notifications . How this can be achieved.
Please advise. Thanks in advance.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-26-2017 05:52 AM
Hi Raviteja,
You can use a mutli-select variable (slushbucket) that references the user list. For example: u_watchers. This is stored as a comma separated list of sys_ids, which is exactly what is stored in the watch list.
In the record producer script, you can copy the variable value to your target watch list like this:
current.watch_list = product.u_watchers;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-26-2017 07:07 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2017 06:22 AM
In the record producer definition, you'll find a script field. This is run just before the record is actually created. It's similar to a before/insert business rule. If you want to set the watch list on the target task record, you can add a line like I did before.
Then you create a notification to those in the watch list (which can be done without script.)