2014 Apr 01 8:01 AM
Hi ABAPers,
I have a doubt about Check Printing Driver program. I have copied the standard Script and driver program into Z and modified ZSCRIPT as per our need. Then i configured my ZSCRIPT and ZDRIVER(copied from RFFOUS_C but not changed) in FBZP. Now i want only CHECK window to be printed in one page as output(as per requirement). But i am getting 4 pages and in last page i am getting my check,but on first 3 pages i am getting nothing. So can anyone suggest me how can i remove blank pages and print only my Check in just one page as output????
Moderator message - "Urgency" is not catered to in the ABAP forums.
Message was edited by: Suhas Saha
2014 Apr 01 10:52 AM
In the Include RFFORI01
form scheckinfo_pruefen , used for check printing.
2014 Apr 01 8:13 AM
Hi Harinath,
please search this forum, such type of questions has been discussed many times, please search, and also according to ROE, never write 'URGENT'.
2014 Apr 01 8:14 AM
Hi Harinath
Please dont use urgent keyword and its agains ROE. Seconldy in case you only want check to be printed you can comment all the calls of write_form FM apart from the one realted to check in your driver program assuming you dont need the other data
Nabheet
2014 Apr 01 9:45 AM
Hi Sanjeev,Nabheet,
Thank you for the answers.
I have already commented all the WRITE_FORM but logic is distributed between pages. So,its a bit complicated to differtiate between pages and windows to be commented.
By d way its my first post in SCN. Was not aware .Wont use URGENT again.
2014 Apr 01 9:57 AM
What i would have done is two things one is comment everything else. Seconldy check on which page lies the check..? then use open_form with page and then write_form and close_form
Nabheet
2014 Apr 01 10:23 AM
Hi Nabheet,
Check is present in every page and if we comment all the pages and just call the check window element it is not printing the values on the check. As values are coming from F110 and passed to Check window if we comment the logic in Driver program it will not print the values on form.
Can i know the place in driver program where values are passed to Check window?
2014 Apr 01 10:40 AM
Hi Hari
If check if already present on all pages...and if you comment everything except where check is printed and put a open_form and close_form after it check will print
Since you have commented the code you must be knowing the place check subroutine CHECK
Nabheet
2014 Apr 01 10:52 AM
In the Include RFFORI01
form scheckinfo_pruefen , used for check printing.
2014 Apr 01 12:47 PM
2014 Apr 01 1:03 PM
Hi Nabheet,Manjunath,Sijin,
Thank you all for the answers.. it helped a lot...found the position where i have to restrict by debugging..
It was in SCHECK routine/RFFORI01 include.where i have commented logic for last page and next page.