JCL Example:
//
//RUNJCL JOB CLASS=5,MSGCLASS=6,NOTIFY=&SYSUID
//STEP01 EXEC PGM=IEFBR14
//
..
..
If this JCL will run or it'll throw the ERROR?
Answers were Sorted based on User's Feedback
Answer / nidhi
The JCL will throw error as the first line cannot be blank.
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / debasish kumar pothal.
yes, the JCL will throw an error as the 1st line should not
be let blank and there is no job card in the 1st line...
without the job card the JCL cannot run any program.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / stu
"//" with nothing else on the line is a "null" card which
tells the internal reader to stop reading even though there
may be subsequent lines containing text. This will result
in a job with no job card which will cause an error.
| Is This Answer Correct ? | 4 Yes | 1 No |
TIME parameter in JOB statement or EXEC statement specifies What type of time (CPU time or execution time)?
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?
What is the use of symbol // in jcl?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
if in a job, region is mentioned in both jobcard and in step then which is cosidered at the step level? A job has region 4k in jobcard and step1 with region 0k and step2 with 16k, then what is the region allocated for the entire job? what is the region step1 takes? what is the region step2 takes?
How many types we can give input to JCL
wht is the d/f between positional parameter n keyword parameter ?
how to write a jcl prog to copy alternate recs from ps1 to another ps2,suppose ps1 having 10 recs?
how can i use the parameters decalred in main pgm in sub pgm
How to submit jcl through a cobol program?
how to put a dependency on job in jcl using opc scheduler?
Can an individual step be restricted from using all the jobs allowed cpu time?