Previous Topic: ADDRESS OPER—Perform Automated TasksNext Topic: STATESET Command—Set the State for a Resource


ADDRESS OPSCTL—Control Components

Use the ADDRESS OPSCTL commands to control the ECF, MSF, COF, and OSF components.

Examples: ADDRESS OPSCTL COF Define, Activate, and List Commands

Example: Define Multiple MSF Links between Systems

The following example defines multiple MSF links between systems. One link uses CA OPS/MVS native APPC session protocol. The second link uses CCI and it's session protocol, which could be XES, XCF, or TCP/IP.

ADDRESS OPSCTL
IF SYSID = OPS11L
THEN DO
  "MSF DEFINE MSFID(OPS11L)   APPLID(A11IOPSL)"       /* local */
  "MSF DEFINE MSFID(OPS31L)   APPLID(A31SENF) CCI"    /* remote CCI */
  "MSF DEFINE MSFID(OPS31LVT) APPLID(A31IOPSL) APPC"  /* remote APPC */
END

IF SYSID = OPS31L
THEN DO
  "MSF DEFINE MSFID(OPS31L)   APPLID(A31IOPSL)"       /* local */
  "MSF DEFINE MSFID(OPS11L)   APPLID(A11SENF) CCI"    /* remote CCI */
  "MSF DEFINE MSFID(OPS11LVT) APPLID(A11IOPSL) APPC"  /* remote APPC */
END

Note: The MSFID for the CCI DEFINE must match the local MSFID for the remote system.