Get Example source ABAP code based on a different SAP table
ID DYNPRO% • SET TITLEBAR - dynpro ABAP Statement
SET TITLEBAR>, Dynpro Short Reference >
ABAP_SYNTAX SET TITLEBAR title $[OF PROGRAM prog$] $[WITH text1 ... text9$].>
ABAP Addition 1 ... OF PROGRAM prog> 2 ... WITH text1 ... text9>
What does it do? When dynpros> are processed, this statement specifies the GUI title specified in title> for the subsequent screens>. The title is displayed in the title bar from the next sending of a screen layout until the end of the program or until the next SET TITLEBAR> statement. The name of the current GUI title is displayed in the system field sy-title>. title> expects a character-like data object that contains the name of a GUI title of the main program> of the current program group> or of the program specified in prog> in uppercase letters. If the title does not exist, sy-subrc> is set to 4 and the word SAP> is displayed in the title bar. System Fields> sy-subrc>>Meaning> 0GUI title has been set. 4 GUI title was not found.
Latest notes:
The GUI title of the dynpro must be set at the latest at the PBO> event. If no GUI title is set for a dynpro, the word SAP> is displayed in the title bar.
The title bar can contain a maximum of 70 characters. A title that exceeds this limit after the replacement of placeholders is truncated to the right.
In standard selection screens>, the statement SET PF-STATUS> can be used at PBO> time. In selection screens defined using SELECTION-SCREEN BEGIN OF SCREEN>>, the addition TITLE> of this statement should be used instead.