Notifications on different tables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2022 02:59 AM
Hi Community,
I need to trigger 2 notifications simultaneously. One is approval email which is on approval table and this i am triggering using business rule because my workflow is on RITM table and other notification is just an info notification on RITM table.
How can i trigger 2 notifications at a time which are on different tables.
Thanks,
Poorva
- Labels:
-
Multiple Versions
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2022 03:05 AM
Hi,
From your BR or you can do the same.
You will eventually trigger an event , only thing to note is that instead of current object pass the Glide Record object of the record in the second parameter.
gs.eventQueue('<Event Name>',<GlideRecord Object of the record>,<parm 1>, <parm 2>);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2022 05:17 AM
I tried this, but its not working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2022 05:38 AM
I changed the event name, so, for both events are same.
Both are getting triggered, but one is showing as type send-ignored.
What could be the reason behind this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2022 07:17 AM
I have changed the weight to 0 and it started sending both notifications simultaneously.
Thanks for your help.