cancel
Showing results for 
Search instead for 
Did you mean: 

SFPOUTPUTPARAMS-ASSEMBLE

Former Member
0 Kudos

Hello,

please where can I find some information how to use this parameter "ASSEMBLE".

it seems like a possibility for to merge into one PDF document.

how does it work?

are there any examples?

many thanks.

Hans Roesler

Accepted Solutions (0)

Answers (1)

Answers (1)

markus_karsch5
Explorer
0 Kudos

Hello Hans,

see program FP_CHECK_BATCH_PDF_RETURN. If you set parameter ASSEMBLE it will check these other parameters (somewhere in FP_JOB_OPEN):

FORM check_parameter_combination USING p_outpar TYPE sfpoutpar.

IF p_outpar-assemble = abap_true.

IF p_outpar-xfp = abap_true

OR p_outpar-getpdf <> c_bumode_multi

OR p_outpar-getpdl = abap_true

OR p_outpar-getxml = abap_true

OR p_outpar-preview = abap_true

OR p_outpar-arcmode <> c_print_only

OR p_outpar-bumode <> c_bumode_multi.

MESSAGE ID 'FPRUNX' TYPE 'E' NUMBER '003'

WITH 'ASSEMBLE' 'FP_JOB_OPEN'

RAISING usage_error.

ENDIF.

ENDIF.

ENDFORM. "check_parameter_combination

Regards

Markus