NET/MASTER Network Control Language (NCL) Reference Manual
EVENTTD
Verbs
3–68 106126 Tandem Computers Incorporated
Examples
The following example requests help information for message EMS0513:
EVENT1: PROCEDURE
 /* Procedure to display the help text for a message */
EVENTTD GET MSGNO=EMS0513
 DO &I = 1 TO &$EVTD.CAUSE.COUNT
 SAY 'CAUSE '&$ EVTD.CAUSE.&I
 END
 DO &J = 1 TO &$EVTD.EFFECT.COUNT
 SAY 'EFFECT '&$EVTD.EFFECT.&J
 END
 DO &K = 1 TO &$EVTD.RECOVERY.COUNT
 SAY 'RECOVERY '&$EVTD.RECOVERY.&K
 END
END EVENT1
The result of executing the previous NCL procedure is displayed next:
 This message is the first placed in the primary collector log file after a
 system cold load, and serves as a place marker in the file.
 None.
 Informative messages only; no corrective action is needed.










