Search Results base_uom_flag
Overview
CST_XLA_INV_UOM_REF_V is a lightweight reference view owned by the APPS schema in Oracle E-Business Suite. It is part of the Subledger Accounting (XLA) and Cost Management (CST) infrastructure that supports the generation of accounting entries for inventory transactions. Its purpose is to expose a minimal, denormalized projection of the units-of-measure definitions used when inventory quantities are converted and reported in the accounting engine.
The view is named with the CST_XLA prefix, indicating that it is consumed by the XLA (Subledger Accounting) engine during inventory valuation and cost processing. Rather than presenting the entire unit-of-measure configuration, it surfaces only three attributes required for accounting line construction and reporting: the unit-of-measure code, the base-unit indicator, and the descriptive unit-of-measure name. Because it is a view and not a table, it introduces no independent storage and is always consistent with the current state of its underlying source.
The view is available in both EBS 12.1.1 and 12.2.2. The metadata documented under ETRM 12.2.2 lists a single referenced base object, MTL_UNITS_OF_MEASURE, accessed through a synonym.
Underlying Base Objects
The view is defined over one base object:
- MTL_UNITS_OF_MEASURE — the master units-of-measure definition table in the Oracle Inventory (INV) module. In the APPS schema this is referenced via a synonym.
The documented view text is a direct three-column projection from that table, with no joins, filters, or aggregations:
- UOM_CODE from UOM_CODE
- BASE_UOM_FLAG from BASE_UOM_FLAG
- UNIT_OF_MEASURE_TL from UNIT_OF_MEASURE_TL
Because there are no join conditions, each row of the view corresponds one-to-one with a row in MTL_UNITS_OF_MEASURE. The view behaves as a simple column-restricted synonym, providing a stable, narrowly scoped interface for concurrent programs and XLA extraction logic that would otherwise query the full inventory table.
Key Columns
- UOM_CODE — the unique alphanumeric code identifying a unit of measure (for example, Ea, KG, CTN). This is the primary key of the underlying table and the value stored on inventory and accounting transaction lines.
- BASE_UOM_FLAG — indicates whether the unit of measure is the base unit within its class. This is relevant when the accounting engine performs conversions or distinguishes the primary unit from secondary units.
- UNIT_OF_MEASURE_TL — the translatable description or name of the unit of measure. The "_TL" suffix denotes that the underlying table stores language-specific translations, so the returned value reflects the session language. This column is the one most commonly referenced in ad hoc searches for "unit_of_measure_tl."
Common Use Cases and Queries
Typical use cases include confirming which unit-of-measure descriptions are available to the Subledger Accounting engine, validating the base-unit flag when investigating inventory valuation discrepancies, and joining the view to XLA or inventory transaction tables to obtain readable UOM text in custom reports.
A basic retrieval of all units of measure:
- SELECT uom_code, base_uom_flag, unit_of_measure_tl FROM apps.cst_xla_inv_uom_ref_v ORDER BY uom_code;
Filtering to the base unit of measure:
- SELECT uom_code, unit_of_measure_tl FROM apps.cst_xla_inv_uom_ref_v WHERE base_uom_flag = 'Y';
Joining to inventory transactions to attach descriptive UOM text:
- SELECT t.transaction_id, t.inventory_item_id, t.transaction_quantity, u.unit_of_measure_tl FROM mtl_material_transactions t, apps.cst_xla_inv_uom_ref_v u WHERE t.transaction_uom = u.uom_code;
Because the view exposes only three columns, queries should join it to the primary transaction tables rather than treating it as a general-purpose inventory source.
-
VIEW: APPS.CST_XLA_INV_UOM_REF_V
12.2.2
-
View: CST_XLA_INV_UOM_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_UOM_REF_V, object_name:CST_XLA_INV_UOM_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_UOM_REF_V ,
-
VIEW: APPS.CST_XLA_INV_UOM_REF_V
12.1.1
-
VIEW: APPS.MSD_UOM_CONVERSIONS_LB_V
12.1.1
-
VIEW: MSC.MSC_UNITS_OF_MEASURE#
12.2.2
-
VIEW: QPR.QPR_UOM_CONVERSIONS#
12.2.2
-
View: CST_XLA_INV_UOM_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_UOM_REF_V, object_name:CST_XLA_INV_UOM_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_UOM_REF_V ,
-
VIEW: MSD.MSD_UOM_CONVERSIONS#
12.2.2
-
VIEW: MSD.MSD_ST_UOM_CONVERSIONS#
12.2.2
-
VIEW: APPS.EGO_GTIN_UCCNET_HIER_ATTRS_V
12.2.2
-
VIEW: MSC.MSC_ST_UNITS_OF_MEASURE#
12.2.2
-
VIEW: APPS.QPR_SR_UOM_CONVERSIONS_V
12.1.1
-
VIEW: APPS.QPR_SR_UOM_CONVERSIONS_V
12.2.2
-
View: PO_UNITS_OF_MEASURE_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_UNITS_OF_MEASURE_VAL_V, object_name:PO_UNITS_OF_MEASURE_VAL_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_UNITS_OF_MEASURE_VAL_V ,
-
VIEW: APPS.MSD_UOM_CONVERSIONS_LB_V
12.2.2
-
VIEW: INV.MTL_UNITS_OF_MEASURE_TL#
12.2.2
-
VIEW: APPS.EGO_GTIN_ATTRS_V
12.2.2
-
VIEW: APPS.MSD_SR_UOM_CONVERSIONS_V
12.1.1
-
VIEW: APPS.EGO_GTIN_ATTRS_V
12.1.1
-
VIEW: APPS.EGO_GTIN_UCCNET_HIER_ATTRS_V
12.1.1
-
VIEW: APPS.MTL_UNITS_OF_MEASURE_AV
12.2.2
-
View: EGO_GTIN_UCCNET_HIER_ATTRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GTIN_UCCNET_HIER_ATTRS_V, object_name:EGO_GTIN_UCCNET_HIER_ATTRS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains GTINs and all GDSN attributes (Single-row only). This view is used to send CIN messages. , implementation_dba_data: APPS.EGO_GTIN_UCCNET_HIER_ATTRS_V ,
-
View: MTL_UNITS_OF_MEASURE_AV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_AV, object_name:MTL_UNITS_OF_MEASURE_AV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_AV ,
-
View: PO_UNITS_OF_MEASURE_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_UNITS_OF_MEASURE_VAL_V, object_name:PO_UNITS_OF_MEASURE_VAL_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_UNITS_OF_MEASURE_VAL_V ,
-
VIEW: APPS.PO_UNITS_OF_MEASURE_VAL_V
12.1.1
-
VIEW: APPS.PO_UNITS_OF_MEASURE_VAL_V
12.2.2
-
View: OKX_TUOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_TUOM_V, object_name:OKX_TUOM_V, status:VALID, product: OKX - Contracts Integration , description: View on mtl_units_of_measure tl . Will be usedto fetch time units of measure. , implementation_dba_data: APPS.OKX_TUOM_V ,
-
View: MTL_UNITS_OF_MEASURE_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_VL, object_name:MTL_UNITS_OF_MEASURE_VL, status:VALID, product: INV - Inventory , description: MTL_UNITS_OF_MEASURE_VL is a view of selected columns from the table MTL_UNITS_OF_MEASURE_TL. , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_VL ,
-
View: EGO_GTIN_ATTRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GTIN_ATTRS_V, object_name:EGO_GTIN_ATTRS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains GTINs and all GDSN attributes (Single-row only). This view is used to send RCIR messages. , implementation_dba_data: APPS.EGO_GTIN_ATTRS_V ,
-
VIEW: APPS.FEM_UNITS_OF_MEASURE_VL
12.1.1
-
VIEW: APPS.MSD_SR_UOM_CONVERSIONS_V
12.2.2
-
View: EGO_GTIN_ATTRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GTIN_ATTRS_V, object_name:EGO_GTIN_ATTRS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains GTINs and all GDSN attributes (Single-row only). This view is used to send RCIR messages. , implementation_dba_data: APPS.EGO_GTIN_ATTRS_V ,
-
VIEW: APPS.OKX_TUOM_V
12.2.2
-
VIEW: APPS.JTM_MTL_UNITS_OF_MEASURE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:JTM_MTL_UNITS_OF_MEASURE_V, status:VALID,
-
View: MSD_SR_UOM_CONVERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_UOM_CONVERSIONS_V, object_name:MSD_SR_UOM_CONVERSIONS_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View for UOM Conversions. This view would be applied to an Oracle Applications 11i instance from which the UOM Conversion information is to be retrieved. , implementation_dba_data: APPS.MSD_SR_UOM_CONVERSIONS_V ,
-
View: MTL_UNITS_OF_MEASURE_AV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_AV, object_name:MTL_UNITS_OF_MEASURE_AV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_AV ,
-
VIEW: APPS.MTL_UNITS_OF_MEASURE_AV
12.1.1
-
VIEW: APPS.QPR_SR_UOM_CONVERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:QPR_SR_UOM_CONVERSIONS_V, status:VALID,
-
View: MSD_SR_UOM_CONVERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_UOM_CONVERSIONS_V, object_name:MSD_SR_UOM_CONVERSIONS_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View for UOM Conversions. This view would be applied to an Oracle Applications 11i instance from which the UOM Conversion information is to be retrieved. , implementation_dba_data: APPS.MSD_SR_UOM_CONVERSIONS_V ,
-
View: MTL_UNITS_OF_MEASURE_VV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_VV, object_name:MTL_UNITS_OF_MEASURE_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_VV ,
-
View: BIL_DIMV_UOM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIL.BIL_DIMV_UOM, object_name:BIL_DIMV_UOM, status:VALID, product: BIL - Sales Intelligence , description: Units of measure view , implementation_dba_data: APPS.BIL_DIMV_UOM ,
-
View: MTL_UNITS_OF_MEASURE_VV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UNITS_OF_MEASURE_VV, object_name:MTL_UNITS_OF_MEASURE_VV, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_UNITS_OF_MEASURE_VV ,
-
View: EGO_GTIN_UCCNET_HIER_ATTRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_GTIN_UCCNET_HIER_ATTRS_V, object_name:EGO_GTIN_UCCNET_HIER_ATTRS_V, status:VALID, product: EGO - Advanced Product Catalog , description: This view contains GTINs and all GDSN attributes (Single-row only). This view is used to send CIN messages. , implementation_dba_data: APPS.EGO_GTIN_UCCNET_HIER_ATTRS_V ,
-
View: BIL_DIMV_UOM
12.2.2
product: BIL - Sales Intelligence (Obsolete) , description: Units of measure view , implementation_dba_data: Not implemented in this database ,
-
VIEW: QPR.QPR_UOM_CONVERSIONS#
12.2.2
owner:QPR, object_type:VIEW, object_name:QPR_UOM_CONVERSIONS#, status:VALID,
-
VIEW: APPS.MTL_UNITS_OF_MEASURE_VL
12.2.2
-
VIEW: APPS.MTL_UNITS_OF_MEASURE_VV
12.1.1
-
VIEW: APPS.MTL_UNITS_OF_MEASURE_VL
12.1.1
-
VIEW: APPS.MTL_UNITS_OF_MEASURE_VV
12.2.2
-
View: OKX_TUOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_TUOM_V, object_name:OKX_TUOM_V, status:VALID, product: OKX - Contracts Integration , description: View on mtl_units_of_measure tl . Will be usedto fetch time units of measure. , implementation_dba_data: APPS.OKX_TUOM_V ,