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 are the parameters that are used in creating a gdg?
How jcl work to handle various input output file operations?
Explain the job statement in jcl?
what sort card you will use to copy the data from one dataset to another dataset?
Where can program checkpoints be stored for use in a restart?
how to compare two datasets without using superce because output is limited to 133 bytes
How can the submitting users racf authority be overridden in a job stream?
How to run cobol program using jcl?
How to do automated restart when a job abend?
in ways data can be passed to a COBOL program from JCL?
Explain about ISPF/TSO Commands
What are the 2 types of parameters in dd statement?
What parameter of the job statement is used to limit the cpu time consumed by the job?
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?