cancel
Showing results for 
Search instead for 
Did you mean: 

Need Help: In RFFOUS_C Check printing

Former Member
0 Kudos

When we have multiple line items, check overflows to next page and make the first page as void.

My reqmt is when the first page is voided dont print some data like signature.

We are using a copy of RFFOUS_C and and a custom SAP script.

Am not able to find a way to dont print some windows if the cheque is voided..

Please help

Accepted Solutions (0)

Answers (6)

Answers (6)

Former Member
0 Kudos

not solved....client is OK with it now

former_member187457
Active Contributor
0 Kudos

if solved ..please close the thread

former_member187457
Active Contributor
0 Kudos

any update......

brad_bohn
Active Contributor
0 Kudos

You don't need custom variables to track whether the actual check is being issued as previously suggested. RFFOUS_C keeps a running total of the items being printed in the MAIN window and you can check whether the current page will print a 'live' check with this condition or a similar one:


IF &REGUH-RBETR& EQ &REGUD-SNETT&

Of course, it's much better and cost effective to stop using pre-printed checks altogether and print your checks on blank check stock using a combination of regular and MICR toner.

former_member187457
Active Contributor
0 Kudos

Hi ,

Check for next page as IF &NEXTPAGE& EQ 0

<CK>No.</><CK>&REGUD-CHECT&</>

:ELSE

<CK>No.**VOID**</>

endif.

like that you can use for other fields which you dont want to dispaly when void is required.

Thnx

Rahul

Edited by: Rahul Keshav on Aug 31, 2009 5:55 PM

Former Member
0 Kudos

Hi,

just put a condition to the window i.e IF &VAR& NE 'VOID'

Send value VOID into that parameter &VAR& from driver program.