cancel
Showing results for 
Search instead for 
Did you mean: 

Hide SAVE + SAVE Draft in FPM

ged_hurst
Participant
0 Kudos

Hi,

under certain circumstances I need to hide the Save, Save Draft, Reset and other buttons in FPM OIF.

How can I achieve this?

Thanks

Accepted Solutions (0)

Answers (2)

Answers (2)

ged_hurst
Participant
0 Kudos

Solved by myself

Former Member
0 Kudos

Hi,

Now i am facing same problem like, Hiding Copy, Export and Edit buttons via FPM in SRM 7.0.

Could you plz tell me the process, where i have to change the code.

Thanks in advance.

Thanks

Sandeep.

Former Member
0 Kudos

Hi,

Create a attribute in context type boolean, and bind that attribute based on ur button visible property .

inside init method

follow my coding logics.

access attribte (e.g: le_attribute)

le_attribte->set_attribte( exporting name = 'ATTRIBUTE_NAME' value = abap_true ).

above mentioned logic is for visible.

in which action you want to invisible as same you can write

le_attribte->set_attribte( exporting name = 'ATTRIBUTE_NAME' value = abap_false ).

above mentioned code is invisible.

Thanks & Regards,

Srinivasan.R