‎2009 Oct 15 11:13 AM
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.
‎2009 Oct 15 12:00 PM
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
‎2009 Oct 15 11:52 AM
delete the unwanted pages from the script....
or assign page1 as the next page in the page 1...
‎2009 Oct 15 11:53 AM
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.
‎2009 Oct 15 12:00 PM
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
‎2009 Oct 15 1:15 PM
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?
‎2009 Oct 15 1:20 PM
Is your program of type subroutine pool if not please change it to it in attributes of the ZCHEQUE_PRINT.
Thnx
Rahul
‎2009 Oct 16 10:41 AM
‎2009 Oct 19 7:22 AM
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?
‎2009 Oct 20 6:46 AM