Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Multiple trigger for execution plan

How to add multiple trigger for a execution plan?

Both condition should satisfy in order to execute/start the plan.

I have a requirement where plan need to execute after 4PM and also wait for the file.

In execution plan I can add Cron based trigger and file trigger, but both are independent, any satisfy it will execute the trigger.

 

Any help here?

Labels (2)
1 Reply
Anonymous
Not applicable
Author

It is impossible to add combined trigger on execution plan, however, you can achieve it by using a twaitForFile in a job, eg:
tWaitForFile--iterte--tJava--runif-->business processing
on tJava: check if the current time is after 4PM, set the condition variable as true if yes.
runIf: trigger the business processing only when the condition is true.

Regards
Shong