Application Development and Automation 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: 
Read only

Cheque Printing problem

Former Member
0 Likes
965

Hi,

I have copied std F110_IN_CHECK and rename it as Zform and commented unwanted code. My requirement is to print Date, Amount, words and Payer Name only. When i am seeing print preview, its printing 4 pages including 3 blank pages. I want to get only 1 page. How i can i achieve it?

I have written the logic in custom print program using PERFORM formname IN PROGRAM prgname. But my print prg is not calling.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
929

Hi,

in your program after all write_form use

loop.

'at end of payer'.

then end_form.

then start_form.

end at.

endloop.

and finaly close_form

8 REPLIES 8
Read only

RahulKeshav
Active Contributor
0 Likes
929

delete the unwanted pages from the script....

or assign page1 as the next page in the page 1...

Read only

Former Member
0 Likes
929

Hi lakshmi

go to form settings - form painter, then click on other other attributes (its near to first page of check) .

in that give page mode - initialize counter.

then u wil get only one page.

Read only

Former Member
0 Likes
930

Hi,

in your program after all write_form use

loop.

'at end of payer'.

then end_form.

then start_form.

end at.

endloop.

and finaly close_form

Read only

0 Likes
929

Hi

I have written the logic in the script as PERFORM F_SUM IN PROGRAM ZCHEQUE_PRINT.

My program ZCHEQUE_PRINT logic as follows.

FORM f_sum TABLES lt_intab STRUCTURE itcsy

lt_outtab STRUCTURE itcsy.

Endform.

That means i didnt change my standard print program. While debugging my logic is not calling. How i can achieve it?

Blank pages are coming from standard print program RFFOUS_C even though i have deleted next page. how i can get only 1 page?

Read only

0 Likes
929

Is your program of type subroutine pool if not please change it to it in attributes of the ZCHEQUE_PRINT.

Thnx

Rahul

Read only

RahulKeshav
Active Contributor
0 Likes
929

HI,

Did you checked the attrbute of the program...

Thnx

RK

Read only

0 Likes
929

Hi,

Thnx. Now my program is calling. But the problem is getting balnk pages.

These blank pages are coming from standard print program RFFOUS_C even though i have deleted next page. how i can get only 1 page?

Read only

0 Likes
929

Thnx. Its working.