Hi,
For this just follow the below steps:-
1. In the GET_P method of field Transaction put the below code.
WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
rv_value = 'TRANSACTION'.
2. Now create an Event with name TRANSACTION and put the below code in it.
Data : gr_ggl_popup type REF TO if_bsp_wd_popup.
gr_ggl_popup ?= comp_controller->window_manager->create_popup(
iv_interface_view_name = 'Component/MainWindow'
iv_usage_name = 'Usage_Name'
iv_title = title .
gr_ggl_popup->set_window_width( 900 ).
gr_ggl_popup->set_window_height( 700 ).
gr_ggl_popup->open( ).
You can pass the Data to the Popup component using the Component controller.
Hope it helps.
Thanks
Kumar