Search Results mtl_secondary_inventories_fk_v
Overview
The view APPS.MTL_SECONDARY_INVENTORIES_FK_V is an Inventory (INV) module database object that presents subinventory master data together with resolved foreign key descriptions. Its ETRM description is recorded simply as "Retrofitted," reflecting that the object was regenerated or ported forward as part of the EBS code-line evolution rather than introduced as new functionality. The view is documented as VALID in both Oracle EBS 12.1.1 and 12.2.2 and is owned by the APPS schema.
Functionally, the view exposes the full column set of MTL_SECONDARY_INVENTORIES — the base table that stores subinventory definitions for every inventory organization — while denormalizing several related attributes into human-readable codes. In this respect it behaves as an "FK view": a reporting and integration convenience layer that spares the developer from joining multiple lookup tables. It is commonly consumed by forms, concurrent programs, OAF pages, and custom reports that must display or validate subinventory attributes, including the DEFAULT_LOC_STATUS_ID searched by the user, which is resolved here to its material status code.
Underlying Base Objects
The ETRM metadata documents the following referenced objects:
MTL_SECONDARY_INVENTORIES— the primary base table (alias A), supplying all subinventory attributes.MTL_MATERIAL_STATUSES_TL— joined to resolveSTATUS_IDandDEFAULT_LOC_STATUS_IDinto status codes (aliases M and N).CST_COST_GROUPS— supplies the default cost group name.HR_LOCATIONS_ALL— resolvesLOCATION_IDto a location code.ENG_ECN_APPROVAL_LISTS— resolves the notify list to an approval list name.MTL_CYCLE_COUNT_HEADERS— used in a scalar subquery for the cycle count header name.MTL_PARAMETERS— organization-level inventory parameters.HR_GENERAL— an HR package referenced by the view definition.
These objects are accessed through APPS synonyms, and the view itself sits on the MTL_SECONDARY_INVENTORIES synonym, inheriting the security and synonym conventions of the APPS schema.
Key Columns
SECONDARY_INVENTORY_NAME,ORGANIZATION_ID— the natural and surrogate keys of a subinventory.STATUS_ID,STATUS_CODE— the subinventory-level material status.DEFAULT_LOC_STATUS_ID,DEFAULT_LOC_STATUS_CODE— the default locator-level material status, resolved to its descriptive code; this is the column the user searched for.LOCATION_ID,LOCATION_CODE— the physical location associated with the subinventory.DEFAULT_COST_GROUP_ID,DEFAULT_COST_GROUP_NAME— default costing group assigned to the subinventory.NOTIFY_LIST_ID,NOTIFY_LIST— the ECN approval list used for notifications.LOCATOR_TYPE,PICK_METHODOLOGY,PICK_UOM_CODE,MATERIAL_ACCOUNT, and the manyATTRIBUTE1..15flex columns — operational and accounting attributes.
Common Use Cases and Queries
Typical uses include validating subinventory attributes in forms and concurrent programs, driving inventory reports, and supporting integrations that need readable codes rather than numeric IDs. The DEFAULT_LOC_STATUS_CODE column in particular is used when determining the default material status applied to locators created within a subinventory.
A representative query retrieving subinventory status information:
SELECT organization_id, secondary_inventory_name, status_code, default_loc_status_id, default_loc_status_code, default_cost_group_name FROM mtl_secondary_inventories_fk_v WHERE organization_id = :p_org_id ORDER BY secondary_inventory_name;- Filtering by resolved status:
SELECT secondary_inventory_name FROM mtl_secondary_inventories_fk_v WHERE default_loc_status_code = 'Active'; - Locator default status lookups for a specific subinventory:
SELECT secondary_inventory_name, default_loc_status_id, default_loc_status_code FROM mtl_secondary_inventories_fk_v WHERE organization_id = :p_org_id AND secondary_inventory_name = :p_subinventory;
Because the view performs NVL substitutions and inline subqueries, it is best suited to moderate-volume reporting and validation rather than high-throughput batch processing, where direct joins against base tables may be preferable.
-
View: MTL_SECONDARY_INVENTORIES_FK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SECONDARY_INVENTORIES_FK_V, object_name:MTL_SECONDARY_INVENTORIES_FK_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SECONDARY_INVENTORIES_FK_V ,
-
View: MTL_SECONDARY_INVENTORIES_FK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SECONDARY_INVENTORIES_FK_V, object_name:MTL_SECONDARY_INVENTORIES_FK_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SECONDARY_INVENTORIES_FK_V ,
-
SYNONYM: APPS.MTL_MATERIAL_STATUSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_MATERIAL_STATUSES_TL, status:VALID,
-
SYNONYM: APPS.ENG_ECN_APPROVAL_LISTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ENG_ECN_APPROVAL_LISTS, status:VALID,
-
SYNONYM: APPS.ENG_ECN_APPROVAL_LISTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ENG_ECN_APPROVAL_LISTS, status:VALID,
-
SYNONYM: APPS.MTL_MATERIAL_STATUSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_MATERIAL_STATUSES_TL, status:VALID,
-
APPS.INVTROAP SQL Statements
12.1.1
-
APPS.INVTROAP SQL Statements
12.2.2
-
PACKAGE BODY: APPS.INVTROAP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INVTROAP, status:VALID,
-
PACKAGE BODY: APPS.INVTROAP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INVTROAP, status:VALID,
-
PACKAGE BODY: APPS.OM_SETUP_VALID_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OM_SETUP_VALID_PKG, status:VALID,
-
PACKAGE BODY: APPS.OM_SETUP_VALID_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OM_SETUP_VALID_PKG, status:VALID,
-
SYNONYM: APPS.MTL_CYCLE_COUNT_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CYCLE_COUNT_HEADERS, status:VALID,
-
SYNONYM: APPS.CST_COST_GROUPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CST_COST_GROUPS, status:VALID,
-
VIEW: APPS.MTL_SECONDARY_INVENTORIES_FK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SECONDARY_INVENTORIES_FK_V, object_name:MTL_SECONDARY_INVENTORIES_FK_V, status:VALID,
-
VIEW: APPS.MTL_SECONDARY_INVENTORIES_FK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SECONDARY_INVENTORIES_FK_V, object_name:MTL_SECONDARY_INVENTORIES_FK_V, status:VALID,
-
SYNONYM: APPS.CST_COST_GROUPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CST_COST_GROUPS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.INVTROAP dependencies on MTL_SECONDARY_INVENTORIES_FK_V
12.2.2
-
APPS.INVTROAP dependencies on MTL_SECONDARY_INVENTORIES_FK_V
12.1.1
-
APPS.OM_SETUP_VALID_PKG dependencies on MTL_SECONDARY_INVENTORIES_FK_V
12.2.2
-
APPS.OM_SETUP_VALID_PKG dependencies on MTL_SECONDARY_INVENTORIES_FK_V
12.1.1
-
SYNONYM: APPS.MTL_SECONDARY_INVENTORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SECONDARY_INVENTORIES, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
SYNONYM: APPS.MTL_SECONDARY_INVENTORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SECONDARY_INVENTORIES, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
PACKAGE BODY: APPS.INVTROAP
12.2.2
-
PACKAGE BODY: APPS.INVTROAP
12.1.1
-
APPS.OM_SETUP_VALID_PKG SQL Statements
12.2.2
-
APPS.OM_SETUP_VALID_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE BODY: APPS.OM_SETUP_VALID_PKG
12.1.1
-
PACKAGE BODY: APPS.OM_SETUP_VALID_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2