DBA Data[Home] [Help]

APPS.WSH_INBOUND_UTIL_PKG dependencies on WSH_WV_UTILS

Line 3241: --Call function WSH_WV_UTILS.CONVERT_UOM which returns the converted quantity.

3237: -- HW OPMCONV - Removed code forking
3238: -- New condition is the OR condition
3239: IF (p_inv_item_id IS NULL
3240: OR p_primary_uom_code <> p_qty_uom_code) THEN
3241: --Call function WSH_WV_UTILS.CONVERT_UOM which returns the converted quantity.
3242: x_conv_qty := wsh_wv_utils.convert_uom(
3243: from_uom => p_qty_uom_code,
3244: to_uom => p_primary_uom_code,
3245: quantity => p_quantity,

Line 3242: x_conv_qty := wsh_wv_utils.convert_uom(

3238: -- New condition is the OR condition
3239: IF (p_inv_item_id IS NULL
3240: OR p_primary_uom_code <> p_qty_uom_code) THEN
3241: --Call function WSH_WV_UTILS.CONVERT_UOM which returns the converted quantity.
3242: x_conv_qty := wsh_wv_utils.convert_uom(
3243: from_uom => p_qty_uom_code,
3244: to_uom => p_primary_uom_code,
3245: quantity => p_quantity,
3246: item_id => p_inv_item_id,