‎2006 Dec 06 7:42 AM
Hi all,
I want to set curreny format in commas instead of decimals. Any idea where and how to do it across users.
Regards,
Sudipto.
‎2006 Dec 06 7:48 AM
do this way ..
You can use :
Write <CURRENCYFILED> USING CURRENCY 'USD'.This will convert the decimal points to Commas.
REgards,
Santosh
‎2006 Dec 06 7:50 AM
hi
go to t-code SU3.
select the 'Defaults' tab.
and under decimal notification, you can select the format you want.
thanks
pavan
‎2006 Dec 06 7:52 AM
chk this
data: l_amnt(100) type c.
l_amnt = '1.234.567,89'.
replace all occurrences of ',' in l_amnt with '#'.
replace all occurrences of '.' in l_amnt with ','.
replace all occurrences of '#' in l_amnt with '.'.
write : l_amnt.
‎2006 Dec 06 8:22 AM
Hi,
Thanks all.
No I dont want for a particular report. It should be the default output format across users.
Sorry didnt make myself clear on this.
Regards,
Sudipto