How do you check the syntax of a JCL without running it?
Answers were Sorted based on User's Feedback
Answer / mahesh babu
By using JSCAN we can check jcl syntax errors
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajasekhara reddy
EJCK or !JCL in the command line will do.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / baskar
Some companies use a tool for this. it is called JJDIRECT
| Is This Answer Correct ? | 7 Yes | 9 No |
Can we DELETE all the Generations of a GDG at once, WITHOUT deleting the GDG itself ?
Can a PROC CALL another PROC ? (in both Instream and Cataloged cases) ?
How to ALTER the name of a GDG ?
can we give instream data in procedure
We are using 2 files , file one has data, file two is empty.Using jcl how can we find the other file is empty?
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
WORKING-STORAGE SECTION. 1 GROUP-ITEM. 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50. 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP. PROCEDURE DIVISION. MOVE ZERO TO GROUP-ITEM. ADD 50 TO AMOUNT-1. DISPLAY AMOUNT-1. STOP RUN.
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.
I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter
Explain the function of //jcllib statement?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
Can I share my data with other jobs? How?