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: 

Replace dot ('.') by comma(',').

Former Member
0 Kudos

<b></b><b></b>

Hi All,

We need to place commas in place of dots as in neumeric figures.Though the user profile was changed but the change is not reflected in neumeric figures.

Can anyone help me on this matter?

Thx.

Atrai.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

also try the OY01 setting..this may create problem sometimes...

OY01>country>check the decimal format..

hope it helps,

Regards,

Bikash

7 REPLIES 7

Former Member
0 Kudos

Hi Atrai,

Did you make the changes in the own data in user profiles...

if you have made..

try to log off and log in again..

regards

satesh

Former Member
0 Kudos

also try the OY01 setting..this may create problem sometimes...

OY01>country>check the decimal format..

hope it helps,

Regards,

Bikash

0 Kudos

Thx Bikash,my problem is solved.

Atrai.

Former Member
0 Kudos

Hai Atrai,

Try check your user setting ?

<b>menu system->user profile->own data

tab 'defaults'->decimal notation</b>.

hope this helps.

Regards,

Srikanth

Former Member
0 Kudos

Hi Atrai,

You can use REPLACE:-

REPLACE <str1> WITH <str2> INTO <c> [LENGTH <l>].

The statement searches the field <c> for the first occurrence of the first <l> positions of the pattern <str1>. If no length is specified, it searches for the pattern <str1> in its full length.

Then, the statement replaces the occurrence of the pattern <str1> in field <c> with the string <str2>.

You will have to first convert the number to type char and then reassign it

Regards,

Sameena

Former Member
0 Kudos

Hello Atrai,

It is notjust user profile but other areas in customisation also which impacts what is getting pronted. Let us know what u are trying to do and where u want this to happen.

0 Kudos

hi,

use: translate field using '.,'.

Andreas