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: 

Menu Painter

Former Member
0 Kudos

I designed a screen using se51.I designed menu and enabled function keys.

Menu is working well.But application toolbar is not displayed.everething is active only.Shall we have to write the code for standard function keys after enabling them?

1 REPLY 1

Former Member
0 Kudos

Hi,

Yes, you need to write the Code for the function keys, in the SET PF-STATUS we just enable the function keys, there we will give the Function codes, based on the function codes we need to write the code in PAI.

lets say, suppose, if you enbled the BACK button and given the BACK as function code, then write the below code for back button

if SY-UCOMM = 'BACK'.

Leave program

ENDIF.

Look at the Demo Programs in SAP

DEMO_LIST_SET_PF_STATUS_1

DEMO_LIST_SET_PF_STATUS_2

Regards

Sudheer