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

Pushbutton on application toolbar

Former Member
0 Likes
643

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
Read only

Former Member
0 Likes
596

Check the Gui Status....

4 REPLIES 4
Read only

Former Member
0 Likes
596

Really its needed now

Read only

Former Member
0 Likes
597

Check the Gui Status....

Read only

0 Likes
596

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

Read only

vinod_vemuru2
Active Contributor
0 Likes
596

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.