DBA Data[Home] [Help]

APPS.PO_UOM_S dependencies on PO_UOM_S

Line 1: PACKAGE BODY PO_UOM_S as

1: PACKAGE BODY PO_UOM_S as
2: /* $Header: RCVTXU1B.pls 120.3.12010000.2 2008/08/04 08:43:30 rramasam ship $*/
3:
4: --
5: g_chktype_TRACKING_QTY_IND_S CONSTANT

Line 9: /*============================== PO_UOM_S ================================*/

5: g_chktype_TRACKING_QTY_IND_S CONSTANT
6: MTL_SYSTEM_ITEMS_B.TRACKING_QUANTITY_IND%TYPE
7: := 'PS';
8:
9: /*============================== PO_UOM_S ================================*/
10:
11: --BUG 5080295: unit_of_measure is a VARCHAR2(25). so we need size
12: --25+25+2+38 = 90
13: TYPE uom_conversion_table_type IS TABLE OF NUMBER INDEX BY VARCHAR2(90);

Line 468: po_uom_s.po_uom_conversion(from_unit, to_unit, item_id, uom_rate);

464: ** different.
465: */
466:
467: IF from_unit <> to_unit THEN
468: po_uom_s.po_uom_conversion(from_unit, to_unit, item_id, uom_rate);
469: ELSE
470: uom_rate := 1;
471: END IF;
472:

Line 837: uom := po_uom_s.get_secondary_uom ( item_id number, org_id number,

833: This function returns the primary UOM based on item_id/organization
834: for both pre-defined and one-time items
835:
836: USAGE:
837: uom := po_uom_s.get_secondary_uom ( item_id number, org_id number,
838: current_sec_unit_of_measure varchar2 )
839:
840: PARAMETERS:
841: item_id IN number - item id (null for one time items)

Line 914: uom := po_uom_s.get_unit_of_measure(

910: DESCRIPTION:
911: This function returns the unit of measure for the passed uom code
912:
913: USAGE:
914: uom := po_uom_s.get_unit_of_measure(
915: p_uom_code in varchar2,
916: x_unit_of_measure out NOCOPY varchar2);
917:
918: PARAMETERS:

Line 965: END PO_UOM_S;

961: po_message_s.sql_error('get_secondary_uom', x_progress, sqlcode);
962: RAISE;
963: END;
964:
965: END PO_UOM_S;