Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved


Chapter 5 The Action Statements : DISPLAY Statement

DISPLAY Statement
The DISPLAY statement shows a specified screen. You can access data that is entered on a screen using GET and FORALL statements on the screen tables of the screen. The DISPLAY statement can also be combined with the TRANSFERCALL statement and the UNTIL statement. Refer to the DISPLAY & TRANSFERCALL Statement and UNTIL … DISPLAY Statement for more information.
Usage Notes
To insert data from an application into a screen table, use the INSERT statement before the DISPLAY statement.
Exceptions
 
Example
FORALL MANAGERS:
   MANAGER_DATA.* = MANAGERS.*;
   INSERT MANAGER_DATA('MANAGER_SCR');
   END;
DISPLAY MANAGER_SCR;
About the Example
In this example, data is retrieved from the MANAGERS table, assigned and then inserted into the screen fields of a screen table, and then the screen appears.
See Also
TIBCO Object Service Broker Defining Screens and Menus about defining and presenting TIBCO Object Service Broker screens.

Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved