DBA Data[Home] [Help]

APPS.OE_ORDER_ADJ_PVT dependencies on INV_CONVERT

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

4161: IF (p_Line_rec.pricing_quantity_uom = p_Line_rec.Ordered_quantity_uom2) Then
4162: px_req_line_tbl(l_line_index).PRICED_QUANTITY := nvl(p_Line_rec.shipped_quantity2,p_Line_rec.Ordered_quantity2);
4163: Else
4164: adj_debug('OPM in split scenario about to convert ') ;
4165: INV_CONVERT.INV_UM_CONVERSION(From_Unit => p_Line_rec.Ordered_quantity_uom2
4166: ,To_Unit => p_Line_rec.pricing_quantity_uom
4167: ,Item_ID => p_Line_rec.Inventory_item_id
4168: ,Uom_Rate => l_Uom_rate);
4169: px_req_line_tbl(l_line_index).PRICED_QUANTITY := nvl(p_Line_rec.shipped_quantity2,p_Line_rec.Ordered_quantity2) * l_uom_rate;

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

4213:
4214: If (p_Line_rec.service_period = p_Line_rec.Order_quantity_uom) Then
4215: px_req_line_tbl(l_line_index).UOM_QUANTITY := p_Line_rec.service_duration;
4216: Else
4217: INV_CONVERT.INV_UM_CONVERSION(From_Unit => p_Line_rec.service_period
4218: ,To_Unit => p_Line_rec.Order_quantity_uom
4219: ,Item_ID => p_Line_rec.Inventory_item_id
4220: ,Uom_Rate => l_Uom_rate);
4221: px_req_line_tbl(l_line_index).UOM_QUANTITY := p_Line_rec.service_duration * l_uom_rate;