DBA Data[Home] [Help]

APPS.PO_RELGEN_PKG dependencies on PO_UOM_S

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

985: -- bug2763177
986: -- should not comment out derivation of x_conversion_rate as it is
987: -- used for quantity conversion
988:
989: x_conversion_rate := po_uom_s.po_uom_convert(req_line.req_uom,
990: req_line.po_uom,
991: req_line.item_id);
992:
993: /* Bug 2758378 - The parameters for uom_convert was in the wrong order

Line 998: po_uom_s.uom_convert(req_line.quantity,

994: which resulted in Create Releases program to complete with error
995: exiting with status 1. Interchanged the req_line.item_id and the
996: req_line.po_uom parameters */
997:
998: po_uom_s.uom_convert(req_line.quantity,
999: req_line.req_uom,
1000: req_line.item_id,
1001: req_line.po_uom,
1002: l_quantity);

Line 1013: PO_UOM_S.get_secondary_uom( req_line.item_id,

1009: x_secondary_unit_of_measure := req_line.secondary_unit_of_measure;
1010: x_secondary_quantity := req_line.secondary_quantity;
1011:
1012: IF x_secondary_quantity is NULL and req_line.item_id is NOT NULL THEN
1013: PO_UOM_S.get_secondary_uom( req_line.item_id,
1014: req_line.destination_organization_id,
1015: x_secondary_uom_code,
1016: x_secondary_unit_of_measure);
1017:

Line 1019: po_uom_s.uom_convert(req_line.quantity,

1015: x_secondary_uom_code,
1016: x_secondary_unit_of_measure);
1017:
1018: IF x_secondary_unit_of_measure is NOT NULL THEN
1019: po_uom_s.uom_convert(req_line.quantity,
1020: req_line.req_uom,
1021: req_line.item_id,
1022: x_secondary_unit_of_measure,
1023: x_secondary_quantity);

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

1380: in autocreate. Thus the value being returned by the function
1381: call was rounded off to 5 digits after decimal to prevent
1382: such high prcision to be generated.
1383: */
1384: x_conversion_rate := round(po_uom_s.po_uom_convert(req_line.req_uom,
1385: req_line.po_uom,
1386: req_line.item_id),5);
1387: END IF;
1388:

Line 2652: po_uom_s.po_uom_conversion(

2648: */
2649:
2650: --Call function that returns the shipment price
2651: --converted to the correct UOM.
2652: po_uom_s.po_uom_conversion(
2653: l_ship_unit_of_measure(shipment_line),
2654: l_req_unit_of_measure(req_line),
2655: l_item_id(shipment_line),
2656: l_shipment_to_req_rate);

Line 2768: po_uom_s.po_uom_conversion(

2764: */
2765:
2766: --Call function that returns the shipment price
2767: --converted to the correct UOM.
2768: po_uom_s.po_uom_conversion(
2769: l_ship_unit_of_measure(shipment_line),
2770: l_req_unit_of_measure(req_line),
2771: l_item_id(shipment_line),
2772: l_shipment_to_req_rate);