How to set execution order for notifications

lucky6
Tera Contributor

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.

 

1 ACCEPTED SOLUTION

Harsh_Deep
Giga Sage
Giga Sage

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.

View solution in original post

3 REPLIES 3

Harsh_Deep
Giga Sage
Giga Sage

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.

Will it not possible without event?

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.