Search Results ibe_ct_related_items
Overview
The IBE_CT_RELATED_ITEMS table is a core data object within the Oracle E-Business Suite iStore (IBE) module, serving as a performance-optimized repository for precomputed product relationships. Its primary role is to store the results of mapping relationship rules, which define associations between catalog items such as cross-sells, up-sells, accessories, or substitutes. By precomputing and storing these relationships, the table enables the iStore application to rapidly display related products on storefront pages without the performance overhead of dynamically evaluating complex business rules during each user session. This design is critical for delivering a responsive customer experience in high-volume e-commerce environments across both EBS releases 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is designed to uniquely identify a relationship between two specific items within an organizational context. Its primary key is a composite of four columns: INVENTORY_ITEM_ID, RELATED_ITEM_ID, RELATION_TYPE_CODE, and ORGANIZATION_ID. The INVENTORY_ITEM_ID and RELATED_ITEM_ID columns hold the identifiers for the source and target items in the relationship, respectively. The RELATION_TYPE_CODE defines the nature of the association (e.g., 'CROSS_SELL', 'UP_SELL'). The ORGANIZATION_ID provides inventory master organization context, ensuring relationships are scoped correctly. A critical foreign key column, RELATION_RULE_ID, links the specific stored relationship back to its originating business rule defined in the IBE_CT_RELATION_RULES table, providing an audit trail from rule to result.
Common Use Cases and Queries
A primary use case is powering the "Customers Who Bought This Item Also Bought" or "Recommended Accessories" sections on an iStore product detail page. Application logic queries this table to retrieve all RELATED_ITEM_ID values for a given INVENTORY_ITEM_ID, ORGANIZATION_ID, and desired RELATION_TYPE_CODE. For reporting and analytics, administrators may query the table to analyze the volume and distribution of relationship types or validate rule execution. A common SQL pattern involves joining to MTL_SYSTEM_ITEMS_B to retrieve item details:
- SELECT ri.*, msi1.segment1 source_item, msi2.segment1 related_item FROM ibe_ct_related_items ri, mtl_system_items_b msi1, mtl_system_items_b msi2 WHERE ri.inventory_item_id = msi1.inventory_item_id AND ri.related_item_id = msi2.inventory_item_id AND ri.organization_id = msi1.organization_id AND ri.organization_id = msi2.organization_id AND ri.inventory_item_id = :p_item_id AND ri.relation_type_code = :p_rel_type;
Related Objects
The IBE_CT_RELATED_ITEMS table has defined dependencies on several key inventory and iStore configuration tables, as documented in its foreign key constraints. It maintains referential integrity with the inventory master table through two separate foreign key relationships to MTL_SYSTEM_ITEMS_B. The first links the INVENTORY_ITEM_ID and ORGANIZATION_ID columns to validate the source item. The second links the RELATED_ITEM_ID and ORGANIZATION_ID columns to validate the target related item. Furthermore, it depends on the IBE_CT_RELATION_RULES table via the RELATION_RULE_ID foreign key, ensuring every stored relationship can be traced to a defined business rule. The table's primary key constraint is named IBE_CT_RELATED_ITEMS_PK.
-
Table: IBE_CT_RELATED_ITEMS
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_CT_RELATED_ITEMS, object_name:IBE_CT_RELATED_ITEMS, status:VALID, product: IBE - iStore , description: Precomputed product relationships derived from mapping relationship rules , implementation_dba_data: IBE.IBE_CT_RELATED_ITEMS ,
-
Table: IBE_CT_RELATED_ITEMS
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_CT_RELATED_ITEMS, object_name:IBE_CT_RELATED_ITEMS, status:VALID, product: IBE - iStore , description: Precomputed product relationships derived from mapping relationship rules , implementation_dba_data: IBE.IBE_CT_RELATED_ITEMS ,
-
APPS.IBE_PROD_RELATION_RULE_PVT dependencies on IBE_CT_RELATED_ITEMS
12.2.2
-
APPS.IBE_PROD_RELATION_RULE_PVT dependencies on IBE_CT_RELATED_ITEMS
12.1.1
-
APPS.IBE_PROD_RELATION_PVT dependencies on IBE_CT_RELATED_ITEMS
12.2.2
-
APPS.IBE_PROD_RELATION_PVT dependencies on IBE_CT_RELATED_ITEMS
12.1.1
-
VIEW: APPS.IBE_CT_RELATED_ITEMS_V
12.1.1
-
APPS.IBE_PROD_RELATION_PVT SQL Statements
12.2.2
-
APPS.IBE_PROD_RELATION_PVT SQL Statements
12.1.1
-
APPS.IBE_INV_DATABASE_TRIGGER_PVT dependencies on IBE_PROD_RELATION_PVT
12.2.2
-
VIEW: IBE.IBE_CT_RELATED_ITEMS#
12.2.2
owner:IBE, object_type:VIEW, object_name:IBE_CT_RELATED_ITEMS#, status:VALID,
-
SYNONYM: APPS.IBE_CT_RELATED_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBE_CT_RELATED_ITEMS, status:VALID,
-
VIEW: APPS.IBE_CT_RELATED_ITEMS_V
12.2.2
-
APPS.IBE_INV_DATABASE_TRIGGER_PVT dependencies on IBE_PROD_RELATION_PVT
12.1.1
-
SYNONYM: APPS.IBE_CT_RELATED_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBE_CT_RELATED_ITEMS, status:VALID,
-
APPS.IBE_PROD_RELATION_GRP SQL Statements
12.2.2
-
VIEW: IBE.IBE_CT_RELATED_ITEMS#
12.2.2
-
APPS.IBE_PROD_RELATION_GRP SQL Statements
12.1.1
-
APPS.IBE_PROD_RELATION_GRP dependencies on IBE_TEMP_TABLE
12.1.1
-
TABLE: IBE.IBE_CT_RELATED_ITEMS
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_CT_RELATED_ITEMS, object_name:IBE_CT_RELATED_ITEMS, status:VALID,
-
APPS.IBE_INV_DATABASE_TRIGGER_PVT SQL Statements
12.1.1
-
TABLE: IBE.IBE_CT_RELATED_ITEMS
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_CT_RELATED_ITEMS, object_name:IBE_CT_RELATED_ITEMS, status:VALID,
-
APPS.IBE_PROD_RELATION_GRP dependencies on IBE_TEMP_TABLE
12.2.2
-
APPS.IBE_PROD_RELATION_PVT dependencies on IBE_CT_REL_EXCLUSIONS
12.2.2
-
APPS.IBE_PROD_RELATION_PVT dependencies on IBE_CT_REL_EXCLUSIONS
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: IBE_CT_RELATED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_CT_RELATED_ITEMS_V, object_name:IBE_CT_RELATED_ITEMS_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_CT_RELATED_ITEMS_V ,
-
APPS.AMS_RUNTIME_PROD_PVT SQL Statements
12.2.2
-
View: AMS_IBA_OP_PROXY_V
12.1.1
product: AMS - Marketing , description: Lists out the item can be used as proxy for other items , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
View: IBE_CT_RELATED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_CT_RELATED_ITEMS_V, object_name:IBE_CT_RELATED_ITEMS_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_CT_RELATED_ITEMS_V ,
-
APPS.IBE_INV_DATABASE_TRIGGER_PVT SQL Statements
12.2.2
-
View: AMS_IBA_OP_PROXY_V
12.2.2
product: AMS - Marketing , description: Lists out the item can be used as proxy for other items , implementation_dba_data: Not implemented in this database ,
-
APPS.IBE_PROD_RELATION_RULE_PVT dependencies on IBE_UTIL
12.1.1
-
APPS.AMS_RUNTIME_PROD_PVT SQL Statements
12.1.1
-
Table: IBE_CT_RELATION_RULES
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_CT_RELATION_RULES, object_name:IBE_CT_RELATION_RULES, status:VALID, product: IBE - iStore , description: Mapping or SQL rules that define product relationships , implementation_dba_data: IBE.IBE_CT_RELATION_RULES ,
-
Table: IBE_CT_RELATION_RULES
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_CT_RELATION_RULES, object_name:IBE_CT_RELATION_RULES, status:VALID, product: IBE - iStore , description: Mapping or SQL rules that define product relationships , implementation_dba_data: IBE.IBE_CT_RELATION_RULES ,
-
TABLE: IBE.IBE_CT_RELATION_RULES
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_CT_RELATION_RULES, object_name:IBE_CT_RELATION_RULES, status:VALID,
-
APPS.IBE_PROD_RELATION_RULE_PVT dependencies on IBE_UTIL
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
TABLE: IBE.IBE_CT_RELATION_RULES
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_CT_RELATION_RULES, object_name:IBE_CT_RELATION_RULES, status:VALID,
-
PACKAGE BODY: APPS.IBE_PROD_RELATION_RULE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_PROD_RELATION_RULE_PVT, status:VALID,
-
VIEW: APPS.IBE_CT_RELATED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_CT_RELATED_ITEMS_V, object_name:IBE_CT_RELATED_ITEMS_V, status:VALID,
-
PACKAGE BODY: APPS.IBE_PROD_RELATION_RULE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_PROD_RELATION_RULE_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_PROD_RELATION_PVT
12.1.1