cancel
Showing results for 
Search instead for 
Did you mean: 

Printing multiple copies. sfpoutputparams' copies attribute does not work..

Former Member
0 Kudos

I have this requirement that asks me to print several copies of a form.

From what I understand this should do it:

fp_outputparams-copies = nast-anzal. (where fp_outputparams TYPE sfpoutputparams.)

When I debug the number of copies is copied correctly to the variable, however, at print time, there is only one copy printed.

Now I understand that some things are not supported, such as grouped printing of copies, Note 1009567, but in my case I just want to print several copies one after the other.

Anyone has any ideas what the problem might be?

Cheers,

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I have done a temporary fix using loops.

i.e.

DO N_copies+1

CALL FUNCTION fname

ENDDO.

You have to add one to the number of copies since it starts from 0.

If anyone has a good solution to this that would make the sfpoutputparams-copies attribute work, please let me know.

Points will be given.

Cheers,

Edited by: Paul C. on Jun 4, 2008 8:20 PM