Search Results subinventory_type
Overview
APPS.MTL_SUB_AST_VAL_V is a reporting and integration view in Oracle E-Business Suite (available in 12.1.1 and 12.2.2) that exposes a filtered subset of subinventory definitions. Despite its name, which might suggest an asset valuation view, the object surfaces attribute and account information for asset subinventories as maintained in Oracle Inventory (INV). It is most commonly consulted by users searching for the subinventory_type qualifier, since the view's defining predicate restricts rows based on that very column. Reporting tools, interfaces, and custom code can query this view rather than the base table to obtain only asset-tracked, active subinventories without re-implementing the filtering logic.
Underlying Base Objects
The view is defined over a single documented base object: MTL_SECONDARY_INVENTORIES, appearing as an APPS synonym. All columns projected by MTL_SUB_AST_VAL_V are drawn directly from that table; the view applies no joins and performs no aggregation. The WHERE clause imposes three conditions: the disable date must be null or in the future (NVL(DISABLE_DATE, SYSDATE+1) > SYSDATE), the subinventory must be asset-tracked (ASSET_INVENTORY = 1), and the subinventory type must be 1 or null (SUBINVENTORY_TYPE = 1 OR SUBINVENTORY_TYPE IS NULL). Because the view is a filtered projection, its row set is always a proper, current subset of the base table, and any DML performed against the base table is immediately reflected when the view is queried.
Key Columns
The projected columns mirror the persisted subinventory attributes in the base table. Notable ones include:
- SECONDARY_INVENTORY_NAME and ORGANIZATION_ID — together they uniquely identify a subinventory within an inventory organization.
- DESCRIPTION — the user-entered description of the subinventory.
- ASSET_INVENTORY — indicates that material stored in the subinventory is asset-tracked; the view enforces a value of 1.
- SUBINVENTORY_TYPE — the discriminator filtered by the view (1 or null); this is the column referenced by the search term
subinventory_type. - QUANTITY_TRACKED — whether on-hand quantities are tracked for the subinventory.
- LOCATOR_TYPE, PICKING_ORDER, INVENTORY_ATP_CODE, AVAILABILITY_TYPE, RESERVABLE_TYPE — control stock locator rules, pick sequencing, ATP availability, and reservation behavior.
- SUBINVENTORY_USAGE — designates usage such as storage versus receiving.
- MATERIAL_ACCOUNT, MATERIAL_OVERHEAD_ACCOUNT, RESOURCE_ACCOUNT, OVERHEAD_ACCOUNT, OUTSIDE_PROCESSING_ACCOUNT, EXPENSE_ACCOUNT, ENCUMBRANCE_ACCOUNT — the accounting flexfield segments used for inventory and manufacturing transactions, including encumbrance accounting.
- SOURCE_TYPE, SOURCE_SUBINVENTORY, SOURCE_ORGANIZATION_ID — define the default source for replenishment or supply.
- REQUISITION_APPROVAL_TYPE, PROJECT_ID, TASK_ID — control requisition approval behavior and project/task references for project-related transactions.
Common Use Cases and Queries
Typical usage includes validating that only active, asset-tracked subinventories are returned to downstream reporting, generating lists of valid subinventories for inventory transaction interfaces, and resolving account defaults for integration routines.
SELECT ORGANIZATION_ID,
SECONDARY_INVENTORY_NAME,
DESCRIPTION,
SUBINVENTORY_TYPE,
MATERIAL_ACCOUNT,
EXPENSE_ACCOUNT
FROM APPS.MTL_SUB_AST_VAL_V
WHERE ORGANIZATION_ID = :p_org_id
ORDER BY SECONDARY_INVENTORY_NAME;
Because the view itself filters on ASSET_INVENTORY = 1 and SUBINVENTORY_TYPE = 1 OR SUBINVENTORY_TYPE IS NULL, callers do not need to restate those conditions. Any additional filtering should be limited to organization, locator, or accounting criteria. Where the underlying metadata does not guarantee it, developers should still confirm expected values of SUBINVENTORY_TYPE from the base table before relying on the view for validation logic.
-
VIEW: APPS.MTL_SUB_AST_VAL_V
12.1.1
-
VIEW: APPS.MTL_SUB_AST_VAL_V
12.2.2
-
VIEW: APPS.MTL_SUB_EXP_TRK_VAL_V
12.1.1
-
VIEW: APPS.CST_XLA_INV_SEC_INVS_REF_V
12.2.2
-
VIEW: APPS.CST_XLA_INV_SEC_INVS_REF_V
12.1.1
-
View: GMF_XLA_SUBINV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_SUBINV_V, object_name:GMF_XLA_SUBINV_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View for SLA ADR sources from Subinventory definition , implementation_dba_data: APPS.GMF_XLA_SUBINV_V ,
-
VIEW: APPS.GMF_XLA_SUBINV_V
12.2.2
-
VIEW: APPS.GMF_XLA_SUBINV_V
12.1.1
-
VIEW: APPS.MTL_SUBINVENTORIES_VAL_V
12.1.1
-
VIEW: APPS.MTL_SUB_TRK_ALL_V
12.2.2
-
VIEW: APPS.MTL_SUBINVENTORIES_VAL_V
12.2.2
-
View: CST_XLA_INV_SEC_INVS_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_SEC_INVS_REF_V, object_name:CST_XLA_INV_SEC_INVS_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_SEC_INVS_REF_V ,
-
VIEW: APPS.MTL_SUB_EXP_TRK_VAL_V
12.2.2
-
VIEW: APPS.MTL_SUB_TRK_ALL_V
12.1.1
-
VIEW: APPS.MTL_SUB_EXP_VAL_V
12.1.1
-
VIEW: APPS.MTL_SUB_EXP_VAL_V
12.2.2
-
View: CST_XLA_INV_SEC_INVS_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_SEC_INVS_REF_V, object_name:CST_XLA_INV_SEC_INVS_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_SEC_INVS_REF_V ,
-
View: GMF_XLA_SUBINV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_SUBINV_V, object_name:GMF_XLA_SUBINV_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View for SLA ADR sources from Subinventory definition , implementation_dba_data: APPS.GMF_XLA_SUBINV_V ,
-
VIEW: APPS.MTL_SUBINVENTORIES_ALL_V
12.1.1
-
VIEW: APPS.MTL_SUBINVENTORIES_ALL_V
12.2.2
-
View: MTL_SUB_TRK_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUB_TRK_ALL_V, object_name:MTL_SUB_TRK_ALL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUB_TRK_ALL_V ,
-
VIEW: APPS.WMS_ZONE_LOCATORS_TEMP
12.1.1
-
VIEW: APPS.WMS_ZONE_LOCATORS_TEMP
12.2.2
-
View: WMS_ZONE_LOCATORS_TEMP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ZONE_LOCATORS_TEMP, object_name:WMS_ZONE_LOCATORS_TEMP, status:VALID, product: WMS - Warehouse Management , description: View built on temporary table wms_zone_locators_gtmp , implementation_dba_data: APPS.WMS_ZONE_LOCATORS_TEMP ,
-
View: WMS_ZONE_LOCATORS_TEMP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ZONE_LOCATORS_TEMP, object_name:WMS_ZONE_LOCATORS_TEMP, status:VALID, product: WMS - Warehouse Management , description: View built on temporary table wms_zone_locators_gtmp , implementation_dba_data: APPS.WMS_ZONE_LOCATORS_TEMP ,
-
View: MTL_SUB_EXP_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUB_EXP_VAL_V, object_name:MTL_SUB_EXP_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUB_EXP_VAL_V ,
-
View: MTL_SUB_TRK_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUB_TRK_ALL_V, object_name:MTL_SUB_TRK_ALL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUB_TRK_ALL_V ,
-
View: MTL_SUB_AST_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUB_AST_VAL_V, object_name:MTL_SUB_AST_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUB_AST_VAL_V ,
-
View: MTL_SUB_EXP_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUB_EXP_VAL_V, object_name:MTL_SUB_EXP_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUB_EXP_VAL_V ,
-
View: MTL_SUB_EXP_TRK_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUB_EXP_TRK_VAL_V, object_name:MTL_SUB_EXP_TRK_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUB_EXP_TRK_VAL_V ,
-
View: MTL_SUB_AST_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUB_AST_VAL_V, object_name:MTL_SUB_AST_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUB_AST_VAL_V ,
-
View: MTL_SUB_EXP_TRK_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUB_EXP_TRK_VAL_V, object_name:MTL_SUB_EXP_TRK_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUB_EXP_TRK_VAL_V ,
-
VIEW: INV.MTL_SECONDARY_INVENTORIES#
12.2.2
-
View: MTL_SUBINVENTORIES_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUBINVENTORIES_VAL_V, object_name:MTL_SUBINVENTORIES_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUBINVENTORIES_VAL_V ,
-
View: MTL_SUBINVENTORIES_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUBINVENTORIES_VAL_V, object_name:MTL_SUBINVENTORIES_VAL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUBINVENTORIES_VAL_V ,
-
VIEW: APPS.CST_XLA_INV_SEC_INVS_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_SEC_INVS_REF_V, object_name:CST_XLA_INV_SEC_INVS_REF_V, status:VALID,
-
VIEW: APPS.CST_XLA_INV_SEC_INVS_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_SEC_INVS_REF_V, object_name:CST_XLA_INV_SEC_INVS_REF_V, status:VALID,
-
VIEW: APPS.GMF_XLA_SUBINV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_SUBINV_V, object_name:GMF_XLA_SUBINV_V, status:VALID,
-
View: MTL_SUBINVENTORIES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUBINVENTORIES_ALL_V, object_name:MTL_SUBINVENTORIES_ALL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUBINVENTORIES_ALL_V ,
-
View: MTL_SUBINVENTORIES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SUBINVENTORIES_ALL_V, object_name:MTL_SUBINVENTORIES_ALL_V, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.MTL_SUBINVENTORIES_ALL_V ,
-
TABLE: WMS.WMS_ZONE_LOCATORS_GTMP
12.2.2
owner:WMS, object_type:TABLE, object_name:WMS_ZONE_LOCATORS_GTMP, status:VALID,
-
TABLE: WMS.WMS_ZONE_LOCATORS_GTMP
12.1.1
owner:WMS, object_type:TABLE, object_name:WMS_ZONE_LOCATORS_GTMP, status:VALID,
-
VIEW: APPS.WMS_ZONE_LOCATORS_TEMP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ZONE_LOCATORS_TEMP, object_name:WMS_ZONE_LOCATORS_TEMP, status:VALID,
-
VIEW: APPS.GMF_XLA_SUBINV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_SUBINV_V, object_name:GMF_XLA_SUBINV_V, status:VALID,
-
VIEW: APPS.WMS_ZONE_LOCATORS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ZONE_LOCATORS_V, object_name:WMS_ZONE_LOCATORS_V, status:VALID,
-
VIEW: APPS.WMS_ZONE_LOCATORS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ZONE_LOCATORS_V, object_name:WMS_ZONE_LOCATORS_V, status:VALID,
-
VIEW: APPS.WMS_ZONE_LOCATORS_TEMP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ZONE_LOCATORS_TEMP, object_name:WMS_ZONE_LOCATORS_TEMP, status:VALID,
-
VIEW: INV.MTL_SECONDARY_INVENTORIES#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_SECONDARY_INVENTORIES#, status:VALID,
-
View: WMS_ZONE_LOCATORS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ZONE_LOCATORS_V, object_name:WMS_ZONE_LOCATORS_V, status:VALID, product: WMS - Warehouse Management , description: Built on WMS_ZONE_LOCATORS , implementation_dba_data: APPS.WMS_ZONE_LOCATORS_V ,
-
View: WMS_ZONE_LOCATORS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_ZONE_LOCATORS_V, object_name:WMS_ZONE_LOCATORS_V, status:VALID, product: WMS - Warehouse Management , description: Built on WMS_ZONE_LOCATORS , implementation_dba_data: APPS.WMS_ZONE_LOCATORS_V ,