Hi All,
I am trying to transfer data from one main page to another. My first page contain multiple UIBBs. I tried the event parameter way. I am calling the below code in Process_event of first page in one of the UIBBs.
io_event->mo_event_data->set_value(
EXPORTING
iv_key = 'MY_KEY'
iv_value = lv_pernr.
However, in the second page GET_DATA method, when I use the get_value method, it does not return anything. Digging deep, the structure inside get_value MT_PARAMETER does not contain the previous set data.
io_event->mo_event_data->get_value( EXPORTING iv_key = 'MY_KEY'
IMPORTING ev_value = lv_pernr ).
Request to please suggest if something else needs to be done which I am missing out.