Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Ghosh612
Contributor
Contributor

How can I execute Jobs in a sequence?

I had two Job created named

 

1. J_Import_Multiple_Files0.1

0683p000009MA8g.jpg

2. J_Master_Files0.1

0683p000009MA4z.jpg

 

I want to make both these execute in a sequence, the tFileOutputExcel_1 in Job 1 is the where all the joins will take place, which is used in the 2nd Job to be associated with the lookup data from all the Master Files.

Can I put them in the same job and execute them in a sequence? 

Thank You.

 

Labels (2)
1 Reply
Anonymous
Not applicable

You can create a main job, and call these two child jobs using tRunJob, and control the execution order using Onsubjobok connector.
main job:
tRunJob1(call J_Import_Multiple_Files0.1)
|onsubjobok
tRunJob2(call J_Master_Files0.1)

Regards
Shong