Application Development and Automation 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: 
Read only

DISPLAY DYNAMIC TEXT ON THE APPLICATION TOOLBAR

Former Member
0 Likes
1,555

Hi Abappers,

On the application toolbar i want to display dynamic text depending on which button is selected. can this be done...

regards,

Mansi.

Hi Abappers,

On the application toolbar i want to display dynamic text depending on which button is selected. can this be done...

regards,

Mansi.

3 REPLIES 3
Read only

Former Member
0 Likes
848

HI,

goto the menu painter enter a name in the application tool bar.press enter.poop up will come select dynamic text and press enter.it will ask u for field name.enter a field name(say APPL1).

in one of the PBO module of that screen write

APPL!1 = 'ur text'.

rgds,

bharat.

Read only

0 Likes
848

i want the dynamic text on the report screen only dat appears on executing and not on the seperate screen.

Read only

0 Likes
848

write the conditional setting of titlebar in

at selection-screen output .

if <condition> eq 'X' .

set titlebar 'MAIN' with 'Maintain' .

else .

set titlebar 'MAIN' with 'Display' .

endif .

now double click on MAIN, the system will ask youto creat the title click yes

in the title field you can write static text along with & sign

(& Test & & &)

now if you say

set titlebar 'MAIN' with 'Display' '1' '2' '3' .

it will display as

Display Test 1 2 3 .

Regards

Raja