cancel
Showing results for 
Search instead for 
Did you mean: 

can i take the printout for more than one billing document in SD at a time

Former Member
0 Kudos

HI ALL,

The issue is '' i want to take the print out for more than one SD - billing document at a time.

is there any config settings to be done.

please guide me if u have the solution ASAP.

Regards,

SOMU.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear Mr Reddy,

Could you kindly have a look at the transacion VF31?

Regards,

K Gopidas.

Answers (3)

Answers (3)

Former Member
0 Kudos

hi,

it is very thankful to given the answer within a short span of period.

thank you SDN

Former Member
0 Kudos

Yes u can ....it is very much possible using VF31

but all ur billing doc must have output type assigned to it and most importantly ur dispatch time while assigning output type to billing document should be 3 ie Send with application own transaction.........otherwise u will get output could not be issued

Regards

Jagdish

former_member183879
Active Contributor
0 Kudos

Yes, it is possible. However you may have to enable a field NAST-ANZAL. This field is available in VV31 when you are maintaining the output records. The field Number of Messages can be filled with the numberof copies youwant.

However, I think you have to read this in your custom program to trigger n number of copies. If that is done, you can take the printouts as many times as you want in a single trigger.

The code approx looks like this

IF nast-anzal EQ 0.

nast_anzal = 1.

ELSE.

nast_anzal = nast-anzal.

ENDIF.

nast-anzal = 1.

nast-dsnam = nast-kschl.

nast-dsuf2 = vbdkr-vbeln.

DO nast_anzal TIMES

If you show this field and talk to your developer, he should be able to help you.

Hope this helps.