cancel
Showing results for 
Search instead for 
Did you mean: 

Check print problem

Former Member
0 Kudos

Hi

i have problem in check printing .

we are running Z program and using the form F110_PRENUM_CHECK and it prints check correctly when there are 30 or less than checks per document no. (it means one page ) .i am getting problem when there are more than 30 checks bcs it is printing in more than one page and we are using text element 545 (standard driver program RFFOUS_C - prints check in last page) .

can any body help me in this to print check in first page even there are more than 30 checks per document

I appreciate all your help

Thanks

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member187452
Contributor
0 Kudos

Hi,

The number of line items to be printed can be limited through functional setting.

You can ask your functional consultant to limit the number of line items to be displayed.

Regards,

Bharat.

      • Rewads points if helpful.

former_member196280
Active Contributor
0 Kudos

This can be done in different ways...

1) it is required to modify the driver program according to your requirment.

2) if you don't wnat to modify the driver program, then write the following code in your layout

Goto check window and see where it is printing void... now replace void statement with one condition...

Ex: IF &PAGE& EQ 1.

Print details of the check

ELSE.

Print void.

Endif.

Now goto the actual check, and place the following condition

IF &PAGE& EQ 1.

Print details of the check

ELSE.

Print void.

Endif.

I guess this will help to solve your issue.

Close the thread once your question is answered.

Regards,

SaiRam

Former Member
0 Kudos

Hi Sairam thanks for your quick reply ,

i dont see any code for void checks and what you mean by actual check window and check window. i have only one check window . i am using text element 545 bcs of that it always prints in last page( as defined in standard program )

could you explain me clearly where should i use this .