Pathmaker Reference Manual

REQUESTER Statement
Pathmaker Application Definition Language (PMADL)
067869 Tandem Computers Incorporated 2–43
REQUESTER req-emp-data
(...
DISPLAY-FIELD emp-def.last-name
( BRIGHT y
, REVERSED y
, UNDERLINED y
, TAB-IF-FULL y
, HEADING “Last Name”
, PICTURE “X(20)”
, CONVERSION 0
, HELP “Enter the employee’s last name”
) , ...
)
The following statement defines a function key in a requester. In this example, the
ellipsis denotes lines of requester code not shown.
REQUESTER req-emp-data
(...
, TERMINAL_TYPE 3270
, FKEY-COUNT 24
, ...
, FUNCTION-KEY PF21
( RETN
, PROMPT “Return”
, DISPLAY-PROMPT YES
, HELP “The Return key displays the previous screen.”
) , ...
)
The following example defines attributes for a screen-based requester:
?SECTION SKEL-REQ-MENUER
REQUESTER MENU-REQUESTER
( TYPE MENU
, HEADINGS NAME
, FUNCTION-KEY F16
( RETN
, PROMPT "Return"
, DISPLAY-PROMPT no
)
) ;