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

Cheque Printing

Former Member
0 Likes
364

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
Read only

prince_isaac
Active Participant
0 Likes
334

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
Read only

prince_isaac
Active Participant
0 Likes
335

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

Read only

Former Member
0 Likes
334

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