‎2008 Apr 25 4:59 PM
The qty on delivery is 31 EA and 1CS =12 EA for this item, so the qty. conversion would be 2.58 CS and because of the rounding down to the closest integer it should be 2 and not 3.
Is it possible to round down the qty with FM MATERIAL_UNIT_CONVERSION?
‎2008 Apr 25 6:28 PM
Use the command floor to round down.No need to use Func Module.
d = 2.62
x = floor(d) = 2 .
‎2008 Apr 25 6:28 PM
Use the command floor to round down.No need to use Func Module.
d = 2.62
x = floor(d) = 2 .