cancel
Showing results for 
Search instead for 
Did you mean: 

Number of Copies

Former Member
0 Kudos

Hi,

I am calling smartform thru report (Selection Screen). In the selection screen i am passing parameter i.e. number of copies.

By default only one output will generate. but i need to generate the output with number of copies given in selection screen.

how can i do this>

for helpful answers, points will be rewarded.

thanks in advance.

Regards,

Balu

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

i solved like this.

DATA : L_OUTPUT_OPTIONS TYPE SSFCOMPOP.

*-- Here P_NOC is option of selection screen.

L_OUTPUT_OPTIONS-TDCOPIES = P_NOC.

CALL FUNCTION L_FM_NAME

EXPORTING

OUTPUT_OPTIONS = L_OUTPUT_OPTIONS

This is working fine.