Answer Posted / prachi
No... you need to have the EXEC for each JOB step.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What are the rules employed while naming the steps in a job?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
define cond parameter in jcl?
List the different jcl statements that are not permitted in the procedures?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
what is use of dsn parameter in dd statement?
When output dataset space is required, what quantity categories are used?
What is use of restart and how to use it?
How can the submitting users racf authority be overridden in a job stream?
How to do automated restart when a job abend?
what is the compile process of cobol program expalin with code
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
How do you overcome this limitation ?
What is the use of disp parameter?