Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Currently I have Job1 and Job 2 under folder "try". What I want to do is, first run Job1 and once Job1 is completed, go to Job2 (present under same folder) and run that Job2 automatically. I didnt write everything under 1 Job because it becomes cluster and difficult to keep scrolling down. Any suggestions on how to achieve that?
Hi
You need to use tRunJob component to call the child job and use connector 'OnSubjobOK' or 'OnSubjobError' to control the job execution order, for example, create a new job called it main_job:
tRunJob1_(call job1)
|onsubjobok
tRunJob2 (call job2)
Regards
Shong
Hi
You need to use tRunJob component to call the child job and use connector 'OnSubjobOK' or 'OnSubjobError' to control the job execution order, for example, create a new job called it main_job:
tRunJob1_(call job1)
|onsubjobok
tRunJob2 (call job2)
Regards
Shong
Thank you; Tried and tRubJob resolves my question.