Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Change the text contained in GUI TITLE

Former Member
0 Kudos

Hello all,

I have a query about GUI TITLES

In the following code,

SET PF-STATUS 'MAIN_6' EXCLUDING fctab.

lf_tbar = 'MAIN_6'.

SET TITLEBAR lf_tbar.

I want to edit the text contained in the field 'MAIN_6'.In the program using this,when i click on the "display object list", i am able to see "MAIN_6" under the GUI TITLE submenu and also the current value in it which i want to change.Can you please tell me how i can change the text content.What is the transaction for changing the gui title?

Thanks and regards,

Deepthi

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

I think u wanna know where the 'MAIN-6' value is stored..

SET TITLEBAR <tit> [OF PROGRAM <prog>]

[WITH <g1 >... <g9>].

This statement defines the title of the user interface for all subsequent screens of a screen sequence until another is set using a new SET TITLEBAR statement.

Once you have set a title, it remains active within the transaction until the next SET TITLEBAR statement.

After SET TITLEBAR, the field SY-TITLE contains the current title.

SY-TITLE is 70 characters long. Longer titles are not permitted.

Rgds,

sunny

3 REPLIES 3

Former Member
0 Kudos

Hi,

Refer transaction SE41(Menu painter).

Former Member
0 Kudos

Hi ,

Thank you for the suggestion.I will try it out.

SE41 will allow me to change it for the field right?Is there any way i can find out if the text for this field is being stored or retrieved from any database table or not?Am not very clear on the GUI TITLES,hence this one doubt. Are they hardcoded while the program is written rather than being stored internally?Your suggestions are greatly appreciated.

Thanks and warm regards,

Deepthi

Former Member
0 Kudos

Hi,

I think u wanna know where the 'MAIN-6' value is stored..

SET TITLEBAR <tit> [OF PROGRAM <prog>]

[WITH <g1 >... <g9>].

This statement defines the title of the user interface for all subsequent screens of a screen sequence until another is set using a new SET TITLEBAR statement.

Once you have set a title, it remains active within the transaction until the next SET TITLEBAR statement.

After SET TITLEBAR, the field SY-TITLE contains the current title.

SY-TITLE is 70 characters long. Longer titles are not permitted.

Rgds,

sunny