How do you check the syntax of a JCL without running it?
Answers were Sorted based on User's Feedback
Answer / jdriley
You can also use JEM (if your installation has it.)
Is This Answer Correct ? | 34 Yes | 2 No |
Answer / vinothkumar
You Can also use EJCK command before you run the job. this
will check the JCL syntax error.
Is This Answer Correct ? | 17 Yes | 3 No |
Answer / venkatachalam
Try PREP Commends(
Based on instalation).
Thanks!!
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / jim
No to knock answer 1 but "TYPRUN=SCAN" is what works on my
system (no E in type)
Is This Answer Correct ? | 5 Yes | 1 No |
Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?
what is A-MODE and R-MODE?
How do you create a temporary dataset? Where will you use them?
Can we Execute a job without specifying Job Name in the Job Card?
What is the function of dd name parameter with a 2 part structure; audit.report?
A STEP has more than 1 file as INPUT. And we have to put all these records int 1 output file. How to do ? //InputF DD DSN=ID.File1 DSN=ID.File2 DSN=ID.File3
What is the purpose of include statement in a JCL?
What does S0C4 error mean?
Suppose i have 2 steps in my pgm. Step1- creates a file, Step2 - generates report from file in step1, What changes have to be made in Step2, so that if the file in Step1 is empty Step2 should not be executed? No changes to be made to Step1.
What is QSAM error usually when it is occurs?
How to send notification to multiple users through jcl???
Statement1 "We can not use UNCATLG in SMS managed VSAM datasets" Statement2 "We can not delete a SMS managed data set without UNCATLG it" (P-353, Saba Zameer book) Then how do we delete SMS managed VSAM datasets ?