DBA Data[Home] [Help]

APPS.PO_RELGEN_PKG dependencies on PO_UOM_S

Line 995: x_conversion_rate := po_uom_s.po_uom_convert(req_line.req_uom,

991: -- bug2763177
992: -- should not comment out derivation of x_conversion_rate as it is
993: -- used for quantity conversion
994:
995: x_conversion_rate := po_uom_s.po_uom_convert(req_line.req_uom,
996: req_line.po_uom,
997: req_line.item_id);
998:
999: /* Bug 2758378 - The parameters for uom_convert was in the wrong order

Line 1004: po_uom_s.uom_convert(req_line.quantity,

1000: which resulted in Create Releases program to complete with error
1001: exiting with status 1. Interchanged the req_line.item_id and the
1002: req_line.po_uom parameters */
1003:
1004: po_uom_s.uom_convert(req_line.quantity,
1005: req_line.req_uom,
1006: req_line.item_id,
1007: req_line.po_uom,
1008: l_quantity);

Line 1019: PO_UOM_S.get_secondary_uom( req_line.item_id,

1015: x_secondary_unit_of_measure := req_line.secondary_unit_of_measure;
1016: x_secondary_quantity := req_line.secondary_quantity;
1017:
1018: IF x_secondary_quantity is NULL and req_line.item_id is NOT NULL THEN
1019: PO_UOM_S.get_secondary_uom( req_line.item_id,
1020: req_line.destination_organization_id,
1021: x_secondary_uom_code,
1022: x_secondary_unit_of_measure);
1023:

Line 1025: po_uom_s.uom_convert(req_line.quantity,

1021: x_secondary_uom_code,
1022: x_secondary_unit_of_measure);
1023:
1024: IF x_secondary_unit_of_measure is NOT NULL THEN
1025: po_uom_s.uom_convert(req_line.quantity,
1026: req_line.req_uom,
1027: req_line.item_id,
1028: x_secondary_unit_of_measure,
1029: x_secondary_quantity);

Line 1393: x_conversion_rate := round(po_uom_s.po_uom_convert(req_line.req_uom,

1389: in autocreate. Thus the value being returned by the function
1390: call was rounded off to 5 digits after decimal to prevent
1391: such high prcision to be generated.
1392: */
1393: x_conversion_rate := round(po_uom_s.po_uom_convert(req_line.req_uom,
1394: req_line.po_uom,
1395: req_line.item_id),5);
1396: END IF;
1397:

Line 2677: po_uom_s.po_uom_conversion(

2673: */
2674:
2675: --Call function that returns the shipment price
2676: --converted to the correct UOM.
2677: po_uom_s.po_uom_conversion(
2678: l_ship_unit_of_measure(shipment_line),
2679: l_req_unit_of_measure(req_line),
2680: l_item_id(shipment_line),
2681: l_shipment_to_req_rate);

Line 2793: po_uom_s.po_uom_conversion(

2789: */
2790:
2791: --Call function that returns the shipment price
2792: --converted to the correct UOM.
2793: po_uom_s.po_uom_conversion(
2794: l_ship_unit_of_measure(shipment_line),
2795: l_req_unit_of_measure(req_line),
2796: l_item_id(shipment_line),
2797: l_shipment_to_req_rate);