RLX
TBDISPL Behavior

Desribes the TBDISPL service behavior.
Calls to
RLX
TBDISPL return the same output results as calls to ISPEXEC TBDISPL. You can use the ISPF Dialog Management Services documentation and service descriptions to design and code your dialogs. The horizontal scroll support and dynamic panel creation provided by
RLX
TBDISPL are transparent to your command procedure.
RLX
TBDISPL lets the dialog user select one or more rows in a single interaction. The dialog fragment that follows illustrates the
RLX
TBDISPL call used to display the table and retrieve the first row selected. It also shows calls to retrieve any pending selected rows.
DO FOREVER "RLX TBDISPL DATATYPE PANEL(RLX)" IF RC > 0 THEN LEAVE DO WHILE ZTDSELS > 1 /* Process the current row */ "RLX TBDISPL DATATYPE" /* Panel and Msg operands NOT specified */ END END
The
RLX
TBDISPL call with a non-blank panel name displays the table, honors any scroll command and retrieves the first selected row.
RLX TBDISPL DATATYPE PANEL(RLX)
Pending selected rows are retrieved by issuing a
RLX
TBDISPL request that specifies neither a panel-name nor message-id.
RLX TBDISPL DATATYPE /* Panel and Msg operands NOT specified */