Call Notification in Flow Designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 02:56 AM
Hi ,
For learning purpose:
How to call Notification in flow designer?
Actual Requirement:
Just created the Notification
Need to trigger the notification in flow designer?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 03:19 AM
if your notification is using event to trigger then please create a custom action same as given below and use it in the flow to trigger your notification.
gs.eventQueue("event_name","GlideRecordObject",Param1, parm2);
Param1 & 2 are optional parameters. Hence if required you can use it or ignore.
Thanks & Regards,
Vasanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 04:50 AM
@Vasantharajan N - I dont have event . I have only notification record which i created .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2022 05:28 AM
then only the way to trigger your notification is to make changes to the table records on which you created the notification, that meets the condition you define in your notification.
For example the below email notification to get trigger then we need to have the logic in flow to make additional comments to incident record which meets the condition defined in the email notification.
Thanks & Regards,
Vasanth