suppose i have job it contains 10 steps after exicution of
job failuer at 3 and 7 th steps i want exicute step 3 and
step 7 only how we specify condition ?
Answer Posted / ravi
in job for all other steps excluding 3rd and 7th steps give
this condition code as below
COND.Step1=(99,NE),
COND.Step2=(99,NE),
COND.Step4=(99,NE),
COND.Step5=(99,NE),
COND.Step6=(99,NE),
COND.Step8=(99,NE),
COND.Step9=(99,NE),
COND.Step10=(99,NE)
or we can use IF then condition condtions also
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which statement is used to identify the private libraries in job?
a dd statement has 2 types of parameters. Name them?
What do you know about jcl?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
Does jcl support automatic restart?
what JCL Procedures?
what is the JCL statement consists of?
when can a job time-out occur? How to overcome that?
When space is allocated for an output dataset, what units can be used?
Can I send output of job to my remote device careerride123?
How to submit jcl through a cobol program?
What is jcl in mainframe?
What is concatenating?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.