‎2006 Oct 26 10:08 AM
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
‎2006 Oct 26 10:15 AM
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
‎2006 Oct 26 10:11 AM
‎2006 Oct 26 10:13 AM
Hello!
what do you mean set unit without decimals places.
the field us type P decimals places 3.
thanks
yifat
‎2006 Oct 26 10:15 AM
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