‎2009 Oct 21 2:33 PM
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.
‎2009 Oct 21 3:07 PM
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
‎2009 Oct 21 3:07 PM
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
‎2009 Nov 04 3:49 AM
can u share that report. I will do tweaking as per my requirement.