Search Results jtf_ih_result_reasons
Overview
The JTF_IH_RESULT_REASONS table is a core intersection table within the Oracle E-Business Suite (EBS) CRM Foundation module. It serves as a critical junction object in the Interaction History (IH) schema, which manages customer interaction data. Its primary function is to define and enforce valid combinations of outcomes (results) and their associated explanatory codes (reasons) for customer service activities, such as service requests or call center interactions. This table ensures data integrity by allowing only pre-defined, business-rule-compliant reason codes to be linked to a specific result type, thereby standardizing the classification of interaction outcomes across the CRM application.
Key Information Stored
The table's structure is minimalistic, designed solely to manage the many-to-many relationship between results and reasons. Its two key columns, which together form the table's composite primary key, are RESULT_ID and REASON_ID. The RESULT_ID column stores a foreign key reference to a specific outcome defined in the JTF_IH_RESULTS_B table, such as "Closed" or "Resolved." The REASON_ID column stores a foreign key reference to a specific explanatory code defined in the JTF_IH_REASONS_B table, such as "Customer Satisfied" or "Part Ordered." Each unique row in this table represents one permissible reason for a given result.
Common Use Cases and Queries
This table is central to configuring and reporting on interaction dispositions. Administrators use it to set up which reason codes are available for selection when an agent applies a specific result to a service request. A common reporting use case involves analyzing the frequency of closure reasons. A typical query would join this table to its parent tables to retrieve meaningful descriptions:
- Retrieving all valid reason codes for a specific result:
SELECT r.reason_code, r.reason_name FROM jtf_ih_result_reasons rr, jtf_ih_reasons_b r WHERE rr.reason_id = r.reason_id AND rr.result_id = <RESULT_ID>; - Reporting on the count of service requests closed with each reason:
SELECT res.result_code, rea.reason_name, COUNT(*) FROM jtf_ih_result_reasons rr, jtf_ih_results_b res, jtf_ih_reasons_b rea, jtf_ih_interactions i WHERE rr.result_id = res.result_id AND rr.reason_id = rea.reason_id AND i.result_id = rr.result_id AND i.reason_id = rr.reason_id GROUP BY res.result_code, rea.reason_name;
Related Objects
The JTF_IH_RESULT_REASONS table is intrinsically linked to two master tables via foreign key constraints, forming the core of the result-reason data model.
- JTF_IH_RESULTS_B: The master table for interaction result codes. The foreign key from JTF_IH_RESULT_REASONS.RESULT_ID references JTF_IH_RESULTS_B.RESULT_ID.
- JTF_IH_REASONS_B: The master table for interaction reason codes. The foreign key from JTF_IH_RESULT_REASONS.REASON_ID references JTF_IH_REASONS_B.REASON_ID.
This table is typically referenced by transactional tables that store the actual interaction data, such as JTF_IH_INTERACTIONS, which would store the selected RESULT_ID and REASON_ID pair for a completed interaction.
-
Table: JTF_IH_RESULT_REASONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_RESULT_REASONS, object_name:JTF_IH_RESULT_REASONS, status:VALID, product: JTF - CRM Foundation , description: The valid combination of reasons for a result. , implementation_dba_data: JTF.JTF_IH_RESULT_REASONS ,
-
Table: JTF_IH_RESULT_REASONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_RESULT_REASONS, object_name:JTF_IH_RESULT_REASONS, status:VALID, product: JTF - CRM Foundation , description: The valid combination of reasons for a result. , implementation_dba_data: JTF.JTF_IH_RESULT_REASONS ,
-
APPS.AMS_LIST_ENTRIES_PVT dependencies on JTF_IH_RESULT_REASONS
12.2.2
-
APPS.JTF_IH_RESULT_REASONS_SEED_PUB dependencies on JTF_IH_RESULT_REASONS
12.2.2
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_RESULT_REASONS
12.2.2
-
APPS.AST_WRAPUP_ADM_PVT dependencies on JTF_IH_RESULT_REASONS
12.1.1
-
APPS.AST_WRAPUP_ADM_PVT dependencies on JTF_IH_RESULT_REASONS
12.2.2
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_RESULT_REASONS
12.1.1
-
APPS.JTF_IH_RESULT_REASONS_SEED_PUB dependencies on JTF_IH_RESULT_REASONS
12.1.1
-
APPS.AMS_LIST_ENTRIES_PVT dependencies on JTF_IH_RESULT_REASONS
12.1.1
-
APPS.JTF_IH_RESULT_REASONS_SEED_PUB SQL Statements
12.1.1
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_REASONS_B
12.2.2
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_REASONS_B
12.1.1
-
VIEW: JTF.JTF_IH_RESULT_REASONS#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_IH_RESULT_REASONS#, status:VALID,
-
SYNONYM: APPS.JTF_IH_RESULT_REASONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_IH_RESULT_REASONS, status:VALID,
-
APPS.JTF_IH_RESULT_REASONS_SEED_PUB SQL Statements
12.2.2
-
VIEW: JTF.JTF_IH_RESULT_REASONS#
12.2.2
-
VIEW: APPS.JTF_IH_RESULT_REASONS_VL
12.1.1
-
VIEW: APPS.JTF_IH_RESULT_REASONS_VL
12.2.2
-
SYNONYM: APPS.JTF_IH_RESULT_REASONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_IH_RESULT_REASONS, status:VALID,
-
PACKAGE BODY: APPS.JTF_IH_RESULT_REASONS_SEED_PUB
12.1.1
-
PACKAGE BODY: APPS.JTF_IH_RESULT_REASONS_SEED_PUB
12.2.2
-
View: JTF_IH_RESULT_REASONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_IH_RESULT_REASONS_VL, object_name:JTF_IH_RESULT_REASONS_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_IH_RESULT_REASONS_VL ,
-
View: JTF_IH_RESULT_REASONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_IH_RESULT_REASONS_VL, object_name:JTF_IH_RESULT_REASONS_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_IH_RESULT_REASONS_VL ,
-
TABLE: JTF.JTF_IH_RESULT_REASONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_RESULT_REASONS, object_name:JTF_IH_RESULT_REASONS, status:VALID,
-
TABLE: JTF.JTF_IH_RESULT_REASONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_RESULT_REASONS, object_name:JTF_IH_RESULT_REASONS, status:VALID,
-
Table: JTF_IH_RESULTS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_RESULTS_B, object_name:JTF_IH_RESULTS_B, status:VALID, product: JTF - CRM Foundation , description: The result of an interaction or an activity. Example: The interaction resulted in a sale. , implementation_dba_data: JTF.JTF_IH_RESULTS_B ,
-
Table: JTF_IH_RESULTS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_RESULTS_B, object_name:JTF_IH_RESULTS_B, status:VALID, product: JTF - CRM Foundation , description: The result of an interaction or an activity. Example: The interaction resulted in a sale. , implementation_dba_data: JTF.JTF_IH_RESULTS_B ,
-
Table: JTF_IH_REASONS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_REASONS_B, object_name:JTF_IH_REASONS_B, status:VALID, product: JTF - CRM Foundation , description: A reason for the result of an interaction or an activity. Example: The reason the interaction resulted in a no-sale was that the customer thought the product was too expensive. , implementation_dba_data: JTF.JTF_IH_REASONS_B ,
-
Table: JTF_IH_REASONS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_REASONS_B, object_name:JTF_IH_REASONS_B, status:VALID, product: JTF - CRM Foundation , description: A reason for the result of an interaction or an activity. Example: The reason the interaction resulted in a no-sale was that the customer thought the product was too expensive. , implementation_dba_data: JTF.JTF_IH_REASONS_B ,
-
PACKAGE BODY: APPS.JTF_IH_RESULT_REASONS_SEED_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_IH_RESULT_REASONS_SEED_PUB, status:VALID,
-
PACKAGE BODY: APPS.JTF_IH_RESULT_REASONS_SEED_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_IH_RESULT_REASONS_SEED_PUB, status:VALID,
-
PACKAGE BODY: APPS.AMS_LIST_ENTRIES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_LIST_ENTRIES_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_IH_TOOLS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_IH_TOOLS, status:VALID,
-
VIEW: APPS.JTF_IH_RESULT_REASONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_IH_RESULT_REASONS_VL, object_name:JTF_IH_RESULT_REASONS_VL, status:VALID,
-
PACKAGE BODY: APPS.AST_WRAPUP_ADM_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AST_WRAPUP_ADM_PVT, status:VALID,
-
PACKAGE BODY: APPS.AST_WRAPUP_ADM_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AST_WRAPUP_ADM_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_LIST_ENTRIES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_LIST_ENTRIES_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_IH_TOOLS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_IH_TOOLS, status:VALID,
-
VIEW: APPS.JTF_IH_RESULT_REASONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_IH_RESULT_REASONS_VL, object_name:JTF_IH_RESULT_REASONS_VL, status:VALID,
-
APPS.JTF_IH_RESULT_REASONS_SEED_PUB dependencies on FND_API
12.1.1
-
APPS.JTF_IH_RESULT_REASONS_SEED_PUB dependencies on FND_API
12.2.2
-
APPS.JTF_IH_TOOLS SQL Statements
12.2.2
-
APPS.JTF_IH_TOOLS SQL Statements
12.1.1
-
APPS.AST_WRAPUP_ADM_PVT SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.AST_WRAPUP_ADM_PVT SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2