Is stepname is a MUST and should be unique also for each
JOBSTEP ? or system can supply the stepname for a step which
is not given a name by the programmer ?
Answer Posted / vinay sonar
No,the step name need not to be unique.the job will get
abend and you will get JCL ERROR as 'JOB HAS NO STEPS'
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the maximum length of a single line of jcl?
What is Cataloged Procedures?
whats the diff bw the evaluate also and and?
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
Can we use DISP=SHR in output file in JCL
Step 1 RC 4 Step 2 Step 3 I want to know the COND parameter which can be coded in step 2 or 3. Step 2 should be executed based on Step 1 RC and Step 3 should not be executed based on step 1's RC
How dummy is used in jcl?
how you can access an uncataloged dataset in a JCL?
what is use of space parameter in dd statement?
How does jcl specify the job to the operating system?
In job processing, what happens in execution stage?
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
how to run batch program without jcl?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
What is one line to pass PARM from JCL to COBOL?