cancel
Showing results for 
Search instead for 
Did you mean: 

Printing number of copies problem

Former Member
0 Kudos

Hello,

I have a problem printing a smartform. In the printing dialog If I choose for example 3 copies, it only prints 1. No matter what I choose it always prints one copy only. I would like to print the 5 copys in the same spool order. For example If I saves the file in pdf format, I would like to have only one pdf file with 5 copies in the same file.

Is this possible?

The client says it's an error...

Best regards,

Mario

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

Here having one more option that can be done at driver program level as follows:

1.defining the variable of ssfcompop type as:

data: cs_composer_param TYPE ssfcompop.

2. assigning the no of copies using tdcopies parameter:

cs_composer_param-tdcopies = 5.

Former Member
0 Kudos

Hi,

Here having one more option that can be done at driver program level as follows:

1.defining the variable of ssfcompop type as:

data: cs_composer_param TYPE ssfcompop.

2. assigning the no of copies using tdcopies parameter:

cs_composer_param-tdcopies = 1.

Former Member
0 Kudos

well this is possible, if the driver program is coded accordingly.

SAP standard driver programs normally offer that functionality. Often you can find following line of coding in those programs:

Do nast-anzal times.

"print form

enddo.