cancel
Showing results for 
Search instead for 
Did you mean: 

Cheque Printing : Different Bank Checks

Former Member
0 Kudos

Hi All,

Iam new to cheque printing,I need to print Payment Advice and next cheque should be printed.Here different banks have different cheque formats.So how to do this?

Can we attach a ZPROGRAM and to this?

Iam very good at Smartforms but not at Scripts,can we use Smartform to print this?

Awaiting for the valuble replies,

Thanks & Regards,

Rock.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi Rock,

For different formats you will have to create that many Smartforms/SapScripts and call them accordingly in the t-code from where you will be generating the cheque.

Yes, you can attach your z-program to print the cheques.

Yes, you can use Smartforms for this task, rather it will be preferable to use smartforms. I had done the cheque print program in smartform and let me tell you it was a hell lot easire than in sapscript...!!

Best of luck.

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

You can achieve it by using Scirpts: I also worked this same type of requirement for different countries.

I achieved it by placing condition in Window --->Text as

/: IF &Country& = 'US01'

xxx

xxx

/:Endif.

So for your requirement place single window and write condition

/: IF &BANKN& = '0001'.

xxxx

xxxx

/:ENDIF.

/: IF &BANKN& = '0002'.

xxxx

xxxx

/:ENDIF.

You can acheive it using Single print program.

Former Member
0 Kudos

Thanks all for giving time to reply this thread.

Solution : Created a Z program to print check.

Former Member
0 Kudos

Hi Rock,

There is a T-Code called FBZP where the Standard Program and Form is attached.

Normally Script is preferred over the Smartform. Standard Program is used A Z-Copy of the form is done. From the Z-Copy of the form we can write subroutines and customize the data in the form.

In-case different Checks are required for Different company codes, it is achieved through FBZP Company codes, assignment of the program and Form.

MICR code is achieved in MICR printers and usually Script is preferred over the Smartforms.

Thanks and Regards,

Shree Tejus.

Former Member
0 Kudos

Yes u can use Z program , Zscript/Zsmartform.

Normall all will copy the standard program and standard script and then change them acccordinly so that they will be not miss the standard format.

you need to write one Zprogram and Call diffrent Zscripts or zsmartforms for diffrent Banks.

Edited by: S.r.v.r.Kumar on Jan 28, 2009 12:44 PM