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: 

hide button when click on F3

Former Member
0 Kudos

Hi,

i had created one button in PF-STATUS and after displaying the output in ALV, when user clicks on Back Button , that created button has to be hide.

Now how to hide it?

3 REPLIES 3

Former Member
0 Kudos

Hello,

Better you try by using

Loop at SCREEN

it is used to enable or disable the fields in the screen.

ENDLOOP.

Former Member
0 Kudos

Hi,

when back button is pressed, write the code as below

if sy-ucomm = <back>
set pf-status <pf-status> excluding <created button>.
endif.

Regards,

Dhanunjaya Reddy

0 Kudos

Hi Dhanunjaya Reddy

I had used the same code.

IF r_ucomm = '&F03'.

SET PF-STATUS 'STANDARD_FULLSCREEN1' EXCLUDING '&PUSH'.

ENDIF.

but still its not wrking.