Search Results padded_item_number
Overview
The view MTL_ITEM_FLEXFIELDS_OLD is an Inventory (INV) module database object that exposes a simplified, reporting-oriented projection of item master data. Its stated purpose within the ETRM documentation is to provide "concatenated item segments" alongside the INVENTORY_ITEM_ID. In practice, the view selects a small subset of the far larger column set held by the item master base table, presenting the item identifier, its description, its primary unit of measure, and two representations of the item number.
It is important to note a critical documented fact: this view is not implemented in the database as recorded in the ETRM metadata. Its inclusion in documentation is largely historical and referential. Reports or integrations that reference MTL_ITEM_FLEXFIELDS_OLD will fail against a standard Oracle EBS 12.1.1 or 12.2.2 installation unless the object has been manually created in the customer's schema. The name suffix "_OLD" further signals that it is a legacy or superseded construct, likely retained in documentation for backward-traceability rather than active runtime use.
Underlying Base Objects
The ETRM metadata documents no referenced base objects, but the view text makes the dependency explicit. The view is defined over a single base table:
- MTL_SYSTEM_ITEMS_B — the core item master base table, holding organization-specific item definitions.
The view performs a column alias mapping rather than a join or aggregation. Specifically, it renames SEGMENT1 twice: once as ITEM_NUMBER and once as PADDED_ITEM_NUMBER. It also renames INVENTORY_ITEM_ID to ITEM_ID. Because no joins are present, the view returns one row per item per organization, consistent with the base table's granularity. There is no filter predicate in the documented view text, meaning it exposes all organization rows visible through the base table; organization-level security must be applied by the calling query or by Oracle's Multi-Org views layered above it.
Key Columns
- ORGANIZATION_ID — the inventory organization to which the item row belongs.
- ITEM_ID — aliased from
INVENTORY_ITEM_ID; the unique surrogate identifier for the item within the organization. This is the column most integration logic keys on. - DESCRIPTION — the item's descriptive text from the item master.
- PRIMARY_UOM_CODE — the primary stocking unit of measure for the item.
- ITEM_NUMBER — aliased from
SEGMENT1; the concatenated item number as stored in the first (and, in single-segment configurations, the only) key flexfield segment. - PADDED_ITEM_NUMBER — also aliased from
SEGMENT1. Notably, in this documented view text the "padded" column is not actually padded; it is a direct duplicate ofITEM_NUMBER. A user searching for "padded_item_number" should understand that, per the ETRM view text, no padding transformation is applied. Genuine padded or zero-filled item numbers typically originate from a different source or a later, corrected view.
Common Use Cases and Queries
The original intent of the view was to give reporting tools a lightweight item lookup that avoided the wide column set of MTL_SYSTEM_ITEMS_B. A representative query, if the view existed, would be:
SELECT ORGANIZATION_ID, ITEM_ID, ITEM_NUMBER, PADDED_ITEM_NUMBER, DESCRIPTION, PRIMARY_UOM_CODE FROM MTL_ITEM_FLEXFIELDS_OLD WHERE ORGANIZATION_ID = :org_id;
Because the object is not implemented, the recommended practice in a live 12.1.1 or 12.2.2 environment is to query the base table directly, for example:
SELECT ORGANIZATION_ID, INVENTORY_ITEM_ID, SEGMENT1, DESCRIPTION, PRIMARY_UOM_CODE FROM MTL_SYSTEM_ITEMS_B WHERE ORGANIZATION_ID = :org_id AND SEGMENT1 = :item_number;
Typical consumers include custom item validation routines, interface staging programs where INVENTORY_ITEM_ID and SEGMENT1 must be resolved together, and legacy reports mentioning "padded" item numbers. Where zero-padding is genuinely required, it must be applied in the SQL layer, for instance via LPAD(SEGMENT1, n, '0'), since the documented view supplies no such formatting. Analysts should treat MTL_ITEM_FLEXFIELDS_OLD as a historical reference object and confirm its existence before relying on it.
-
APPS.BOM_DIAGUNITTEST_BILLHLCHK SQL Statements
12.1.1
-
View: MTL_ITEM_FLEXFIELDS_OLD
12.1.1
product: INV - Inventory , description: Contains concatenated item segments, inventory_item_id , implementation_dba_data: Not implemented in this database ,
-
View: MTL_ITEM_FLEXFIELDS_OLD
12.2.2
product: INV - Inventory , description: Contains concatenated item segments, inventory_item_id , implementation_dba_data: Not implemented in this database ,
-
APPS.BOM_DIAGUNITTEST_BILLHLCHK SQL Statements
12.2.2
-
VIEW: APPS.CST_COST_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_COST_HISTORY_V, object_name:CST_COST_HISTORY_V, status:VALID,
-
VIEW: APPS.CST_COST_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_COST_HISTORY_V, object_name:CST_COST_HISTORY_V, status:VALID,
-
View: BOM_OP_RESOURCES_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OP_RESOURCES_VIEW, object_name:BOM_OP_RESOURCES_VIEW, status:VALID, product: BOM - Bills of Material , description: Operation resources view , implementation_dba_data: APPS.BOM_OP_RESOURCES_VIEW ,
-
VIEW: APPS.BOM_OP_RESOURCES_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OP_RESOURCES_VIEW, object_name:BOM_OP_RESOURCES_VIEW, status:VALID,
-
VIEW: APPS.BOM_OP_RESOURCES_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OP_RESOURCES_VIEW, object_name:BOM_OP_RESOURCES_VIEW, status:VALID,
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_IBRDATA
12.2.2
-
View: BOM_OP_RESOURCES_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OP_RESOURCES_VIEW, object_name:BOM_OP_RESOURCES_VIEW, status:VALID, product: BOM - Bills of Material , description: Operation resources view , implementation_dba_data: APPS.BOM_OP_RESOURCES_VIEW ,
-
APPS.BOM_DIAGUNITTEST_IBRDATA SQL Statements
12.1.1
-
APPS.BOM_DIAGUNITTEST_IBRDATA SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_IBRDATA
12.1.1
-
VIEW: APPS.CST_ITEM_COST_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COST_TYPE_V, object_name:CST_ITEM_COST_TYPE_V, status:VALID,
-
VIEW: APPS.CST_ITEM_COST_TYPE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COST_TYPE_V, object_name:CST_ITEM_COST_TYPE_V, status:VALID,
-
View: CST_ITEM_COST_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COST_TYPE_V, object_name:CST_ITEM_COST_TYPE_V, status:VALID, product: BOM - Bills of Material , description: Item cost information for a cost type in an organization : SINGLE-ORG view , implementation_dba_data: APPS.CST_ITEM_COST_TYPE_V ,
-
View: CST_ITEM_COST_TYPE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COST_TYPE_V, object_name:CST_ITEM_COST_TYPE_V, status:VALID, product: BOM - Bills of Material , description: Item cost information for a cost type in an organization : SINGLE-ORG view , implementation_dba_data: APPS.CST_ITEM_COST_TYPE_V ,
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_ECODATA
12.1.1
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_ECODATA
12.2.2
-
View: CST_COST_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_COST_HISTORY_V, object_name:CST_COST_HISTORY_V, status:VALID, product: BOM - Bills of Material , description: Elemental item cost and adjustment quantity in a standard cost update : SINGLE-ORG view , implementation_dba_data: APPS.CST_COST_HISTORY_V ,
-
APPS.BOM_DIAGUNITTEST_ECODATA SQL Statements
12.1.1
-
APPS.BOM_DIAGUNITTEST_ECODATA SQL Statements
12.2.2
-
View: CST_COST_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_COST_HISTORY_V, object_name:CST_COST_HISTORY_V, status:VALID, product: BOM - Bills of Material , description: Elemental item cost and adjustment quantity in a standard cost update : SINGLE-ORG view , implementation_dba_data: APPS.CST_COST_HISTORY_V ,
-
View: BOM_EXPLOSION_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSION_VIEW, object_name:BOM_EXPLOSION_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for report , implementation_dba_data: APPS.BOM_EXPLOSION_VIEW ,
-
View: BOM_EXPLOSION_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSION_VIEW, object_name:BOM_EXPLOSION_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for report , implementation_dba_data: APPS.BOM_EXPLOSION_VIEW ,
-
VIEW: APPS.BOM_EXPLOSION_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSION_VIEW, object_name:BOM_EXPLOSION_VIEW, status:VALID,
-
VIEW: APPS.BOM_EXPLOSION_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSION_VIEW, object_name:BOM_EXPLOSION_VIEW, status:VALID,
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_BILLHLCHK
12.1.1
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_BILLHLCHK
12.2.2
-
VIEW: APPS.BOM_EXPL_INQUIRY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID,
-
VIEW: APPS.BOM_EXPL_INQUIRY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID,
-
View: BOM_EXPL_INQUIRY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for window , implementation_dba_data: APPS.BOM_EXPL_INQUIRY_VIEW ,
-
View: BOM_EXPL_INQUIRY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for window , implementation_dba_data: APPS.BOM_EXPL_INQUIRY_VIEW ,
-
APPS.BOM_DIAGUNITTEST_ITMHLCHK SQL Statements
12.1.1
-
APPS.BOM_DIAGUNITTEST_ITMHLCHK SQL Statements
12.2.2
-
View: MTL_ITEM_FLEXFIELDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_ITEM_FLEXFIELDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
VIEW: APPS.MTL_ITEM_FLEXFIELDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID,
-
VIEW: APPS.MTL_ITEM_FLEXFIELDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID,
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_ITMHLCHK
12.1.1
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_ITMHLCHK
12.2.2
-
APPS.BOM_DIAGUNITTEST_IBRDATA dependencies on JTF_DIAGNOSTIC_COREAPI
12.1.1
-
APPS.BOM_DIAGUNITTEST_IBRDATA dependencies on JTF_DIAGNOSTIC_COREAPI
12.2.2
-
APPS.BOM_DIAGUNITTEST_ITMHLCHK dependencies on MTL_PARAMETERS
12.1.1
-
APPS.BOM_DIAGUNITTEST_ITMHLCHK dependencies on MTL_PARAMETERS
12.2.2
-
APPS.BOM_DIAGUNITTEST_ECODATA dependencies on JTF_DIAGNOSTIC_COREAPI
12.2.2
-
APPS.BOM_DIAGUNITTEST_ECODATA dependencies on JTF_DIAGNOSTIC_COREAPI
12.1.1
-
APPS.BOM_DIAGUNITTEST_IBRDATA dependencies on MTL_SYSTEM_ITEMS_B
12.2.2
-
APPS.BOM_DIAGUNITTEST_IBRDATA dependencies on MTL_SYSTEM_ITEMS_B
12.1.1