Hello Barel,
Create a dailoge box in your FPM application and assign the webdynpro component which hold the adobe form.
now in list uibb, on button action you can call this adobe form.
write the below code in the process event method.
case io_event->mv_event_id.
when cl_fpm_event=>gc_event_print.
* Calling adobe Form Dialog box
ls_dialog_box_properties-height = '500'.
ls_dialog_box_properties-width = '1000'.
lo_fpm->open_dialog_box(
exporting
iv_dialog_box_id = 'DIALOG_BOX_1'
is_dialog_box_properties = ls_dialog_box_properties ).
endcase.
Here the Dialog box id: "DIALOG_BOX_1" which hold the adobe form.
hope this will helps you.
Regards,
Naga