Previous Topic: Replace a DCM

Next Topic: Archive Events

Control Options Sharing

Multiple systems can share a single CAIENF control option member. The method uses the CAIENF IF and ENDIF options to specify groupings of different systems and control options.

The IF option lets you test whether a condition (in this case, a group of systems) is true or false.

The next IF statement is tested, until the last ENDIF statement is reached.

Options that follow an IF statement can include the CAICCI protocol statement (PROTOCOL), System Symbolics such as SYSNAME, or other valid options.

Note: For more information about control options, see the Reference Guide.

Example: Sharing of Frequently Used Options

IF(SYSPLEX='PLEX01'&SYSNAME='HP94'|SYSNAME='HP97')
  EVENT(JOBTERM,REC)
 ENDIF()

IF(SYSNAME='HP91'|SYSNAME='HP92'|SYSNAME='HP94')
  PROTOCOL(TCPIP)
 ENDIF()