Use TextDisplay to create a display session. The lines following the TextDisplaycommand will compose the display. The end-of-text line (++/*) terminates the TextDisplay command.
TextDisplay may also be entered as TextDisp[lay], DisplayF, or DispF.
Optional Operands
STR [operand not implemented yet] is a character string that will be displayed in the information line of the DISP session. The SessionRefresh command will attempt to recreate a DISP session by processing the STR value as a command. STR can be up to 30 characters in length. If STR is not specified, a value of "DISPLAYF" is assumed.
Return Codes
OK Successful.
Examples
Procedure to display information about a library:
------------------------------------------------------------------------
SET PPDVBL,1
DECLARE LIB,CHAR,16,V
PARSE LIB
READL &LIB
DISPLAYF 'INQL &TXLLIB'
NAME : &TXLLIB
TITLE : &TXLTITLE
USER : &TXLUSER
++/*
------------------------------------------------------------------------