Previous Topic: OPROCNext Topic: OPTIONS


OPROCLIB

The OPROCLIB runtime option enables you to specify an override procedure library.

This option has the following format:

OPROCLib(library[,C])|NOOPrclb
library

Specifies the data set name of the override procedure library.

C

Indicates to issue an information message and continue validation processing when the library is not found.

Usage notes:

Example: Bypass a Missing DSN

In this example, CA JCLCheck attempts to locate DEV.PROCLIB. If the library is not found, CA JCLCheck displays an information message and validation processing continues.

OPROCLIB(DEV.PROCLIB,C) 

Example: Specify the OPROCLIB Runtime Option under EDCHEK

When running CA JCLCheck under EDCHEK, you have the flexibility to specify the OPROCLIB runtime option in one of two places:

Example: Specify the OPROCLIB Runtime Option in Batch

This example shows how to specify the OPROCLIB runtime option in a batch job:

//USERID1J JOB  '1234','DEVELOPER',MSGLEVEL=(1,1),CLASS=A,             
//         MSGCLASS=X,REGION=0M,COND=(0,LT),NOTIFY=&SYSUID
//JCLCHECK EXEC PGM=JCLCHECK,PARM='OPTIONS(JCLOPTS)',COND=(0,LT)       
//STEPLIB  DD   DSN=FID.JCK.CAILOAD,DISP=SHR     
//         DD   DSN=FID.JCK.CAIPLD,DISP=SHR       
//SYSTERM  DD   SYSOUT=*                                                
//SYSPRINT DD   SYSOUT=*                                                
//SYSUDUMP DD   SYSOUT=*                                                
//SYSPROC  DD   DSN=SYS1.PROCLIB,DISP=SHR            
//SYSIN    DD   DSN=USERID1.JCK.CNTL(JCKINPUT),DISP=SHR

//JCLOPTS  DD   *         
 OPROCLIB(EMERGNCY.PROCLIB) 
 OPROCLIB(DEV.PROCLIB,C) 
 OPROCLIB(PROD.PROCLIB)
//

Note: For information about using the OPROCLIB runtime option in ISPF, see the OPROC and OPROCLIB Panel (JCK13).