I have a JCL with 100 steps. I want run the Alternate steps
in the JCL ( Like 2 ,4,6,8 etc.. ). How can I acheive this
scenario? If It is by Cond Parameter can you provide the
Condition code for that?
Answer Posted / sathish kumar
In job card give restart=stepname2
from stepname3 to consecutive ODD steps give the below
condition
cond=(4095,GE)
This will execute the steps stepname2,4,6,8.... and
bypasses the odd steps.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
how to do automated restart when a job abends?
what is use of dcb parameter in dd statement?
can any one plzzzzzz tell the jcl code for creating ps using idcams
Explain the job statement in jcl?
what is DD statement is used in JCL?
what are the statements that are not valid to be included in an include statement?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
Can I share my data with other jobs? How?
What is condition checking in jcl? Is this possible?
What is job control language?
Brief description of inline procedure of jcl.
What is the function of the dd dcb keyword?
how you can access an uncataloged dataset in a JCL?
What is the function of the dd mgmtclas keyword in sms datasets?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move