InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by PROC? State difference between an instream and a catalogued Proc. |
|
Answer» PROC represents Procedure. A JCL Procedure is a collection of statements within a JCL that perform a particular function. The JCL Procedures work the same way as language compilers and linkage editors across MULTIPLE JCL's. The EXEC statement may be used directly to code the procedure instead of the PROC keyword. Syntax: //Step-name EXEC PROC=ProcedurenameOr //Step-name EXEC ProcedurenameHere,
Example 1: //STEP05 EXEC PROC=MTHPROC Or //STEP05 EXEC MTHPROCUse of PROC
Types of procedures |
|