Search Results ibe_dsp_section_items
Overview
The table IBE_DSP_SECTION_ITEMS is a core data entity within the Oracle E-Business Suite (EBS) iStore (IBE) module, specifically versions 12.1.1 and 12.2.2. It functions as a junction or association table, establishing and managing the many-to-many relationships between merchandising sections and catalog items. Its primary role is to support the storefront's product catalog structure, enabling administrators to assign individual items to specific sections for organized display and navigation. This table is fundamental to the content management and presentation layer of an iStore implementation, directly impacting how products are categorized and discovered by end-users on the website.
Key Information Stored
The table's structure is designed to enforce unique associations and maintain referential integrity. The key columns include:
- SECTION_ITEM_ID: The primary key (IBE_DSP_SECTION_ITEMS_PK), serving as a unique system-generated identifier for each section-item association record.
- SECTION_ID: A foreign key referencing IBE_DSP_SECTIONS_B. This identifies the specific merchandising section to which an item belongs.
- INVENTORY_ITEM_ID and ORGANIZATION_ID: Together, these columns form a composite unique key (IBE_DSP_SECTION_ITEMS_UK1) and are foreign keys referencing MTL_SYSTEM_ITEMS_B. They uniquely identify the specific inventory item within a given inventory organization that is linked to the section.
Common Use Cases and Queries
This table is central to catalog management and reporting operations. Common use cases include generating a list of all items within a specific section for front-end rendering, auditing catalog assignments, and bulk updating section membership. A typical query to retrieve all items for a section would join to the item master and section tables:
SELECT msib.segment1 item_number, msib.description, idsb.section_name
FROM ibe.ibe_dsp_section_items idsi,
mtl_system_items_b msib,
ibe.ibe_dsp_sections_b idsb
WHERE idsi.inventory_item_id = msib.inventory_item_id
AND idsi.organization_id = msib.organization_id
AND idsi.section_id = idsb.section_id
AND idsb.section_id = :p_section_id;
Another critical scenario involves data validation or migration scripts to identify orphaned records where either the section or the item master record no longer exists.
Related Objects
IBE_DSP_SECTION_ITEMS sits at the intersection of several key iStore and Inventory entities. Its primary foreign key relationships are:
- IBE_DSP_SECTIONS_B: The master table for storefront sections. The SECTION_ID column enforces that an association must point to a valid section.
- MTL_SYSTEM_ITEMS_B: The Oracle Inventory item master. The INVENTORY_ITEM_ID and ORGANIZATION_ID columns link the catalog display to the actual product definition.
- IBE_DSP_MSITE_SCT_ITEMS: This table has a foreign key referencing the SECTION_ITEM_ID, indicating it stores more granular, potentially microsite-specific data that extends the base section-item association.
-
Table: IBE_DSP_SECTION_ITEMS
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTION_ITEMS, object_name:IBE_DSP_SECTION_ITEMS, status:VALID, product: IBE - iStore , description: This table stores the association between sections and items. , implementation_dba_data: IBE.IBE_DSP_SECTION_ITEMS ,
-
Table: IBE_DSP_SECTION_ITEMS
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTION_ITEMS, object_name:IBE_DSP_SECTION_ITEMS, status:VALID, product: IBE - iStore , description: This table stores the association between sections and items. , implementation_dba_data: IBE.IBE_DSP_SECTION_ITEMS ,
-
View: IBE_DSP_FEATURED_MEDIA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_FEATURED_MEDIA_V, object_name:IBE_DSP_FEATURED_MEDIA_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_FEATURED_MEDIA_V ,
-
View: IBE_DSP_FEATURED_MEDIA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_FEATURED_MEDIA_V, object_name:IBE_DSP_FEATURED_MEDIA_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_FEATURED_MEDIA_V ,
-
Table: IBE_DSP_MSITE_SCT_ITEMS
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_MSITE_SCT_ITEMS, object_name:IBE_DSP_MSITE_SCT_ITEMS, status:VALID, product: IBE - iStore , description: This table stores the assocation between mini-site and items. , implementation_dba_data: IBE.IBE_DSP_MSITE_SCT_ITEMS ,
-
Table: IBE_DSP_MSITE_SCT_ITEMS
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_MSITE_SCT_ITEMS, object_name:IBE_DSP_MSITE_SCT_ITEMS, status:VALID, product: IBE - iStore , description: This table stores the assocation between mini-site and items. , implementation_dba_data: IBE.IBE_DSP_MSITE_SCT_ITEMS ,
-
Table: IBE_DSP_SECTIONS_B
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTIONS_B, object_name:IBE_DSP_SECTIONS_B, status:VALID, product: IBE - iStore , description: This table stores information about the sections. , implementation_dba_data: IBE.IBE_DSP_SECTIONS_B ,
-
Table: IBE_DSP_SECTIONS_B
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_DSP_SECTIONS_B, object_name:IBE_DSP_SECTIONS_B, status:VALID, product: IBE - iStore , description: This table stores information about the sections. , implementation_dba_data: IBE.IBE_DSP_SECTIONS_B ,