DBA Data[Home] [Help]

APPS.QP_SOURCING_API_PUB dependencies on INV_CONVERT

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

643: return 0;
644: end if;
645: END;
646:
647: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,
648: l_inv_precision,
649: x_item_quantity,
650: l_puom,
651: p_ordered_uom,

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

698: end if;
699:
700: END;
701:
702: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,
703: l_inv_precision,
704: x_item_quantity,
705: l_puom,
706: p_ordered_uom,

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

752: end if;
753:
754: END;
755:
756: x_Conv_quantity := QP_NUMBER.NUMBER_TO_CANONICAL(inv_convert.inv_um_convert(p_inventory_item_id,
757: l_inv_precision,
758: x_item_quantity,
759: l_puom,
760: p_ordered_uom,

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

1399: END IF;
1400: RETURN NULL;
1401: END IF;
1402:
1403: INV_CONVERT.INV_UM_CONVERSION(p_order_quantity_uom, l_uom_code, p_inventory_item_id, l_uom_rate);
1404:
1405: IF l_uom_rate > 0 THEN
1406: RETURN QP_NUMBER.NUMBER_TO_CANONICAL(TRUNC(l_uom_rate * p_ordered_quantity, 2));
1407: ELSE

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

1468: l_ordered_quantity := QP_BULK_PREQ_GRP.G_Line_Rec.ordered_quantity(i);
1469: l_ordered_quantity_uom := QP_BULK_PREQ_GRP.G_Line_Rec.order_quantity_uom(i);
1470: l_inventory_item_id := QP_BULK_PREQ_GRP.G_Line_Rec.inventory_item_id(i);
1471:
1472: INV_CONVERT.INV_UM_CONVERSION(l_ordered_quantity_uom, l_uom_code, l_inventory_item_id, l_uom_rate);
1473:
1474: IF l_uom_rate > 0 THEN
1475: l_order_total := l_order_total +
1476: QP_NUMBER.NUMBER_TO_CANONICAL(TRUNC(l_uom_rate * l_ordered_quantity, 2));

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

1496: EXIT WHEN l_lines_cursor%NOTFOUND;
1497:
1498:
1499:
1500: INV_CONVERT.INV_UM_CONVERSION(l_ordered_quantity_uom, l_uom_code, l_inventory_item_id, l_uom_rate);
1501:
1502: IF l_uom_rate > 0 THEN
1503: l_order_total := (l_order_total + TRUNC(l_uom_rate * l_ordered_quantity, 2));
1504: ELSE