- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2022 12:05 AM
Hi All,
I have a requirement for a catalog item that whenever any additional comments are added in the RITM, it should trigger an email notification to requested for(which is a custom variable in the catalog item). Can you please help me on the same. Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2022 12:35 AM
Hi,
you can use event based approach
1) create event on RITM table
2) create notification on RITM table and link with above event
a) Event parm1 contains Recipient - True
b) Send to event creator - True
3) you can use after update BR on sc_req_item table
Condition: Comments Changes
Script:
gs.eventQueue('event_name', current, current.variables.requestedFor);
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
‎03-15-2022 12:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2022 12:35 AM
Hi,
you can use event based approach
1) create event on RITM table
2) create notification on RITM table and link with above event
a) Event parm1 contains Recipient - True
b) Send to event creator - True
3) you can use after update BR on sc_req_item table
Condition: Comments Changes
Script:
gs.eventQueue('event_name', current, current.variables.requestedFor);
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
‎11-05-2023 11:30 PM - edited ‎11-05-2023 11:31 PM
Awesome , Ankur. Simple and to the point.