cancel
Showing results for 
Search instead for 
Did you mean: 

Read FPM event in webdynproABAP

Former Member
0 Kudos

Hi All,

I have webdypnrpo application, embedded in FPM. This is standard application.

Whenever the document is 'Edit' I want to restrict few fields in webdynpro screen.

My requirement is  , I would like to know , how to check the action of FPM in webdynpro i.e. (similar to ECC sy-ucomm)

Thanks

Amarender Busireddy

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member183072
Active Participant
0 Kudos

Hi,

   

In method Process_EVENT in COMPONENT CONTROLLER, we have parameter io_event type cl_fpm_event.

We need only to use a case:

CASE io_event->mv_event_id .

    WHEN cl_fpm_event=>gc_event_edit.

  ..

Endcase.

Cheers,

Hancila

Former Member
0 Kudos

Check feeder class of the Std web dynpro application. Usually there should be a method to handle event methods. I have seen many feeder class method named PRCESS_EVENT to handle FPM events.

Former Member
0 Kudos

Hi Amarender,

when we implement if_fpm_ui_building_block few mwthod automatically created in component controller.

process_event method process after every FPM event.

Cheers,

Jitendra yadav

Former Member
0 Kudos

but the system is not stopping at process_event method

former_member184578
Active Contributor
0 Kudos

Hi,

I guess your WDA component is not directly referred as UIBB, In that goes, you have to go to the WDA Component and write the code there to get the event ID.

Regards,

Kiran