Can we Execute a job without specifying Job Name in the Job
Card?
Answers were Sorted based on User's Feedback
ENTER JOBNAME CHARACTER(S) -
a
SUBMITTED
ENDED AT N1 - JCL ERROR CN(INTERNAL)
This is the error that we will get if we miss the job
name..
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / abhijit18in2002
It will give error
JESYSMSG JOBNAME MISSING ON THE JOB STATEMENT.
SPECIFY JOBNAME AND RE-SUBMIT.
| Is This Answer Correct ? | 15 Yes | 2 No |
Can there be 2 job statements in a JCL? If yes what is the purpose of doing tha?
IF WE GIVE COND on step3 then, What does the following mean ? And Just adding to that, All the below COND are VALID as per the specifications. (i) COND = (8,LT,step1,step2) ---(AND/OR ?) (ii) COND = (8,LT,step1,step2, ONLY), (iii) COND = (8,LT,step1,ONLY) will it execute only if this condition is true or only if step1 ABENDS ? (iv) COND = (8,LT,step1,step2,EVEN), (v) COND = (8,LT,step1,EVEN) ?
Could you provide an example and its effect OF, Using COND on JOB and EXEC both ?
What is the purpose of dd * statement in jcl?
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).
Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE
Are there any set of rules for the names of the steps used in a job?
How can the submitting users racf authority be overridden in a job stream?
If a JOBSTEP abends, AND without using COND also, all the subsequent steps execute, then what is the use of using EVEN ? Why do we use EVEN when without it also all the JOBSTEPs execute ?
How do you create a temporary dataset?
I am having one step in my jcl.in that step,i am calling one proc.In that proc,i have 10 steps.i want to call a particular step in that proc without writing any new jcl ike iebedit utility...
If the COND parameter is specified in both the JOB and EXEC statements, which one will take precedence? If JOB takes priority and if all the conditions evaluate to false, then will the conditions on the EXEC step be evaluated next?