Previous Topic: SET Processing Subroutine for JCLNeatNext Topic: Sample JCL for JCLNeat


INCLUDE Processing Subroutine for JCLNeat

The INCLUDE processing subroutine checks for anything that is related only to INCLUDE statement processing. You can still reference the JOB, EXEC, DD, and other statement variables as needed. Only one INCLUDE statement is active at any one time.

/******************************************************************************/
/*  INCLUDE Processing Logic                                                  */
/******************************************************************************/
/*  The value of all INCL variables are only maintained within a given        */
/*  INC statement. When another statement is encountered, the values change.  */
/******************************************************************************/
A   INC_PROCESSING:
B   Return
A

Defines the name of this subroutine to the DO WHILE loop.

B

Causes control to return to the main DO WHILE loop.