InterviewSolution
Saved Bookmarks
| 1. |
How can the same PROC be re-used and called by many JOBs? |
|
Answer» The varying portion of the JCL can be specified using symbolic parameters in the JOB and the static parts can be specified in the PROC. For example, if the file name changes for every JOB that uses the PROC, then the varying portion of the file name can be coded in JCL using symbolic parameter. //IN1 DD DSN = &ID.URMI.IN1, DISP = SHR //*Coded in PROCID=MYDATA1 is coded in JOB1, ID = MYDATA2 is coded in JOB2 and so on |
|