I have a JCL with 10 steps, want to execute first 5 steps
only, what are ways of doing it?is it possible to control
through JOB card?
Answer Posted / praveen kumar bejjanki
There are two ways in order to achieve this.
1. Give a null statement(//) after step5
2. Give the cond parameter starting from step6 through
step10 as cond=(0,le). This parameter will bypasses the
step6 through step10 as it satisfies the cond for any of
the RC(return code).
Is there any other way, kindly let me know.....
Thanks!
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
can any one plzzzzzz tell the jcl code for creating ps using idcams
Is acct parameter mandatory?
What is the purpose of the dd keylen parameter?
Explain the function of the dd dcb keyword?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
Where & How Do You Code Identifier In Jcl?
Explain how can a stopped job be started again?
Explain the hierarchy levels in jcl?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
Is it possible to code instream data in a PROC?
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
What do you know about jcl?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
What is the maximum length of a single line of jcl?
which parameter is use to declare the name of dataset in dd statement?