DBA Data[Home] [Help]

APPS.AHL_OSP_COST_PVT dependencies on INV_CONVERT

Line 336: l_temp_uom_code || ') by calling inv_convert.inv_um_convert');

332: -- UOM Codes are different: Convert Quantity from OSP Line Service Item UOM to Primary UOM of the Service Item
333: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
334: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, L_DEBUG_KEY, 'UOM Codes are different. About to convert From Service Item UOM (' ||
335: l_osp_line_rec.service_item_uom_code || ') to Primary UOM (' ||
336: l_temp_uom_code || ') by calling inv_convert.inv_um_convert');
337: END IF;
338: l_converted_qty := inv_convert.inv_um_convert(item_id => l_osp_line_rec.service_item_id,
339: precision => 2, -- Hardcoded to 2
340: from_quantity => l_osp_line_rec.quantity,

Line 338: l_converted_qty := inv_convert.inv_um_convert(item_id => l_osp_line_rec.service_item_id,

334: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, L_DEBUG_KEY, 'UOM Codes are different. About to convert From Service Item UOM (' ||
335: l_osp_line_rec.service_item_uom_code || ') to Primary UOM (' ||
336: l_temp_uom_code || ') by calling inv_convert.inv_um_convert');
337: END IF;
338: l_converted_qty := inv_convert.inv_um_convert(item_id => l_osp_line_rec.service_item_id,
339: precision => 2, -- Hardcoded to 2
340: from_quantity => l_osp_line_rec.quantity,
341: from_unit => l_osp_line_rec.service_item_uom_code,
342: to_unit => l_temp_uom_code,