Hi Team,
I want to run a job automatically after every 30 minutes if it fails. Where it should auto complete(if in failed state/waiting state) at 7:55 AM before next load at 8:00AM. Appl loads at 8:00. how this can be accomplished?
I do have definition as below,
Job JOB1
Run daily
Reldelay 30
Release Retrigger_Job Cond(not RC(0)) --> If fails
EndJob
Job Retrigger_Job task selfcompleting
Run daily
Reldelay 30 --> Again coding Reldelay of 30
espcmdnm rerunm rootjobs(JOB1+)
abandon submission 7:55 --> To stop retriggering at 7:55
ENDJOB
Job Complete_Job task selfcompleting
run daily
Delaysub 7:55
espcmdnm AJ Retrigger_Job complete
espcmdnm AJ Job1 complete
ENDJOB
My question is coding "reldelay of 30 in retrigger job" works or not as I have used "espcmdnm rerunm rootjobs(JOB1+)"
Thanks in advance..