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 |
if we are specifing joblib as well as steplib in job then at the time of execution how the process will complete
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?
How to compare 2 files using File-Aid?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
what are the various stages of job processing?
What is a Dummy Utility and what it does ?
what r the types of job control statements?
what is the difference between perform varying and perform
In sms datasets, what is the function of the dd avgrec keyword?
Is there any command to check wether the ps file is in sorted order?
wht is step lib n job lib ? where can we code joblib n steplib ?
I have a dataset with record length 40 in production, due to some requirements it was changed to 80. Then how can we know the jobs which are effected by this change and how can we resolve it.