cancel
Showing results for 
Search instead for 
Did you mean: 

FPM Application how to get SAVE buttons action

Former Member
0 Kudos

Hello all,

I have creted an application with the FPM, and in the portal after generating the application, i get a big table with Picture and data of the employee (name. PERNR, ORGUnit, MANAGER....) and some subtables that i have created also are there,

my question is, there is a save button over those subtables, and i need to know which action or methode generate this (SAVE) button?

i will be very happy about any kind of help

Thank you all

Accepted Solutions (1)

Accepted Solutions (1)

saravanan_narayanan
Active Contributor
0 Kudos

Hello Agadir,

Do you want to how handle the SAVE event? if this is your requirement then in the Process_Event method of the component controller, you can check for the event id BTN_SAVE and write your logic


case io_event->mv_event_id.
      when 'BTN_SAVE'. 
           "Your logic
endcase.

BR, Saravanan

Former Member
0 Kudos

thank you sarra_n

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

It is difficult to explain as i do not have the application details.

The save button could have been from the

a) (WDA)view which renders table

b) From FPM toolbar

c) Generated using Feeder class

one of the way is to right click that button and see field_help to find out the origin of the button.