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

screen problem

Former Member
0 Likes
440

hi!

I have a weird problem , i defined screen with table.

One of the fields is quantity type LFIMG.

We are using BARCODE READER in order to fill the table.

In english logon quantity is OK 1.000, in HEBREW logon,

the screen is from right to left and the quantity is 1000.000

Why is it happening?

thanks

Yifat

1 ACCEPTED SOLUTION
Read only

gopi_narendra
Active Contributor
0 Likes
409

select single * from USR01 where BNAME = SY-UNAME.

case USR01-DCPFM.

when 'X'.

translate L_QNTY1 using ',.'.

translate L_QNTY2 using ',.'.

when ' ' .

translate L_QNTY1 using '.,'.

translate L_QNTY2 using '.,'.

when others.

endcase.

Try this.

Regards

- Gopi

3 REPLIES 3
Read only

FredericGirod
Active Contributor
0 Likes
409

Maybe because you set a unit without decimals ?

Read only

Former Member
0 Likes
409

Hello!

what do you mean set unit without decimals places.

the field us type P decimals places 3.

thanks

yifat

Read only

gopi_narendra
Active Contributor
0 Likes
410

select single * from USR01 where BNAME = SY-UNAME.

case USR01-DCPFM.

when 'X'.

translate L_QNTY1 using ',.'.

translate L_QNTY2 using ',.'.

when ' ' .

translate L_QNTY1 using '.,'.

translate L_QNTY2 using '.,'.

when others.

endcase.

Try this.

Regards

- Gopi