- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 05:05 AM
I have two notifications one should be trigger first and after some time second notification should be trigger.
Here both the notification are on same table and same conditions..
How can we achieve this.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 05:13 AM
Hello @lucky6
We can do the same using event handler. Create a event in event log table for both and set processed_on as pper you request.
Mark ✅ Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 05:13 AM
Hello @lucky6
We can do the same using event handler. Create a event in event log table for both and set processed_on as pper you request.
Mark ✅ Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 05:15 AM
Will it not possible without event?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 05:20 AM
Hello @lucky6
Yes it will be possible using below script but that will also trigger using event only-
gs.eventQueueScheduled('event2', current, 'parm1', 'parm2', 600);//time in seconds
Mark ✅ Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.