cancel
Showing results for 
Search instead for 
Did you mean: 

Read button action

Former Member
0 Kudos

Hi,

Can anyone help me in reading button action as per below snapshots.

i want to read MV_EVENT_ID.


Thanks


Accepted Solutions (0)

Answers (1)

Answers (1)

ulrich_miller
Active Participant
0 Kudos

Hi Santhosh,

it is not possible to access cl_fpm (and if it would somehow be possible I would not do it because later you get package access errors checks), it is not a public object. Only if_fpm is public.

Maybe can you can shortly describe the circumstances and what you like to achieve, then maybe I can direct to the solution.

Kind regards,
Ulrich

Former Member
0 Kudos

Hi,

I want to do some validations if user clicks on CHECK button i.e i need to read button action.

Former Member
0 Kudos

I tried lo_fpm->mo_current_event->mv_event_id & its not working

ulrich_miller
Active Participant
0 Kudos

as I said you should not access objects that are not public.

Usually you would do the checks in UIBB or GUIBB. Typically there you have the method process_event( ). Exactly there you should the checks and it so happens that method process_event() does have the parameter io_event. That is where you can access the event id and it is done by checking io_event->mv_event_id.

Former Member
0 Kudos

Is there any workaround?

ulrich_miller
Active Participant
0 Kudos

nope.

former_member226239
Contributor
0 Kudos

can you let me know the location (method) where you are trying to get the button action?

or just send us the screen shot of the methods that are available in your class.

-Chandra