cancel
Showing results for 
Search instead for 
Did you mean: 

How to download interactive adobe form

former_member186319
Participant
0 Kudos

Hi Experts,

could you please tell me how to download interactive adobe form with filled data through report program (not by WebDynpro ABAP).

Note:- The downloaded form should be static.

Thankyou,

B. Raghu

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member186319
Participant
0 Kudos

Thanks for your support..

Former Member
0 Kudos

Hi,

look at the example report FP_TEST_00 in the workbench.

Steps to generate an adobe form:-

  • First get name of the generated function module

CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'

*open the form for printing

CALL FUNCTION 'FP_JOB_OPEN'

  • Now call the generated function module

CALL FUNCTION fm_name

  • Close spool job

CALL FUNCTION 'FP_JOB_CLOSE'

Steps to download the adobe form on your PC:-

  • convert the pdf into a binary file

CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'

*download the form on your PC

CALL METHOD cl_gui_frontend_services=>gui_download

Regards

Manisha