Search Results jtf_dsp_context_b_uk1
Overview
The JTF_DSP_CONTEXT_B table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the master table for storing display contexts, which are logical constructs that define how content is rendered for different media types and channels. Its primary role is to manage the association between templates, media attributes, and the specific contexts in which they are used, enabling the flexible presentation of content across various customer interaction points in the CRM suite.
Key Information Stored
The table's structure is centered on uniquely identifying a display context and its type. While the full column list is not detailed in the provided metadata, the defined constraints reveal the most critical fields. The primary identifier is the CONTEXT_ID column, which is the system-generated primary key (JTF_DSP_CONTEXT_PK). A unique key constraint (JTF_DSP_CONTEXT_B_UK1) is enforced on the combination of ACCESS_NAME and CONTEXT_TYPE_CODE, ensuring that a specific context type and access name pairing is not duplicated. The ITEM_ID column is a foreign key linking to the JTF_AMV_ITEMS_B table, indicating a relationship with Application Management items, potentially for setup or administration purposes.
Common Use Cases and Queries
This table is primarily accessed for configuration and reporting related to content display management. Common operational scenarios include validating or auditing the setup of display contexts, troubleshooting content rendering issues, and generating lists of available contexts for a given media type. A typical query would join the base table with its translated descriptive table, JTF_DSP_CONTEXT_TL, to retrieve user-friendly names.
Sample Query: Retrieving a list of all display contexts with their descriptions.
SELECT b.CONTEXT_ID,
b.ACCESS_NAME,
b.CONTEXT_TYPE_CODE,
tl.CONTEXT_NAME,
tl.DESCRIPTION
FROM JTF.JTF_DSP_CONTEXT_B b,
JTF.JTF_DSP_CONTEXT_TL tl
WHERE b.CONTEXT_ID = tl.CONTEXT_ID
AND tl.LANGUAGE = USERENV('LANG');
Related Objects
The JTF_DSP_CONTEXT_B table is central to the display context data model, with several key relationships documented in the ETRM metadata.
- Referenced Foreign Key: The table references JTF_AMV_ITEMS_B via its ITEM_ID column.
- Referencing Foreign Keys: Three tables have foreign key relationships pointing to JTF_DSP_CONTEXT_B.CONTEXT_ID:
- JTF_DSP_CONTEXT_TL: Stores translated names and descriptions for the context.
- JTF_DSP_OBJ_LGL_CTNT: Likely stores logical content objects associated with a specific display context.
- JTF_DSP_SECTIONS_B: Uses DISPLAY_CONTEXT_ID to link content sections to a particular display context.
-
Table: JTF_DSP_CONTEXT_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_CONTEXT_B, object_name:JTF_DSP_CONTEXT_B, status:VALID, product: JTF - CRM Foundation , description: Stores the display contexts associated with templates and media attributes for media. , implementation_dba_data: JTF.JTF_DSP_CONTEXT_B ,
-
Table: JTF_DSP_CONTEXT_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_CONTEXT_B, object_name:JTF_DSP_CONTEXT_B, status:VALID, product: JTF - CRM Foundation , description: Stores the display contexts associated with templates and media attributes for media. , implementation_dba_data: JTF.JTF_DSP_CONTEXT_B ,
-
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 ,