What is the difference between catalogue procedure and
In-Stream procedure?
Answer Posted / guest
In Stream procedures are set of JCL statements written
between JOB and EXEC statements, start with PROC and end
with PEND statement. Mainly used to test cataloged
procedures. Cataloged procedure is cataloged on the
procedure library and is called by specifying the procedure
name on the EXEC statement.
| Is This Answer Correct ? | 37 Yes | 3 No |
Post New Answer View All Answers
how can the same proc be re-used and called by many jobs?
How do you overcome this limitation ?
What is the use of disp parameter?
What is the function of dd name parameter with a 2 part structure; audit.report?
What does a disposition of (new,catlg,keep) for a dsn mean?
Is acct parameter mandatory?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
Explain the function of dd name parameter with a 2 part structure; audit.report?
Why block size is multiple of lrecl in jcl?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
Is it possible to left uncode disp? If yes, how?
Explain the function of the steplib dd statement?
What is the motivation behind coding class parameter in job statement?
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
Explain about LMFREE�free data set from its association with data ID