cancel
Showing results for 
Search instead for 
Did you mean: 

Needs_conformation fpm

raj2
Explorer
0 Kudos

Hi all,

I need write own popup window as per my requirement is it possible in fpm(Dynamically only ) .

It is possible please guide me.

Thanks,

Sekhar

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Sekhar,

Implement IF_FPM_GUIBB_FORM_EXT interface in required form feeder class and write below sample code according to your requirement under required action.

data : lo_confobj      type ref to cl_fpm_confirmation_request,

          lt_conf_text    type        string_table,

          lv_conf_txt     type        string,

          lv_window_title type        string.



   case io_event->mv_event_id.

          when 'TEST_EVENT'.

               lv_window_title = "Popup Title".

           lv_conf_txt = "sample text for popup".

           append lv_conf_txt to lt_conf_text.

           create object lo_confobj

             exporting

               it_confirmation_text = lt_conf_text

               iv_window_title      = lv_window_title.

           if lo_confobj is not initial.

             eo_confirmation_request = lo_confobj.

           endif.


     endcase.



Hope it will help full.



Regards, Naga        

raj2
Explorer
0 Kudos

Hi Naga,

you gave lots of helpful input  Thank you.


Regards,

Sekhar