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 |
What is model dataset label(Model DSCB)?
What is dummy parameter in JCL??
What are the 2 types of parameters in dd statement?
What is the difference between the JOBLIB and the STEPLIB statements?
can i sort packed decimal if i can tell the syntax
Do we need to code DCB parameters when using DISP position as MOD?
How to test thru JCL if any file(PS or VSAM) is empty or not. I do not want to use any COBOL prog or Ezytrieve and want to do using utility.
How is the keyword DUMMY used in JCL?
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?
How does jcl act on a cobol code?
i have 6 steps in my jcl program after going to 5th step i want to execute 3rd step.....how can i do it....by using(RESTART) can i do it or not?
I've one sequential file, that file size is LREC=100 (File contain Records like 1 to 100). Now I was increase the file size is LREC=102. My question is I want insert 00 (Two Zeros) in to the new file (That output file looks like : 00123 up to 100). How will write the SORT card in JCL. Please let me know.