cancel
Showing results for 
Search instead for 
Did you mean: 

Chqeque Prining Issues

Former Member
0 Kudos

Hi Experts,

I'm phasing printing problem with Cheques....

First page printing is Ok...

From 2nd page onwards are the lines and coloums are jumping...

here are the details...

Printer Model : EPSON-LQ680 Pro 24/48 DOT Matrix Printer

Access Method : U - Print Using Berkeley Protocol

OS Level Printer : EPSON LX-300+

SAP Level : EPSON-LQ680 Pro 24/48 DOT Matrix Printer

PAGE Format : ZCHECK

Orientation : Portrait

Page Width : 8 IN

Page Height : 267 MM

Looking forward to hear from you soon....

Thanks & Regards,

Shareef

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member196280
Active Contributor
0 Kudos

I guess, you have two page in your SAPscript of your cheque, make sure you modify the changes in second page similar to first page or change the next page attribute of first page to FIRST (if at all it suits your requirement)

Regards,

SaiRam

Former Member
0 Kudos

Hi,

In yur Driver Program.....

Call function 'OPEN_FORM'.

Loop at itab. "

CALL FUNCTION 'START_FORM'

EXPORTING

language = sy-langu

startpage = 'PAGE1'.

CALL FUNCTION 'WRITE_FORM'

EXPORTING

element = 'MAIN'

function = 'SET'

window = 'INVOICE'

EXCEPTIONS

element = 1

function = 2

type = 3

unopened = 4

unstarted = 5

window = 6

bad_pageformat_for_print = 7

spool_error = 8

OTHERS = 9.

IF sy-subrc 0.

ENDIF.

CALL FUNCTION 'END_FORM'.

Endloop.

CALL FUNCTION 'CLOSE_FORM'.

U do like that.... Ur probelm will solve.....

Thanks,

Durai.V