Search Results sales_categories
Overview
APPS.AS_INV_ITEM_LOV_V is a reporting view in Oracle E-Business Suite (documented for 12.1.1 and 12.2.2) that presents inventory items together with their Sales category assignment and the associated interest type and interest code identifiers. It is used primarily to support list-of-values (LOV) and inquiry functionality in the Oracle Advanced Collections / Trade Management (AS) product family, where items must be qualified by their Sales category structure before being presented to the user.
The view is significant because it bridges Oracle Inventory master data (MTL_ITEM_CATEGORIES, MTL_CATEGORIES_B, MTL_SYSTEM_ITEMS_VL) with the Collections interest configuration tables (AS_INTEREST_TYPES_B, AS_INTEREST_CODES_B). Its role in reporting and integration is to expose a single, flattened, ready-to-join row per item/category/organization combination so that interest-related logic can be resolved without the caller having to reconstruct the category key-to-segment mapping.
Underlying Base Objects
The view is defined over the following documented base objects, all accessed through APPS synonyms unless noted:
MTL_ITEM_CATEGORIES(SYNONYM) — the item-to-category assignment fact table, aliasedMIC.MTL_CATEGORIES_B(SYNONYM) — the category definition table holding the segment values, aliasedMC.FND_ID_FLEX_STRUCTURES(SYNONYM) — the key flexfield structure definition, aliasedFIFS, used to resolve the Sales category structure.MTL_SYSTEM_ITEMS_VL(VIEW) — the item master view supplying concatenated segments and description, aliasedITEMS.AS_INTEREST_TYPES_B(SYNONYM) — interest type definitions, aliasedIT.AS_INTEREST_CODES_B(SYNONYM) — interest code definitions, referenced twice asICandIC2.
The joins are constrained tightly to the Sales category context: FIFS.ID_FLEX_CODE = 'MCAT', FIFS.APPLICATION_ID = 401, and FIFS.ID_FLEX_STRUCTURE_CODE = 'SALES_CATEGORIES', with MIC.CATEGORY_SET_ID = 5. The category segment values are converted to text and matched against the interest type and interest code identifiers, with the two AS_INTEREST_CODES_B joins expressed as outer joins.
Key Columns
INVENTORY_ITEM_ID— inventory item identifier from the category assignment.CATEGORY_ID— the Sales category identifier assigned to the item.ORGANIZATION_ID— the inventory organization context of the assignment.INTEREST_TYPE_ID— resolved interest type, derived by matching category segment 1.INTEREST_CODE_ID— the primary interest code (fromIC), matched against category segment 2 via outer join.- The second
INTEREST_CODE_ID— the secondary interest code (fromIC2), matched against category segment 3 via outer join. ITEM_CONCAT_SEGS— concatenated item segments for display in LOVs.ITEM_DESCRIPTION— item description for display in LOVs.
Common Use Cases and Queries
The view supports LOV population, item qualification by Sales category, and reconciliation of item category segments to interest configuration. A typical query retrieves items with their resolved interest attributes for a given organization:
- Populating an item LOV restricted to Sales categories:
SELECT INVENTORY_ITEM_ID, ITEM_CONCAT_SEGS, ITEM_DESCRIPTION FROM APPS.AS_INV_ITEM_LOV_V WHERE ORGANIZATION_ID = :org_id. - Resolving interest type and code for an item:
SELECT INVENTORY_ITEM_ID, INTEREST_TYPE_ID, INTEREST_CODE_ID FROM APPS.AS_INV_ITEM_LOV_V WHERE INVENTORY_ITEM_ID = :item_id. - Auditing category-to-interest mapping across an organization by joining to
AS_INTEREST_TYPES_BandAS_INTEREST_CODES_Bon the exposed IDs.
Because the view enforces the Sales category structure and category set 5 internally, queries against it are pre-filtered and do not require the caller to re-specify those conditions.
-
VIEW: APPS.AS_INV_ITEM_LOV_V
12.1.1
-
VIEW: APPS.AS_INV_ITEM_LOV_V
12.2.2
-
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 ,
-
APPS.EDW_ITEMS_PKG SQL Statements
12.1.1
-
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: MSD_SR_IT_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_IT_ALL_V, object_name:MSD_SR_IT_ALL_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View that associates the Interest Type level to Top level in the Product Dimension. This view would be applied to an OracleSales Online Applications 11i instance from which the Interest Type to Top level association info , implementation_dba_data: APPS.MSD_SR_IT_ALL_V ,
-
View: MSD_SR_IT_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_IT_ALL_V, object_name:MSD_SR_IT_ALL_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View that associates the Interest Type level to Top level in the Product Dimension. This view would be applied to an OracleSales Online Applications 11i instance from which the Interest Type to Top level association info , implementation_dba_data: APPS.MSD_SR_IT_ALL_V ,
-
APPS.BOM_DIAGUNITTEST_CATHLCHK SQL Statements
12.2.2
-
APPS.BOM_DIAGUNITTEST_CATHLCHK SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_CATHLCHK
12.1.1
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_CATHLCHK
12.2.2
-
APPS.AS_CATALOG_MIGRATION SQL Statements
12.2.2
-
APPS.OKC_OPPORTUNITY_PVT SQL Statements
12.1.1
-
APPS.OKC_OPPORTUNITY_PVT SQL Statements
12.2.2
-
APPS.AS_CATALOG_MIGRATION SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_ITEMS_PKG
12.1.1
-
APPS.IBE_LEAD_IMPORT_PVT SQL Statements
12.1.1
-
APPS.IBE_LEAD_IMPORT_PVT SQL Statements
12.2.2
-
APPS.OKC_OPPORTUNITY_PVT dependencies on MTL_ITEM_CATEGORIES
12.2.2
-
APPS.OKC_OPPORTUNITY_PVT dependencies on FND_ID_FLEX_STRUCTURES
12.1.1
-
APPS.EDW_ITEMS_PKG dependencies on FND_ID_FLEX_STRUCTURES
12.1.1
-
APPS.OKC_OPPORTUNITY_PVT dependencies on FND_ID_FLEX_STRUCTURES
12.2.2
-
APPS.OKC_OPPORTUNITY_PVT dependencies on MTL_ITEM_CATEGORIES
12.1.1
-
APPS.OKC_OPPORTUNITY_PVT dependencies on MTL_CATEGORIES_B
12.2.2
-
APPS.AS_CATALOG_MIGRATION dependencies on FND_ID_FLEX_STRUCTURES
12.2.2
-
APPS.AS_CATALOG_MIGRATION dependencies on FND_ID_FLEX_STRUCTURES
12.1.1
-
APPS.EDW_ITEMS_PKG dependencies on MTL_CATEGORIES_B
12.1.1
-
APPS.OKC_OPPORTUNITY_PVT dependencies on MTL_CATEGORIES_B
12.1.1
-
APPS.BOM_DIAGUNITTEST_CATHLCHK dependencies on JTF_DIAGNOSTIC_COREAPI
12.1.1
-
APPS.BOM_DIAGUNITTEST_CATHLCHK dependencies on JTF_DIAGNOSTIC_COREAPI
12.2.2
-
PACKAGE BODY: APPS.AS_CATALOG_MIGRATION
12.2.2
-
PACKAGE BODY: APPS.OKC_OPPORTUNITY_PVT
12.1.1
-
PACKAGE BODY: APPS.IBE_LEAD_IMPORT_PVT
12.2.2
-
PACKAGE BODY: APPS.IBE_LEAD_IMPORT_PVT
12.1.1
-
PACKAGE BODY: APPS.AS_CATALOG_MIGRATION
12.1.1
-
PACKAGE BODY: APPS.OKC_OPPORTUNITY_PVT
12.2.2
-
APPS.AS_CATALOG_MIGRATION dependencies on FND_FILE
12.2.2
-
APPS.AS_CATALOG_MIGRATION dependencies on FND_FILE
12.1.1