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
How to submit a jcl from cics?
How can a stopped job be started again?
what is the use of IEBGENER utility?
Explain how can values be passed from the job stream to an executable program?
Mention the types of job control statements?
How to alter the parameters for the existing gdg?
which parameter is used to check the syntax of a jcl without executing it?
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
What is one line to pass PARM from JCL to COBOL?
Is it possible to code instream data in a PROC?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you
what is use of dsn parameter in dd statement?
define cond parameter in jcl?
What is the purpose of the dd keylen parameter?
Name the parameters which can be used to limit the number of records written to a sysout dataset?