Previous Topic: BYPROUTNext Topic: CA11


BYPRUNT

The BYPRUNT runtime option lets you select runtime checks to bypass. The BYPRUNT runtime option has 12 defined sub-options that enable individual runtime checks to be bypassed, that is, not done. All other runtime checks are made.

This option has the following format:

BYPRUnt(suboption1,suboption2,suboption3, . . . suboption12) | NOByprun
suboption

Specifies the runtime check to bypass.

Default: NOByprun

You can specify the following suboptions:

Usage notes:

Example: Bypass Runtime Checks

In this example, the DB2 and USS runtime checks are bypassed while executing all other runtime checks:

BYPRUNT(DB2,USS)

Example: Specify the BYPRUNT Runtime Option under EDCHEK

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

Example: Specify the BYPRUNT Runtime Option in Batch

This example shows how to specify the BYPRUNT 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   *    
 BYPRUNT(DB2,USS)
//

Note: For information about using the BYPRUNT runtime option in ISPF, see the Runtime Options Panel (JCK14).