Previous Topic: NJB Processing Subroutine for JCLNeatNext Topic: PROC Processing Subroutine for JCLNeat


IF Processing Subroutine for JCLNeat

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

/******************************************************************************/
/*  IF Processing Logic                                                       */
/******************************************************************************/
/*  The value of all IF variables are only maintained within a given          */
/*  IF statement. When another statement is encountered, the values change.   */
/******************************************************************************/
A   IF_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.