Previous Topic: Direct Generic Data Set OutputNext Topic: Generic Data Set Interface Guidelines


Define a Generic Data Set

To establish a generic data set interface with CA OPS/MVS, specify JCL that identifies CA OPS/MVS as a target for the output. Specify this JCL as follows:

//ddname DD SUBSYS =(ssid,OPSDSN{,color}{,reportid}{,posmgid})
ddname

The ddname associated with the file.

ssid

The four-character CA OPS/MVS subsystem ID that receives generic interface messages (usually OPSS).

color

(Optional) Specifies the color in which generic data set messages appear in OPSLOG.

Valid values: GREEN, BLUE, RED, WHITE, PINK, YELLOW, or TURQ

reportid

(Optional) Specifies a unique report ID that an AOF rule can use to identify the source of the message.

posmsgid

(Optional) Specifies either of the following:

When the numeric starting position is longer than any particular record in the file, the message ID scan starts at the beginning of that record.

Example 1: Send Messages to Subsystem OPSS

Example 2: Send Messages to Subsystem OPST

Note: This message ID is not inserted into the message.

//DD2   DD  SUBSYS=(OPST,OPSDSN,PINK,ESPLOG,ESPMSG)

Example 3: Send Messages to Subsystem OPSS

Note: This technique is useful for log files that either have a fixed length, time stamp, or both at the beginning of each record, or some other fixed length prefix followed by the message ID.

//DD3   DD  SUBSYS=(OPSS,OPSDSN,RED,MYLOG,22)