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
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
Maybe because you set a unit without decimals ?
Add a comment