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: 

How to get decimal notation in 'SU01'?

Former Member
0 Kudos

Hi guys,

You know that when we process the currency, it needs to know what the user have set the decimal notation.

You can run tcode 'SU01',click the tab 'default' to see it.

So how to get the user the setting?

Any function module ?

Welcome any ideas.

Thanks very much.

--James Liu

1 ACCEPTED SOLUTION

Former Member

Hi,

Check the FM <b>SUSR_USER_READ</b>

In that there is an exporting parameter USER_DEFAULTS

Go to that structure , Field DCPFM tells decimal notation.

Go to its domain XUDCPFM , Value range . Its tells the possible values.

Regards,

4 REPLIES 4

Former Member

Hi,

Check the FM <b>SUSR_USER_READ</b>

In that there is an exporting parameter USER_DEFAULTS

Go to that structure , Field DCPFM tells decimal notation.

Go to its domain XUDCPFM , Value range . Its tells the possible values.

Regards,

Former Member
0 Kudos

hi,

check by using FM

SUSR_GET_USER_DEFAULTS

Former Member
0 Kudos

make use if table

USR01

USR01-DCPFM	XUDCPFM	CHAR	1	0	Decimal notation

possible values:

		1.234.567,89
	X	1,234,567.89
	Y	1 234 567,89

regards

Prabhu

Former Member
0 Kudos

OK,now.

Thanks, all guys