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

Doubt on Check Print driver program???

Former Member
0 Likes
1,875

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,831

In the Include RFFORI01 
form scheckinfo_pruefen , used for check printing.

9 REPLIES 9
Read only

former_member187748
Active Contributor
0 Likes
1,831

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'.

Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
1,831

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

Read only

Former Member
0 Likes
1,831

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.

Read only

0 Likes
1,831

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

Read only

0 Likes
1,831

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?

Read only

0 Likes
1,831

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

Read only

Former Member
0 Likes
1,832

In the Include RFFORI01 
form scheckinfo_pruefen , used for check printing.

Read only

Sijin_Chandran
Active Contributor
0 Likes
1,831

Hello Harinath ,

Do a global search in your ZDRIVER program with keyword START_FORM.

Just to check the call of pages...

Read only

0 Likes
1,831

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.