- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Tags:
- qlikview_publisher
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
from QlikView?
t: load 'OK' as Status AutoGenerate 1;
STORE t into Task2.txt (txt);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
what means loop + sleep in the script editor ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks Massimo,
and what about write a file on file system ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
from QlikView?
t: load 'OK' as Status AutoGenerate 1;
STORE t into Task2.txt (txt);