DBA Data[Home] [Help]

APPS.QP_SOURCING_API_PUB dependencies on INV_CONVERT

Line 655: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,

651: return 0;
652: end if;
653: END;
654:
655: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,
656: l_inv_precision,
657: x_item_quantity,
658: l_puom,
659: p_ordered_uom,

Line 710: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,

706: end if;
707:
708: END;
709:
710: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,
711: l_inv_precision,
712: x_item_quantity,
713: l_puom,
714: p_ordered_uom,

Line 764: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,

760: end if;
761:
762: END;
763:
764: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,
765: l_inv_precision,
766: x_item_quantity,
767: l_puom,
768: p_ordered_uom,

Line 1411: INV_CONVERT.INV_UM_CONVERSION(p_order_quantity_uom, l_uom_code, p_inventory_item_id, l_uom_rate);

1407: END IF;
1408: RETURN NULL;
1409: END IF;
1410:
1411: INV_CONVERT.INV_UM_CONVERSION(p_order_quantity_uom, l_uom_code, p_inventory_item_id, l_uom_rate);
1412:
1413: IF l_uom_rate > 0 THEN
1414: RETURN QP_NUMBER.NUMBER_TO_CANONICAL(TRUNC(l_uom_rate * p_ordered_quantity, 2));
1415: ELSE

Line 1480: INV_CONVERT.INV_UM_CONVERSION(l_ordered_quantity_uom, l_uom_code, l_inventory_item_id, l_uom_rate);

1476: l_ordered_quantity := QP_BULK_PREQ_GRP.G_Line_Rec.ordered_quantity(i);
1477: l_ordered_quantity_uom := QP_BULK_PREQ_GRP.G_Line_Rec.order_quantity_uom(i);
1478: l_inventory_item_id := QP_BULK_PREQ_GRP.G_Line_Rec.inventory_item_id(i);
1479:
1480: INV_CONVERT.INV_UM_CONVERSION(l_ordered_quantity_uom, l_uom_code, l_inventory_item_id, l_uom_rate);
1481:
1482: IF l_uom_rate > 0 THEN
1483: l_order_total := l_order_total +
1484: QP_NUMBER.NUMBER_TO_CANONICAL(TRUNC(l_uom_rate * l_ordered_quantity, 2));

Line 1508: INV_CONVERT.INV_UM_CONVERSION(l_ordered_quantity_uom, l_uom_code, l_inventory_item_id, l_uom_rate);

1504: EXIT WHEN l_lines_cursor%NOTFOUND;
1505:
1506:
1507:
1508: INV_CONVERT.INV_UM_CONVERSION(l_ordered_quantity_uom, l_uom_code, l_inventory_item_id, l_uom_rate);
1509:
1510: IF l_uom_rate > 0 THEN
1511: l_order_total := (l_order_total + TRUNC(l_uom_rate * l_ordered_quantity, 2));
1512: ELSE