Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
from QlikView?
t: load 'OK' as Status AutoGenerate 1;
STORE t into Task2.txt (txt);
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
what means loop + sleep in the script editor ?
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;
Thanks Massimo,
and what about write a file on file system ?
from QlikView?
t: load 'OK' as Status AutoGenerate 1;
STORE t into Task2.txt (txt);