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

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

Former Member
0 Likes
1,426

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

Former Member
0 Likes
1,079

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

OY01>country>check the decimal format..

hope it helps,

Regards,

Bikash

7 REPLIES 7
Read only

Former Member
0 Likes
1,079

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

Read only

Former Member
0 Likes
1,080

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

OY01>country>check the decimal format..

hope it helps,

Regards,

Bikash

Read only

0 Likes
1,079

Thx Bikash,my problem is solved.

Atrai.

Read only

Former Member
0 Likes
1,079

Hai Atrai,

Try check your user setting ?

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

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

hope this helps.

Regards,

Srikanth

Read only

Former Member
0 Likes
1,079

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

Read only

Former Member
0 Likes
1,079

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.

Read only

0 Likes
1,079

hi,

use: translate field using '.,'.

Andreas