In my job I have 6 steps. Step01,02,03...step06.
after executing step02 i want to skip step03 and want to
execute step04. and once step04 is done then I want to go
back and execute step03. once step03 is completed I want
execute step05, 06 and so on... can any one tell me how do
i do that???
Answer Posted / shailendra
chang the step according to requirment
//step1
//step2
//step4
//step3
//step5
....
..
.....
| Is This Answer Correct ? | 4 Yes | 8 No |
Post New Answer View All Answers
Differentiate between the joblib and the steplib statements?
What is the purpose of disp parameter?
How can values be passed from the job stream to an executable program?
Can we use DISP=SHR in output file in JCL
Explain the purpose of the dd keylen parameter?
How can the submitting users racf authority be overridden in a job stream?
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
Explain the function of dd name parameter with a 2 part structure; audit.report?
Explain the jcl exec statement?
Explain the hierarchy levels in jcl?
a dd statement has 2 types of parameters. Name them?
what is DSN in JCL and what are the parameters to declare the DSN?
define cond parameter in jcl?
What is the function of //cntl statement?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed