DBA Data[Home] [Help]

APPS.WSH_WV_PVT dependencies on INV_CONVERT

Line 2233: -- inv_convert.inv_um_convert (when item_id is not NULL)

2229: -- item_id (optional)
2230: -- RETURN number
2231:
2232: -- Dependencies
2233: -- inv_convert.inv_um_convert (when item_id is not NULL)
2234:
2235: FUNCTION convert_uom(from_uom IN VARCHAR2,
2236: to_uom IN VARCHAR2,
2237: quantity IN NUMBER,

Line 2253: result := INV_CONVERT.inv_um_convert(item_id,

2249: ELSIF from_uom IS NULL
2250: OR to_uom IS NULL THEN
2251: result := 0;
2252: ELSE
2253: result := INV_CONVERT.inv_um_convert(item_id,
2254: 6, -- precision digits
2255: quantity,
2256: from_uom,
2257: to_uom,