cancel
Showing results for 
Search instead for 
Did you mean: 

Need to print multiple copies

Former Member
0 Kudos

Hi Friends,

Anybody can give some idea or suggestion how to print multiple copies of an invoice for the same output type.

Regards

raju

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Please check the field NAST-ANZAL..

Thanks,

Naren

Message was edited by:

Narendran Muthukumaran

Former Member
0 Kudos

Hi

U can indicate how many copies have to be printed in the dialog, or you can insert the call of the print (SMARTFORM or SAPSCRIPT) in a loop:

DO COPIES TIMES.

-


> PRINT THE DOCUMENT

ENDDO.

Max

Former Member
0 Kudos

Max,

I need to print multiple copies only for a particular condition , no need to print for each and every invoice.so where I need to give the condition, whether I need to change the form or driver program.

Thanks,

Raju

Former Member
0 Kudos

Hi

In this case you need to change the program, here you can know the message type and so you can decide how many times a document has to be printed:

DATA: COPIES TYPE I.

IF NAST-KSCHL = .....

ELSE.

ENDDO.

DO COPIES TIMES.

-


> PRINT THE DOCUMENT

ENDDO.

Max