How to execute step2,step1, step3 if step1,2,3 are in order
Answer Posted / r
using IEBEDIT utility, in Job instream card,
//step001 exec pgm=iebedit
//dd1 dd dsn=<job-name>,disp=shr
//dd2 dd dsn=(*,intrdr)
//sysin dd *
Edit type=include, member=(step2,step1,step3)
//
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
In sms datasets, what is the function of the dd mgmtclas keyword?
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
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
What is the use of disp parameter?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
A dd statement consists of 4 fields. Name them?
Explain the function of //cntl statement?
How gdg are concatenated?
How can an in-stream dataset be terminated?
Explain the function of dd disp parameter?
What is the use of symbol // in jcl?
how can you check if a file is empty using jcl?
How to do automated restart when a job abend?
How to pass data to a program that is coded in an exec statement?
Is automatic restart possible in jcl? If yes, how?