hi iam learning mainframes,can anybody tell me how to check
JCL errors.(after submiting the JCL we have check in spool
or is there any other method)
Answers were Sorted based on User's Feedback
Answer / sukku
TO check JCL errors generally we go with spool only..That
is th eonly way and there is no other way...
But if want to check ur JCl's syntax errors ,you can do
with TYPE RUN=SCAN parameter..If u use this ,the job
doesnot sumbits to the operating sytem and more over it
gives the error messages...
Ideally speaking it is the best practice to check JcL erros
before sumitting the job...
Is This Answer Correct ? | 13 Yes | 2 No |
Answer / jignesh patel
there is one short command exist to check the JCL error
without submitting the job. Just type '!JCK' or 'JJ' to
check the JCL error. it would inform you about syntax or
logical error.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / sri
ya u can check the syntax error by giving JJ in the commond
line. the error step will be highlighted. u can go to 1 st
error by giving JJFE1. for 2 nd error JJFE2....
Is This Answer Correct ? | 6 Yes | 3 No |
Answer / jay
IF YOU WANT TO CHECK JCL ERROR BEFORE SUBMITTING THE JOB
U CAN GIVE JSCAN OR
IN THE JOB CARD
YOU HAVE TO PROVIED TYPRUN=SCAN
Is This Answer Correct ? | 7 Yes | 5 No |
Answer / kalaiarasan
we can check errors only in spool otherwise use tools like
JSCAN,JJDIRECT,JEM,EJCK .but these all working based on your
installation
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / hari
Please use TYPE RUN=SCAN or HOLD
SCAN - It checks for the JCL error
HOLD it checks for JCL error and waits till the user
interacts to it.
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / suma
you can give NOTIFY parameter. it will notifying the status
to the user about the status of the job. once you got the
message, check in the SPOOL about the status of the job.
Otherwise you can check in SAR.
Thanks,
SS
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / harish
u can go sool.and u will check jcl errors.without
submitting job.u can check jcl errors using with jscan/jem
Is This Answer Correct ? | 1 Yes | 3 No |
What is difference between Return Code, user completion code, Abend code and reason Code?
Which COND paramter will u use to execute the step only if the previous step does not execute
In DCB, what is LRECL,BLKSIZE,DSORG
how to edit a tape dataset ? asked in wipro
What happens if both JOBLIB & STEPLIB is specified ?
I have two files each contains 10 records. I would like to copy both files into one output file but in alternate sequence. for e.g. first record from file1 then record 2 from file2.....
Step 1 RC 4 Step 2 Step 3 I want to know the COND parameter which can be coded in step 2 or 3. Step 2 should be executed based on Step 1 RC and Step 3 should not be executed based on step 1's RC
What do you understand by the terms: joblib and steplib?
in production region 100 steps are running,but i need to run only step5 without changing code how can i do it?
i have a base gdg consisting of 12 versions like jan to dec. i need to concatante this gdg to another gdg which have version 1 or to the base gdg itself can anyone give me the code pls ?
how to increase the space of a dataset in instream procedure.
how to set dependancy for jobs?