cancel
Showing results for 
Search instead for 
Did you mean: 

Floorplan manager for Webdynpro

Former Member
0 Kudos

Hello,

I am working on Overview page floorplan OVP

I wnat to know to the functionalities for the buttons SAVE, ADD(Insert) CANCEL (for the CANCEL button I want to cancel all the actions when user clicks on this button ).

Regards,

Jaffar Hasan

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Jaffar.

You need to capture the custom button event in process_event method of your webdynpro component (which is used as UIBB in FPM configuration ).

See some example components in APB_FPM packages/sub packages.

On Cancel button event, you can perform action's what so ever you want( ex:- you can raise an message) and RETURN, so that it will not execute remaining code/events.

Case io_event->mv_event_id.

   When "Event_id".

              "Handle the event

endcase.

Hope this helps you.

Thanks

KH

Former Member
0 Kudos

The buttons raise events which you can handle in the PROCESS_EVENT method of your component controller.