cancel
Showing results for 
Search instead for 
Did you mean: 

How to call an FPM application on click of a button ?

vimal
Active Participant
0 Kudos

I want to call an FPM GAF application from a NON-FPM application on button click.How can i do it ?

Please suggest.

Thanks,

Vimal

Accepted Solutions (1)

Accepted Solutions (1)

former_member184578
Active Contributor
0 Kudos

Hi,

Get the URL of FPM Web Dynpro component and concatenate the FPM Configuration to the URL and use EXIT plug and pass the constructed URL/ display in new window using window manager.

CALL METHOD cl_wd_utilities=>construct_wd_url

    EXPORTING

      application_name = 'ZWD_FPM_COMP' " Your FPM Compoenent name

    IMPORTING

      out_absolute_url = lv_url.

Now concatenate the configuration name to WDCONFIGURATIONID parameter and finally concatenate the configuration ID parameter & value to lv_url.

Hope this helps u,

Regards,

Kiran

Answers (1)

Answers (1)

former_member219762
Contributor
0 Kudos

Hi Vimal,

If you want call fpm application in same window follow this link http://scn.sap.com/docs/DOC-48120

Regards,

Sreenivas.