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 change the decimal notation(USR01-DCPFM)

Former Member
0 Kudos

Hi All,

I have applied this below logic it is not changing the decimal notation(DCPFM) from system --> user profile --> own data --> default --> the decimal notation.

Please tell me why it is not changing.

data: defaults type bapidefaul.

data: defaultsx type bapidefax.

clear return. refresh return.

defaults = 'X'.

defaultsx = 'X'.

call function 'BAPI_USER_CHANGE'

EXPORTING

username = 'Test'

defaults = defaults

defaultsx = defaultsx

TABLES

return = return.

Regards,

Karthik.

2 REPLIES 2

Former Member
0 Kudos

1.u are COMMITTING work ?

2.Got any Errors ?

BAPI call should be like this

call 'BAPI'.

if i_return is initial.

COMMIT WORK and WAIT.

endif.

Regards

Prabhu

Former Member
0 Kudos

Hi karthik,

look at this thread (from yourselve):

Regards, Dieter