Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Check Printing and Duplex

Former Member
0 Kudos

Hi Guys,

I am trying to print the address on the back side of

the first page of check.

I greatly appreciate feedback from anyone who has experience with check printing and Duplex finctionality.

I got it work for the printing the address on the last page if there are multiple checks.

Business Scenario:

1. If there are few invoices to hold on a single page.

SAP prints the actual check ...trying to get address on the backside of this page

2.If there are many invoices, then SAP voids the checks and prints the check on the last page....

i got the address on the back of this check ....by using

this option:

With the below settings it works fine for the last page.

The duplex has the vendor address which i need to print on the back of the check.

Page, NextPage, Mode

DUPLEX, NEXT, INC

FIRST, NEXT, START

NEXT, DUPLEX, INC

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

For printing on both sides do this...

1.In sap script page settings the print attribute 'PRINT MODE' of first page is set to 'D'(duplex) and back page 'PRINT MODE ' as blank (no change in print mode).

2. The sequence of page must be

next page of FIRST -> BACK

next page of BACK -> FIRST

3. printer settings are to be done for printing on both sides.

Sreedhar

4 REPLIES 4

Former Member
0 Kudos

Hi Guru,

I am also using the following for printing the label.

I am using output type we03,

Program SAPM07DR

FORM routine ENTRY_ETIE

GR slip txt: MM07_ETIKETT

Form RM07ETIKETT

I dont know how to get new barcode in label, can you help.

nasim1293@gmail.com

0 Kudos

Hello Shuva,

it is very simple to add new barcode to your label.

Copy your form RM07ETIKETT to ZRM07ETIKETT and edit it.

Create a new character format and add your Barcode there itself. (you have the option to add barcode).

Now, add this Character format to your Text Element to corresponding window in the layout. Save form. Activate form.

Then Goto NACE tcode and change config as follows for your output type.

Program SAPM07DR

FORM routine ENTRY_ETIE

GR slip txt: MM07_ETIKETT

Form ZRM07ETIKETT

Let me know if you have any questions.

regards,

Ram

0 Kudos

I am not sure how your PAGE WINDOWS are organized on the check layout set.

In the last section to print, you should check if the job is printing on one page using SAPSCRIPT-FORMPAGES. If it is a single page check, force a new page.

/: NEW-PAGE DUPLEX

Former Member
0 Kudos

Hi,

For printing on both sides do this...

1.In sap script page settings the print attribute 'PRINT MODE' of first page is set to 'D'(duplex) and back page 'PRINT MODE ' as blank (no change in print mode).

2. The sequence of page must be

next page of FIRST -> BACK

next page of BACK -> FIRST

3. printer settings are to be done for printing on both sides.

Sreedhar