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: 

Pushbutton on application toolbar

Former Member
0 Kudos

I copied standard transaction VL06C program to yprogram.

Now my requirement is i want to add one pushbutton on the application toolbar in the output screen.

regards,

vijay

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Check the Gui Status....

4 REPLIES 4

Former Member
0 Kudos

Really its needed now

Former Member
0 Kudos

Check the Gui Status....

0 Kudos

GUI status is declared for only selecion screen. In output application toolbar i want to add pushbutton.

vinod_vemuru2
Active Contributor
0 Kudos

Hi Vijay,

Check this logic.

END-OF-SELECTION.

SET PF-STATUS 'ZSTATUS'.

Now go to se41 transaction. Click on copy status button in tool bar.

Give from program name as SAPMSSY0 and status as STLI , to program as ur program name and to status as ZSTATUS. Click enter. Now add ur push button in this ZSTATUS. Activate bothe status and program.

Now u should be able to see the button in ur program output.

In AT USER-COMMAND event handle this push button.

AT USER-COMMAND.

IF sy-ucomm EQ 'ur Function code of button'.

Do what ever u want.

ENDIF.

Hope it is clear.

Thanks,

Vinod.