Search Results as_inv_item_lov_v
Overview
AS_INV_ITEM_LOV_V is a read-only database view owned by the APPS schema within the AS (Sales Foundation) product family of Oracle E-Business Suite. In EBS 12.1.1 and 12.2.2, the view is documented as VALID and is catalogued in the ETRM repository. Its stated purpose is to provide a consolidated listing of Inventory Items together with their associated Sales category identifiers and interest type/code information.
The view functions as the data source behind list-of-values (LOV) and selection mechanisms in Sales Foundation flows, where an application user or concurrent program must resolve an inventory item to its Sales category and its primary and secondary interest codes. Because it joins the item master and item category assignments to the Sales Categories key flexfield, it presents a joined, denormalized row set rather than a single base table. This makes it suitable for reporting, validation, and integration queries that need item context without manually reconstructing the flexfield logic.
Underlying Base Objects
The view text is defined over the following objects, all referenced through public synonyms in the APPS schema:
- MTL_ITEM_CATEGORIES (MIC) — supplies the item-to-category assignment, providing INVENTORY_ITEM_ID, CATEGORY_ID, and ORGANIZATION_ID.
- MTL_CATEGORIES_B (MC) — the category definition, joined on CATEGORY_ID and on the Sales Categories structure.
- MTL_SYSTEM_ITEMS_VL (ITEMS) — the item master view, providing ITEM_CONCAT_SEGS and ITEM_DESCRIPTION.
- FND_ID_FLEX_STRUCTURES (FIFS) — identifies the 'SALES_CATEGORIES' key flexfield structure for the MCAT flex code.
- AS_INTEREST_TYPES_B (IT) — interest type definitions, matched against SEGMENT1.
- AS_INTEREST_CODES_B (IC and IC2) — primary and secondary interest codes, matched against SEGMENT2 and SEGMENT3 respectively.
The join logic fixes APPLICATION_ID to 401 and ID_FLEX_STRUCTURE_CODE to 'SALES_CATEGORIES', and restricts MIC.CATEGORY_SET_ID to 5. Interest code joins are outer joins (+), so items without a mapped interest code row are still returned.
Key Columns
- INVENTORY_ITEM_ID — the inventory item identifier from MTL_ITEM_CATEGORIES.
- CATEGORY_ID — the Sales category identifier assigned to the item.
- ORGANIZATION_ID — the inventory organization scoping the item/category assignment.
- INTEREST_TYPE_ID — the interest type id derived from SEGMENT1 of the Sales category.
- PRIMARY_INTEREST_CODE_ID — the primary interest code (SEGMENT2), nullable due to the outer join.
- SECONDARY_INTEREST_CODE_ID — the secondary interest code (SEGMENT3), also nullable.
- ITEM_CONCAT_SEGS — the concatenated flexfield segments of the item for display.
- ITEM_DESCRIPTION — the item description text.
Common Use Cases and Queries
Typical scenarios include LOV population for item selection, validating that an item belongs to the Sales Categories structure, and reporting item-to-interest-code relationships for downstream pricing or agreement logic.
Example: list items for an organization with their Sales category and interest codes:
- SELECT inventory_item_id, organization_id, category_id, interest_type_id, primary_interest_code_id, secondary_interest_code_id, item_concat_segs, item_description FROM as_inv_item_lov_v WHERE organization_id = :org_id;
Example: retrieve description and concatenated segments for a specific item:
- SELECT item_concat_segs, item_description FROM as_inv_item_lov_v WHERE inventory_item_id = :item_id AND organization_id = :org_id;
Because the view is a join over transactional and flexfield structures, queries should always filter by ORGANIZATION_ID and INVENTORY_ITEM_ID to avoid full scans. As with any APPS view, columns should be qualified and the object referenced through the APPS synonym rather than the underlying tables directly.
-
View: AS_INV_ITEM_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INV_ITEM_LOV_V, object_name:AS_INV_ITEM_LOV_V, status:VALID, product: AS - Sales Foundation , description: This view provides Inventory Item and associated Sales category IDs. , implementation_dba_data: APPS.AS_INV_ITEM_LOV_V ,
-
View: AS_INV_ITEM_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INV_ITEM_LOV_V, object_name:AS_INV_ITEM_LOV_V, status:VALID, product: AS - Sales Foundation , description: This view provides Inventory Item and associated Sales category IDs. , implementation_dba_data: APPS.AS_INV_ITEM_LOV_V ,
-
VIEW: APPS.BIL_DIMV_SLSPROD_HIER
12.1.1
-
View: ASF_INVENTORY_LOV_V
12.1.1
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
View: ASF_INVENTORY_LOV_V
12.2.2
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
View: BIL_DIMV_SLSPROD_HIER
12.2.2
product: BIL - Sales Intelligence (Obsolete) , description: Product hiearchy view , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.AS_INTEREST_CODES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_CODES_B, status:VALID,
-
SYNONYM: APPS.AS_INTEREST_CODES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_CODES_B, status:VALID,
-
SYNONYM: APPS.AS_INTEREST_TYPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_TYPES_B, status:VALID,
-
PACKAGE BODY: APPS.AS_OPP_LINE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_OPP_LINE_PVT, status:VALID,
-
SYNONYM: APPS.AS_INTEREST_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_TYPES_B, status:VALID,
-
VIEW: APPS.BIL_DIMV_SLSPROD_HIER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIL.BIL_DIMV_SLSPROD_HIER, object_name:BIL_DIMV_SLSPROD_HIER, status:VALID,
-
View: BIL_DIMV_SLSPROD_HIER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIL.BIL_DIMV_SLSPROD_HIER, object_name:BIL_DIMV_SLSPROD_HIER, status:VALID, product: BIL - Sales Intelligence , description: Product hiearchy view , implementation_dba_data: APPS.BIL_DIMV_SLSPROD_HIER ,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.MTL_CATEGORIES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_CATEGORIES_B, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AS_OPP_LINE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_OPP_LINE_PVT, status:VALID,
-
VIEW: APPS.AS_INV_ITEM_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INV_ITEM_LOV_V, object_name:AS_INV_ITEM_LOV_V, status:VALID,
-
VIEW: APPS.AS_INV_ITEM_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INV_ITEM_LOV_V, object_name:AS_INV_ITEM_LOV_V, status:VALID,
-
SYNONYM: APPS.MTL_CATEGORIES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CATEGORIES_B, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.FND_ID_FLEX_STRUCTURES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_ID_FLEX_STRUCTURES, status:VALID,
-
SYNONYM: APPS.FND_ID_FLEX_STRUCTURES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_ID_FLEX_STRUCTURES, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_CATEGORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_CATEGORIES, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_CATEGORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_CATEGORIES, status:VALID,
-
APPS.AS_OPP_LINE_PVT dependencies on AS_INV_ITEM_LOV_V
12.2.2
-
APPS.AS_OPP_LINE_PVT dependencies on AS_INV_ITEM_LOV_V
12.1.1
-
eTRM - BIL Tables and Views
12.1.1
-
APPS.AS_OPP_LINE_PVT SQL Statements
12.1.1
-
APPS.AS_OPP_LINE_PVT SQL Statements
12.2.2
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
eTRM - BIL Tables and Views
12.1.1
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,
-
PACKAGE BODY: APPS.AS_OPP_LINE_PVT
12.1.1
-
PACKAGE BODY: APPS.AS_OPP_LINE_PVT
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.1.1
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,
-
eTRM - INV Tables and Views
12.1.1