Application Development 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: 

Cheque Printing

Former Member
0 Kudos

Sir,

I developed one simple classical report to print Cheque . But client requriment to print * *** ( astricks ) before the cheque amount.

Please, any one help me ...

Manoj.

1 ACCEPTED SOLUTION

prince_isaac
Active Participant
0 Kudos

Hie

declare a char type variable that you will use to display the amount on the cheque and follow the below coding.


DATA: zamount LIKE bseg-wrbtr,
      char_amnt(12).

zamount = '1200'.
WRITE char_amnt.
WRITE zamount TO char_amnt CURRENCY t001-waers.
TRANSLATE char_amnt USING ' *'.
WRITE char_amnt. 'cheque amount

regards

Isaac Prince

2 REPLIES 2

prince_isaac
Active Participant
0 Kudos

Hie

declare a char type variable that you will use to display the amount on the cheque and follow the below coding.


DATA: zamount LIKE bseg-wrbtr,
      char_amnt(12).

zamount = '1200'.
WRITE char_amnt.
WRITE zamount TO char_amnt CURRENCY t001-waers.
TRANSLATE char_amnt USING ' *'.
WRITE char_amnt. 'cheque amount

regards

Isaac Prince

Former Member
0 Kudos

can u share that report. I will do tweaking as per my requirement.