cancel
Showing results for 
Search instead for 
Did you mean: 

how to download 2 adobe forms in a single pdf

0 Kudos

Hi,

I need to download 2 adobe form in a single pdf file. I used the concept as in FP_CHECK_BATCH_PDF_RETURN.

In that  I m passing outputparams for FP_JOB_OPEN

  fp_outputparams-nodialog   = abap_true.

  fp_outputparams-getpdf     = 'X'.

  fp_outputparams-assemble = abap_true.

  fp_outputparams-preview   = abap_false.

But this results an error message "Call contained errors : ASSEMBLE ( FP_JOB_OPEN).

Kindly check this error and provide me the solution to overcome this error.

Kindly provide if there is some other alternative to download 2 adobe forms in a single pdf file.

Thanks in advance,

Kiruthika P

email : DELETED


Message was edited by: Florian Henninger Do not post private information

Accepted Solutions (0)

Answers (2)

Answers (2)

Florian
Active Contributor
0 Kudos

You just can call different forms in a row to get one pdf in the end.

Start with

CALL FUNCTION 'FP_JOB_OPEN'


CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'

CALL FUNCTION '<Your_first_form>'


CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'

CALL FUNCTION '<Your_second_form>'

CALL FUNCTION 'FP_JOB_CLOSE'


Here is the official helpsite, to make my example more clear.

Example: Calling Forms in an Application Program - SAP Interactive Forms by Adobe - SAP Library

~Florian

Former Member
0 Kudos

Hi,

i think you must set the parameters as follow.

fp_outputparams-getpdf     = 'M'.

fp_outputparams-bumode  = 'M'.

Kind regards,


Sascha Ern