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

Decimal format change

Former Member
0 Likes
491

Hi experts,

i need to write an amount like 9993,12 with a point '.' instead of a comma ','.

exp: 1985.03 instead of 1985,03

is there a command that do this?

Regards,

Soufiane

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
459

HI

There is no command for this.

However your can use the REPLACE statement.

Replace ',' by '.'.

Plz reward points if helpful

3 REPLIES 3
Read only

Former Member
0 Likes
459

Chose from menu: System->User Profile->Own data.

Go to the Defaults tab: Chose the decimal notation you need.

Save,.

Regards,

ravi

Read only

Former Member
0 Likes
459

Hello,

U could use WRITE COMMAND for this.

<b>

DATA: AMT(16).

WRITE: QUANTITY TO AMT.

WRITE: AMT.</b>

Vasanth

Read only

Former Member
0 Likes
460

HI

There is no command for this.

However your can use the REPLACE statement.

Replace ',' by '.'.

Plz reward points if helpful