‎2009 Sep 15 2:25 PM
hi frends i am using folwing variabes :
data var_qty(10) type p.
data var3(7) type p.
data var4(7) type p.
now i am writing a expression:
var4 = var 3* var_qty.
but there would be a wrong value in var4.
also if the value in var_qty is in decimals then it is taking it as (zero). now i recievd a value in var_qty from a field having type "quan".
plz guide me how could i solve it.
‎2009 Sep 15 2:36 PM
Add decimals 3 to ur declaration after type p.
Data : Qty(7) type p decimals 3.
‎2009 Sep 15 2:36 PM
Add decimals 3 to ur declaration after type p.
Data : Qty(7) type p decimals 3.
‎2009 Sep 15 2:36 PM