- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2020 04:36 AM
Hi,
Fairly new to dev on the platform so apologies if this is an easy one.
I have a requirement to be able to send a notification to a user from a variable in a catalog item?
e.g. Variable name: 'Contact Person', not shown on the task record, the user in this field needs to receive a notification.
Thanks,
Solved! Go to Solution.
- Labels:
-
Instance Configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2020 05:31 AM
refer below link where I have explained the approach
How to send notifications to users selected in List collector variables on catalog items
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2020 04:55 AM
Hi,
For this kind of implementation, the best practice is this.
- Write a before Insert BR to store this information into WatchList variable in RITM
- On the Notification, "Whom to Send" Tab, add Watchlist as well.
Business Rule
Before Insert
sc_req_item
Script
current.watch_list = current.variables.<contact_person variable>
Notification
Add the watch_list variable on Whom to send
Thanks,
Narsing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2020 05:03 AM
Hi Narsing, I dont think It will be possible to use this approach as the watch list is available on the catalog item and so more than just the contact person could be chosen and not all should receive it

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2020 07:44 AM
Hi,
Got it. But Watch List is available in RITM and Task also.
Thanks,
Narsing