Search Results jtf_dsp_section_items_uk1
Overview
The JTF_DSP_SECTION_ITEMS table is a core data object within the Oracle E-Business Suite CRM Foundation module (JTF). It functions as a junction or association table, establishing and storing the many-to-many relationships between display sections and inventory items. Its primary role is to support the configuration and management of item catalogs and product displays within the E-Business Suite's customer-facing and operational interfaces. By defining which items belong to which catalog sections, this table enables the structured presentation and categorization of products for applications such as iStore, Quoting, and other CRM components.
Key Information Stored
The table's structure is designed to uniquely identify each section-item association and enforce data integrity. The key columns include:
- SECTION_ITEM_ID: The primary key column, serving as a unique system-generated identifier for each association record.
- SECTION_ID: A foreign key referencing JTF_DSP_SECTIONS_B. This identifies the specific catalog or display section.
- INVENTORY_ITEM_ID: Part of a unique key constraint, this identifies the specific inventory item (from INV) being associated with the section.
- ORGANIZATION_ID: The second part of the unique key constraint (UK1), this identifies the inventory organization for the specified item, ensuring the correct item-organization context is maintained.
The unique constraint (JTF_DSP_SECTION_ITEMS_UK1) on SECTION_ID, INVENTORY_ITEM_ID, and ORGANIZATION_ID prevents the same item from being linked to the same section more than once within the same organizational context.
Common Use Cases and Queries
This table is central to queries that build product hierarchies, generate catalog content, and validate item availability within specific sections. A common reporting use case involves listing all items within a particular catalog section for a price list or web store display. A typical SQL pattern would join this table to the item master and section tables:
SELECT msi.segment1 item_code, msi.description, sec.section_name
FROM jtf_dsp_section_items si,
jtf_dsp_sections_b sec,
mtl_system_items_b msi
WHERE si.section_id = sec.section_id
AND si.inventory_item_id = msi.inventory_item_id
AND si.organization_id = msi.organization_id
AND sec.section_id = :p_section_id
ORDER BY msi.segment1;
Another critical use case is during data migration or integration, where scripts populate this table to establish the initial product catalog structure after loading base item and section data.
Related Objects
JTF_DSP_SECTION_ITEMS sits at the center of a small but important data model within the CRM Foundation. Its documented relationships are:
- Referenced Foreign Key: The table references JTF_DSP_SECTIONS_B via the column SECTION_ID. This is the master table for catalog sections.
- Referencing Foreign Key: The table is referenced by JTF_DSP_MSITE_SCT_ITEMS via the column SECTION_ITEM_ID. This indicates that the core section-item association defined here can be further specialized or overridden for specific microsites or storefronts, demonstrating a layered configuration model.
While not explicitly listed in the provided metadata, this table would also have an implicit relationship with inventory tables (MTL_SYSTEM_ITEMS_B) via the INVENTORY_ITEM_ID and ORGANIZATION_ID columns to resolve item details.
-
Table: JTF_DSP_SECTION_ITEMS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_SECTION_ITEMS, object_name:JTF_DSP_SECTION_ITEMS, status:VALID, product: JTF - CRM Foundation , description: This table stores the association between sections and items. , implementation_dba_data: JTF.JTF_DSP_SECTION_ITEMS ,
-
Table: JTF_DSP_SECTION_ITEMS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_SECTION_ITEMS, object_name:JTF_DSP_SECTION_ITEMS, status:VALID, product: JTF - CRM Foundation , description: This table stores the association between sections and items. , implementation_dba_data: JTF.JTF_DSP_SECTION_ITEMS ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,