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

Setting currency format

Former Member
0 Likes
767

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.

4 REPLIES 4
Read only

Former Member
0 Likes
742

do this way ..

You can use :

Write <CURRENCYFILED> USING CURRENCY 'USD'.

This will convert the decimal points to Commas.

REgards,

Santosh

Read only

Former Member
0 Likes
742

hi

go to t-code SU3.

select the 'Defaults' tab.

and under decimal notification, you can select the format you want.

thanks

pavan

Read only

Former Member
0 Likes
742
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.
Read only

0 Likes
742

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