Search Results jtf_ih_outcomes_b
Overview
The JTF_IH_OUTCOMES_B table is a core data object within the Oracle E-Business Suite CRM Foundation module (JTF). It functions as the master repository for defining interaction outcomes, which are the recorded results or conclusions of customer interactions managed through the Interaction History system. An outcome categorizes the nature of an interaction's conclusion, such as "Contact Made," "Busy," "Left Message," or "Sale." This table stores the base transactional data (the "B" suffix typically denotes the base table), while its corresponding translatable columns are maintained in a separate table, JTF_IH_OUTCOMES_TL. Its primary role is to enforce data integrity and provide a standardized set of outcome codes that are referenced across the Interaction History and related CRM applications to ensure consistent reporting and process flow.
Key Information Stored
While the specific column list is not detailed in the provided metadata, the structure of Oracle EBS tables and the documented relationships allow for a reliable inference of its key attributes. The central column is OUTCOME_ID, which serves as the primary key and unique identifier for each outcome record. This numeric ID is the foreign key referenced by all related tables. Other standard columns typically present include START_DATE_ACTIVE and END_DATE_ACTIVE for controlling the active period of the outcome, and CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY for auditing. The table likely contains a SEEDED_FLAG column indicating if the record is shipped by Oracle or user-created, and a short CODE or NAME field for the internal outcome identifier. Descriptive text for multi-language support is stored in the related JTF_IH_OUTCOMES_TL table.
Common Use Cases and Queries
This table is central to analyzing agent performance, interaction effectiveness, and customer contact patterns. Common use cases include generating reports on the distribution of call outcomes (e.g., percentage of calls resulting in a sale), defining business rules for workflow based on outcome, and populating lists of values in application forms. A typical analytical query would join this table to interaction data. For example, to report on outcomes for interactions handled by a specific resource, one might use a SQL pattern such as:
- SELECT oh.OUTCOME_CODE, COUNT(i.interaction_id) AS interaction_count
- FROM JTF_IH_INTERACTIONS i,
- JTF_IH_OUTCOMES_B oh
- WHERE i.outcome_id = oh.outcome_id
- AND i.resource_id = :p_resource_id
- GROUP BY oh.OUTCOME_CODE;
Administrative use cases involve querying the table to list all active outcomes available for assignment to activities or interactions within the CRM interface.
Related Objects
As documented in the foreign key relationships, JTF_IH_OUTCOMES_B is a critical reference table for numerous transactional entities in the Interaction History schema. The OUTCOME_ID column is directly referenced by: JTF_IH_INTERACTIONS (the main interaction record), JTF_IH_ACTIVITIES (individual tasks within an interaction), and JTF_IH_WRAP_UPS (post-call summary data). It is also linked to JTF_IH_OUTCOME_RESULTS for more granular result tracking and to JTF_IH_OUTCOMES_CAMPAIGNS for campaign-specific outcome mapping. The translatable companion table, JTF_IH_OUTCOMES_TL, depends on the base table to provide language-specific names and descriptions for each OUTCOME_ID. This network of relationships underscores its role as a central code lookup for the entire interaction lifecycle.
-
Table: JTF_IH_OUTCOMES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_OUTCOMES_B, object_name:JTF_IH_OUTCOMES_B, status:VALID, product: JTF - CRM Foundation , description: The outcome of an interaction. Example: Contact. Busy. , implementation_dba_data: JTF.JTF_IH_OUTCOMES_B ,
-
Table: JTF_IH_OUTCOMES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_OUTCOMES_B, object_name:JTF_IH_OUTCOMES_B, status:VALID, product: JTF - CRM Foundation , description: The outcome of an interaction. Example: Contact. Busy. , implementation_dba_data: JTF.JTF_IH_OUTCOMES_B ,
-
APPS.JTF_IH_PUB dependencies on JTF_IH_OUTCOMES_B
12.2.2
-
APPS.AST_WRAPUP_ADM_PVT dependencies on JTF_IH_OUTCOMES_B
12.1.1
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_OUTCOMES_B
12.1.1
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_OUTCOMES_B
12.2.2
-
APPS.JTF_IH_OUTCOMES_SEED_PKG dependencies on JTF_IH_OUTCOMES_B
12.2.2
-
APPS.JTF_IH_OUTCOMES_SEED_PVT dependencies on JTF_IH_OUTCOMES_B
12.1.1
-
APPS.JTF_IH_PUB_PS dependencies on JTF_IH_OUTCOMES_B
12.1.1
-
APPS.JTF_IH_PUB dependencies on JTF_IH_OUTCOMES_B
12.1.1
-
APPS.IEX_PROFILE dependencies on JTF_IH_OUTCOMES_B
12.2.2
-
APPS.JTF_IH_PUB_PS dependencies on JTF_IH_OUTCOMES_B
12.2.2
-
APPS.JTF_IH_OUTCOMES_SEED_PVT dependencies on JTF_IH_OUTCOMES_B
12.2.2
-
APPS.JTF_IH_OUTCOMES_SEED_PKG dependencies on JTF_IH_OUTCOMES_B
12.1.1
-
APPS.AST_WRAPUP_ADM_PVT dependencies on JTF_IH_OUTCOMES_B
12.2.2
-
VIEW: JTF.JTF_IH_OUTCOMES_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_IH_OUTCOMES_B#, status:VALID,
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_OUTCOMES_CAMPAIGNS
12.2.2
-
TRIGGER: APPS.JTF_IH_OUTCOMES_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_IH_OUTCOMES_B+, status:VALID,
-
View: JTF_IH_OUTCOMES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_IH_OUTCOMES_VL, object_name:JTF_IH_OUTCOMES_VL, status:VALID, product: JTF - CRM Foundation , description: Translated view for JTF_IH_OUTCOMES_B and JTF_IH_OUTCOMES_TL. , implementation_dba_data: APPS.JTF_IH_OUTCOMES_VL ,
-
View: JTF_IH_ACTIVE_OUTCOMES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_IH_ACTIVE_OUTCOMES_VL, object_name:JTF_IH_ACTIVE_OUTCOMES_VL, status:VALID, product: JTF - CRM Foundation , description: Translated active rows from view for JTF_IH_OUTCOMES_B and JTF_IH_OUTCOMES_TL. , implementation_dba_data: APPS.JTF_IH_ACTIVE_OUTCOMES_VL ,
-
APPS.JTF_IH_OUTCOMES_SEED_PVT SQL Statements
12.1.1
-
VIEW: APPS.JTF_IH_ACTIVE_OUTCOMES_VL
12.1.1
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_OUTCOMES_CAMPAIGNS
12.1.1
-
SYNONYM: APPS.JTF_IH_OUTCOMES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_IH_OUTCOMES_B, status:VALID,
-
VIEW: APPS.JTF_IH_ACTIVE_OUTCOMES_VL
12.2.2
-
SYNONYM: APPS.JTF_IH_OUTCOMES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_IH_OUTCOMES_B, status:VALID,
-
TRIGGER: APPS.JTF_IH_OUTCOMES_B+
12.2.2
-
View: JTF_IH_OUTCOMES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_IH_OUTCOMES_VL, object_name:JTF_IH_OUTCOMES_VL, status:VALID, product: JTF - CRM Foundation , description: Translated view for JTF_IH_OUTCOMES_B and JTF_IH_OUTCOMES_TL. , implementation_dba_data: APPS.JTF_IH_OUTCOMES_VL ,
-
VIEW: APPS.JTF_IH_OUTCOMES_VL
12.1.1
-
View: JTF_IH_ACTIVE_OUTCOMES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_IH_ACTIVE_OUTCOMES_VL, object_name:JTF_IH_ACTIVE_OUTCOMES_VL, status:VALID, product: JTF - CRM Foundation , description: Translated active rows from view for JTF_IH_OUTCOMES_B and JTF_IH_OUTCOMES_TL. , implementation_dba_data: APPS.JTF_IH_ACTIVE_OUTCOMES_VL ,
-
VIEW: APPS.JTF_IH_OUTCOMES_VL
12.2.2
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_REASONS_B
12.2.2
-
VIEW: JTF.JTF_IH_OUTCOMES_B#
12.2.2
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_RESULTS_B
12.1.1
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_RESULTS_B
12.2.2
-
VIEW: APPS.JTF_IH_WRAPUP_OUTCOMES_VL
12.2.2
-
VIEW: APPS.JTF_IH_WRAPUP_OUTCOMES_VL
12.1.1
-
APPS.JTF_IH_OUTCOMES_SEED_PVT SQL Statements
12.2.2
-
APPS.JTF_IH_TOOLS SQL Statements
12.1.1
-
APPS.JTF_IH_TOOLS SQL Statements
12.2.2
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_REASONS_B
12.1.1
-
APPS.JTF_IH_OUTCOMES_SEED_PKG SQL Statements
12.2.2
-
APPS.JTF_IH_OUTCOMES_SEED_PKG SQL Statements
12.1.1
-
Table: JTF_IH_OUTCOMES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_OUTCOMES_TL, object_name:JTF_IH_OUTCOMES_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for Outcomes. , implementation_dba_data: JTF.JTF_IH_OUTCOMES_TL ,
-
Table: JTF_IH_WRAP_UPS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_WRAP_UPS, object_name:JTF_IH_WRAP_UPS, status:VALID, product: JTF - CRM Foundation , description: This table identifies the information that has to be provided by the application inserting Interaction History records. , implementation_dba_data: JTF.JTF_IH_WRAP_UPS ,
-
Table: JTF_IH_WRAP_UPS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_WRAP_UPS, object_name:JTF_IH_WRAP_UPS, status:VALID, product: JTF - CRM Foundation , description: This table identifies the information that has to be provided by the application inserting Interaction History records. , implementation_dba_data: JTF.JTF_IH_WRAP_UPS ,
-
Table: JTF_IH_OUTCOMES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_OUTCOMES_TL, object_name:JTF_IH_OUTCOMES_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for Outcomes. , implementation_dba_data: JTF.JTF_IH_OUTCOMES_TL ,
-
FUNCTION: APPS.JTF_IH_OUTCOMES_B=
12.2.2
-
Table: JTF_IH_OUTCOMES_CAMPAIGNS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_OUTCOMES_CAMPAIGNS, object_name:JTF_IH_OUTCOMES_CAMPAIGNS, status:VALID, product: JTF - CRM Foundation , description: Intersection table pairing Outcomes for specific Oracle Campaigns. , implementation_dba_data: JTF.JTF_IH_OUTCOMES_CAMPAIGNS ,
-
PACKAGE BODY: APPS.JTF_IH_OUTCOMES_SEED_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_IH_OUTCOMES_SEED_PVT, status:VALID,