Distributed Systems Network Management (DSNM) Subsystem Interface Development Guide
The Input Area: _INPUT
3-18
109759—Distributed Systems Network Management (DSNM) Subsystem Interface
Development Guide
I Process Development Process
The Input Area: _INPUT
The input area is the portion of the command context space in which the frame places
the command components.
_INPUT is the name assigned to the _INPUT^DEF structure generated by
_COMMAND^CONTEXT^HEADER. This structure contains the _LIST declarations
for the input object list (OBJECTLIST), the action field, and a structure containing the
command modifiers.
_INPUT.ACTION is one of the following:
ZDSN^ACTION^ABORT
ZDSN^ACTION^AGGREGATE
ZDSN^ACTION^INFO
ZDSN^ACTION^STATUS
ZDSN^ACTION^START
ZDSN^ACTION^STATISTICS
ZDSN^ACTION^STOP
_INPUT.MOD is zero or more of the following:
Hierarchy modifier (.Z-HMOD):
ZDSN^HMOD^ALL
ZDSN^HMOD^ONLY
ZDSN^HMOD^SUBONLY
Error modifier (.Z-EMOD):
ZDSN^EMOD^BRIEF
ZDSN^EMOD^DETAIL
ZDSN^EMOD^SUPPRESS
Select state modifier (.Z-SMOD):
ZDSN^SMOD^UP | ZDSN^SMOD^GREEN
ZDSN^SMOD^NOT^UP | ZDSN^SMOD^NOT^GREEN
ZDSN^SMOD^DOWN | ZDSN^SMOD^RED
ZDSN^SMOD^NOT^DOWN | ZDSN^SMOD^NOT^RED
STRUCT _INPUT^DEF (*);
BEGIN
_LIST (OBJECTLIST);
INT action;
STRUCT mod (zdsn^mod^def);
END;