Previous Topic: RAW Data Processing Subroutine JCLNeatNext Topic: IF Processing Subroutine for JCLNeat


NJB Processing Subroutine for JCLNeat

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

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