cancel
Showing results for 
Search instead for 
Did you mean: 

Calling Adobe Form in FPM Component

ashutosh_singh2
Explorer
0 Kudos

Hi All,

I am creating a Webdynpro Application which used FPM_OVP_COMPONENT.

In side Component configuration I am using GUIBB for UI.

Now my requirement is to open a Adobe form on a particular action.

Please help me how to call a Adobe form inside FPM application.

Thanks,

Ashutosh

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Hi,

I am dealing with a similar problem

I have a dialog box created in FPM Configuration. When the popup is opened and I press Ok button, I want an Adobe Form to be opened.

Did you solve the problem?

If so, can you post the solution?


Thank you,

Laura

ashutosh_singh2
Explorer
0 Kudos

Hi Laura,

Use below code.It will open Adobe form as separate one.

CONSTANTS c_cnst_mime TYPE string VALUE 'application/pdf'.           " PDF type

*   Call method to Open PDF Form

    cl_wd_runtime_services=>attach_file_to_response(

    i_filename       = im_v_name                                       " form Name

    i_content        = im_v_pdf                                        " PDF Content

    i_mime_type      = c_cnst_mime ).                                  " MIME type

Thank you,

Ashutosh