Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
agigliotti
Partner - Champion
Partner - Champion

How to set dependencies on multiple tasks

Hello,

Our customer don't have a publisher license.

However how does is possible to set task (ex. task1) dependency on successful of two different task (ex. task2 and task3) ?

Many thanks in advance.

Best Regards

1 Solution

Accepted Solutions
maxgro
MVP
MVP

from QlikView?

t: load 'OK' as Status AutoGenerate 1;

STORE t into Task2.txt (txt);

View solution in original post

5 Replies
maxgro
MVP
MVP

sometimes you can use files to sync the different tasks

task2 and task3 writes an ok file

task1 checks (a loop with a sleep) for the 2 ok files, when it founds the files deletes the OK files and does some elab

agigliotti
Partner - Champion
Partner - Champion
Author

what means loop + sleep in the script editor ?

maxgro
MVP
MVP

let v=0;

Do while v=0;

  // millisec

  sleep(3000);

  trace 'check the ok files';

  trace 'if the 2 ok file are ok, elab and (maybe) exit';

  //let v=1;

LOOP;

agigliotti
Partner - Champion
Partner - Champion
Author

Thanks Massimo,

     and what about write a file on file system ?

maxgro
MVP
MVP

from QlikView?

t: load 'OK' as Status AutoGenerate 1;

STORE t into Task2.txt (txt);