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

su01 with sapscript

Former Member
0 Likes
878

how i could know in sapscript if the user have in

SU01-details - decimal notation 1 or 2.

there is an option to know it in the code se71 or se38

7 REPLIES 7
Read only

Former Member
0 Likes
830

It is a bit difficult to know the SU01 setting of the user. In stead of that move the filed containing decimal to a character and then print it as character. This will work.

Regards,

Subhasish

Read only

Former Member
0 Likes
830

In Se38 you can query from <b>USR01</b> table for field <b>DCPFM</b> with <b>SY-UNAME</b> values will be like:

X : Decimal point is period: N,NNN.NN

SPACE: Decimal point is comma: N.NNN,NN

Y : Decimal point is N NNN NNN,NN

rgds,

TM.

Read only

Former Member
0 Likes
830

check table entries in <b>USR01</b>-<b>DCPFM</b>

regards

Prabhu

Read only

Former Member
0 Likes
830

Hi,

Check the table

USR01 in that field <b>DCPFM</b> , this will tell which notation is set for the user.

check this also,

Regards

vijay

Read only

0 Likes
830

vajay

do you have a code that handle this in sapscript-se38

you kow perform?

Read only

0 Likes
830

Hi liat,

with the help of Performs you can get it.

you can code in side the perform.Just check the above thread which i mentioned in my post.

Regards

vijay

Read only

Former Member
0 Likes
830

also u can use statement set country

based on the country format

set country 'IN'.

will set to indian format.

that way u wont have worry about neither date nor currency

Harish