cancel
Showing results for 
Search instead for 
Did you mean: 

Navigation between pages with value

mrahhaoui
Participant
0 Kudos

Hi Guru's,

I created a popup with 3 fields to getting an ID and when I click on my button I go to the Method PROCESS EVENT and check if I receive this ID.

Then I would like to go back on my initial_screen or skip it if this ID is filled in.

Should I wire the popup with the initial_screen ?

The issue for wiring together is the init screen is a BOPF node an the popup not.

Also the feeder class for initial screen inherits from

I need your help please !

Thank you in advance.


Method Process_EVENT

if lv_id is not initial.

"Close Popup

lo_fpm->raise_event_by_id( export event_id = gc_close_dialog)

"Set value

lo_fpm_parameter->mo_app_parameter->set_value( export iv_key = 'ID'

                                                                                                iv_value = lv_id ).

lo_fpm->raise_event_by_id(if_fpm_constants=>gc_event_leave_initial_screen).

endif.

Message was edited by: rahhaoui mohamed

Accepted Solutions (0)

Answers (1)

Answers (1)

mrahhaoui
Participant
0 Kudos

I Debugged When i directly enter the Id in the screen And i remarked That after some process, It pass by the event Id FBI_SYNCUP.

but When I get the ID by the popup And want leave the initial screen i don't have this event id.

Anyone could Help me please?