cancel
Showing results for 
Search instead for 
Did you mean: 

Smartforms - How to archive with multiple documents ?

Former Member
0 Kudos

Hello

I'm printing and archiving a document on smartforms correctly.

I introduced a modification - group several document in only one document :

with

CALL FUNCTION 'SSF_OPEN'

  • determine smartform function module for delivery note

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

  • call smartform delivery note

CALL FUNCTION lf_fm_name

CALL FUNCTION 'SSF_CLOSE'

The printing is ok, but the archiving is not done !!!

why ? in this case there's some other parameters to set up ??

thank you.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

This message was moderated.

Former Member
0 Kudos

Hello,

why I have to use CONVERT_OTF_2_PDF ?

(on the simply processus (without ssf_open and ssf_close ) run correctly )

Former Member
0 Kudos

solved by:

loop

ls_control_param-no_open = 'X'.

ls_control_param-no_close = 'X'.

AT FIRST.

ls_control_param-no_open = ' '.

ENDAT.

AT LAST.

ls_control_param-no_close = ' '.

ENDAT.

call smartforms

endloop