Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Run task2 when the previous task is completed (successful or failure) without Publisher

Hi, we do not have Publisher. We want to run Task2 when task1 is completed, either successful or failure. How could  we do it?

Thanks in advance.

1 Reply
marcus_sommer

You could use a timeout-statement within a batch-file with the average run-time from task1, like this:

task1

REM waiting in seconds

timeout /T 900

task2

or you need a method which set an external variablen-values through task1 (maybe run and ready) and task2 will depend on this value - waiting and again ... or run - and deleted these value by finishing again.

- Marcus