Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Adobe Exception when assembling Forms into one

0 Likes
934

Hi experts!!

I've got a really annoying issue dealing with Adobe Forms.

My requirement is I need to create several pdf forms (depending on how many employees satisfy certain condition) and display all of them into one pdf File. I'm getting an system_error exception at FP_JOB_CLOSE: ADS: com.Adobe.Processin (200101).

This is how I'm trying to achieve the requirement:

  assemble = abap_true.
  bumode   = 'M'.
  getpdf   = 'M'.


  CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'.

  CALL FUNCTION 'FP_JOB_OPEN'.

  LOOP at count table.

    
          CALL FUNCTION <function of the form>

 

  ENDLOOP.

  CALL FUNCTION 'FP_JOB_CLOSE.

>>>>Exception is here: sy-subrc = 2: system_error.

Did I forget to set any parameters or is it a configuration issue?

Thank you all,

Lauro

  

    
  

1 ACCEPTED SOLUTION
Read only

0 Likes
729

Okay guys problem solved.

Apparently that is an adobe service that must be active for bundling PDF forms, through transaction SICF:

default_host/sap/bc/fpads.

If it's not active, right-click and activate it.

Also to be sure, service fp (above fpads) must be active as well.

PDF is now being generated successfully.

Cheers!

1 REPLY 1
Read only

0 Likes
730

Okay guys problem solved.

Apparently that is an adobe service that must be active for bundling PDF forms, through transaction SICF:

default_host/sap/bc/fpads.

If it's not active, right-click and activate it.

Also to be sure, service fp (above fpads) must be active as well.

PDF is now being generated successfully.

Cheers!