Application Development 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: 

SSF_OPEN and SSF_CLOSE

0 Kudos

I am calling several smart forms between SSF_OPEN and SSF_CLOSE function module. Problem is that for each call one PDF document getting create in FileNet archiving sytems. We would like to have only one single PDF document to be create containing output of several smartforms. Should it be done with using ARCHIVE_PARAMETERS of SSF_OPEN or configuration of archive link? how?

2 REPLIES 2

Former Member
0 Kudos

Hi Hetal:

If you print it in one spool ID, you can get it in one PDF:

DATA: gfc_job_output_options TYPE ssfcompop.

gfc_job_output_options-tdnewid = ''.

CALL FUNCTION fm_name

EXPORTING

control_parameters = gfc_control

user_settings = ' '

pt_head = l_header

pt_item = pt_item

output_options = gfc_job_output_options

IMPORTING

job_output_info = lt_job_output_info

EXCEPTIONS

formatting_error = 1

internal_error = 2

send_error = 3

user_canceled = 4

OTHERS = 5.

0 Kudos

Hi Samuel,

Thanks! I tried your suggestions. But still email output issued with one PDF file - containing several smartforms output - as an attachment BUT multiple pdf document created in FileNet Archiving system. Every call of smartforms created one single pdf image (link). Please let me know if you any other ideas. Thanks again.