DBA Data[Home] [Help]

APPS.OE_ORDER_ADJ_PVT dependencies on INV_CONVERT

Line 4248: INV_CONVERT.INV_UM_CONVERSION(From_Unit => p_Line_rec.Ordered_quantity_uom2

4244: IF (p_Line_rec.pricing_quantity_uom = p_Line_rec.Ordered_quantity_uom2) Then
4245: px_req_line_tbl(l_line_index).PRICED_QUANTITY := nvl(p_Line_rec.shipped_quantity2,p_Line_rec.Ordered_quantity2);
4246: Else
4247: adj_debug('OPM in split scenario about to convert ') ;
4248: INV_CONVERT.INV_UM_CONVERSION(From_Unit => p_Line_rec.Ordered_quantity_uom2
4249: ,To_Unit => p_Line_rec.pricing_quantity_uom
4250: ,Item_ID => p_Line_rec.Inventory_item_id
4251: ,Uom_Rate => l_Uom_rate);
4252: px_req_line_tbl(l_line_index).PRICED_QUANTITY := nvl(p_Line_rec.shipped_quantity2,p_Line_rec.Ordered_quantity2) * l_uom_rate;

Line 4300: INV_CONVERT.INV_UM_CONVERSION(From_Unit => p_Line_rec.service_period

4296:
4297: If (p_Line_rec.service_period = p_Line_rec.Order_quantity_uom) Then
4298: px_req_line_tbl(l_line_index).UOM_QUANTITY := p_Line_rec.service_duration;
4299: Else
4300: INV_CONVERT.INV_UM_CONVERSION(From_Unit => p_Line_rec.service_period
4301: ,To_Unit => p_Line_rec.Order_quantity_uom
4302: ,Item_ID => p_Line_rec.Inventory_item_id
4303: ,Uom_Rate => l_Uom_rate);
4304: px_req_line_tbl(l_line_index).UOM_QUANTITY := p_Line_rec.service_duration * l_uom_rate;