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 |
Why include statement is used in a jcl?
SORT card to eliminate duplicity.
How to release a JOB (from the input queue) held by TYPRUN = HOLD ? and how to see the installation default time after which a JOB will be automatically released ? How to see the list of currently HELD JOBS ?
Why do you want to specify the REGION parameter in a JCL step?
Explain about CBL/PROCESS statement syntax
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?
How many positional parameters are there in job statement?
How do you submit a JCL under CICS environment ?
What is the meaning of data definition name (ddname) and dataset name (dsname) in the DD statement?
Is it possible to code instream data in a PROC?
IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the second step using the JCL, How to do it?? Please give the answer ASAP:)
What is the improvement to COND= in the latest version of MVS?