Hi,
data : x_kwmeng(15).
data : y_weight(30) type c .
data : w_weight type p decimals 3.
x_kwmeng = '100.111'.
y_weight = '1,111.111'.
w_weight = ( ( x_kwmeng * y_weight * 1000 ) ).
write w_weight.
DUMP : Unable to interpret "1,111.111 " as a number.
Any Solution Pls.
Vind.