cancel
Showing results for 
Search instead for 
Did you mean: 

allform outputs under one spool request?

Former Member
0 Kudos

hai,

iam executing the smart form for 10 customers(for sales orders).

how can i get all these 10 outputs under one spool request?

and if i execute the smart form ,i should not get the PRINT dailog screen.Directly , it should go to spool....how?

regards,

vrlreddy

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

When calling your smartform FM, pass value 'X' for parameter user_settings as below.

CALL FUNCTION lf_fm_name

EXPORTING

archive_index = toa_dara

archive_parameters = arc_params

control_parameters = ls_control_param

mail_recipient = ls_recipient

mail_sender = ls_sender

output_options = ls_composer_param

user_settings = 'X'

This means standard user setting is used instead of asking for print parameter through PRINT dailog screen.

Regards,

Teddy