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

Regarding table T005X

anuj_srivastava
Active Participant
0 Likes
1,322

Hi ,

My problem was that when i was using write statement for diplaying the amount it was not coming proper.

Ex if amount was 25,506.59 it was diplaying as 25.506,59.

I looked out for the problem and found out that in table T005X the decimal notation ( field XDEZP ) was marked with value ' '.When i changed the value in table T005X to 'X'.

It gave me the correct output.

So my question is changing the value directly into the table is the right approach and is it going to effect my any other process.??

Regards,

Anuj

1 ACCEPTED SOLUTION
Read only

former_member203501
Active Contributor
0 Likes
1,157

it is always better not to change the standard table properties ...because in your program they need this format.....in some other format they may need some other ....so it is alywas better to modify the data while processing by using the replace or some other ways

8 REPLIES 8
Read only

Former Member
0 Likes
1,157

well most probably there is some point in customizing where you can edit that table.

Changing that field straight in the table is not the correct way i hence.

If you changed it via SE16N, you even got no transport request to bring your new property into the following systems.

Read only

former_member203501
Active Contributor
0 Likes
1,158

it is always better not to change the standard table properties ...because in your program they need this format.....in some other format they may need some other ....so it is alywas better to modify the data while processing by using the replace or some other ways

Read only

0 Likes
1,157

Hi all,

Thx for the reply.

Is there anyother way in the user setting through which the field in table T005X is updated.

Regards,

Anuj

Read only

0 Likes
1,157

Hello

For user: SU01 -> Default -> Decimal notation

Read only

0 Likes
1,157

Hi Maroz ,

Thx for the reply .

But this thing was not working earlier also.

When i got this problem i checked the SU01 but it was of no use.

Regards,

Anuj

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,157

>

> Is there anyother way in the user setting through which the field in table T005X is updated.

Hello,

You can do the same using the approach specified by Dzed. It basically updates the field USR01-DCPFM. But this change will be specific to your user only.

If someone else is using the report then this setting will not work.

BR,

Suhas

Read only

Former Member
0 Likes
1,157

From SAP screen System> User Profile> Own Data and in default tab you cam modify the decimal notation.

Regards

Sathar

Read only

anuj_srivastava
Active Participant
0 Likes
1,157

done..