Search Results jtf_ih_wrap_ups
Overview
The JTF_IH_WRAP_UPS table is a core data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 releases, specifically for the Interaction History module (JTF_IH) under the CRM Foundation (JTF). Its primary role is to standardize and store the contextual metadata required to finalize, or "wrap up," a customer interaction record. When an application logs an interaction—such as a service request, a call, or a marketing activity—it must provide specific qualifying information to give the interaction proper business context. This table serves as the central repository for that mandatory wrap-up data, ensuring consistency and completeness for downstream reporting and analysis of customer touchpoints across the CRM suite.
Key Information Stored
The table's structure is designed to capture the outcome and categorization of an interaction through foreign key relationships to standard code sets. The primary key is the WRAP_ID, a unique system-generated identifier for each wrap-up record. The most critical columns are foreign keys that link to master tables defining permissible values. These include OUTCOME_ID (linking to JTF_IH_OUTCOMES_B), which classifies the final status of the interaction (e.g., Resolved, Pending). The REASON_ID (JTF_IH_REASONS_B) and RESULT_ID (JTF_IH_RESULTS_B) provide further granularity on why an outcome occurred and the specific result achieved. The ACTION_ACTIVITY_ID (JTF_IH_ACTIVITIES) can link to a follow-up task. Finally, SOURCE_CODE_ID and SOURCE_CODE (both referencing AMS_SOURCE_CODES) identify the origin or campaign associated with the interaction.
Common Use Cases and Queries
A primary use case is generating interaction history reports that analyze agent performance or customer issue resolution trends. For instance, a report might summarize the count of interactions by their outcome and reason. A typical query would join JTF_IH_WRAP_UPS to the interaction header table (JTF_IH_INTERACTIONS) and the referenced code tables. Developers implementing custom integrations that create interaction records must populate this table correctly. A common SQL pattern retrieves wrap-up details for a specific interaction or a set of interactions within a date range, joining to the descriptive columns in the referenced "_B" tables.
SELECT i.interaction_id, w.wrap_id, o.name outcome, r.name reason
FROM jtf_ih_interactions i,
jtf_ih_wrap_ups w,
jtf_ih_outcomes_tl o,
jtf_ih_reasons_tl r
WHERE i.interaction_id = w.interaction_id
AND w.outcome_id = o.outcome_id
AND w.reason_id = r.reason_id
AND o.language = USERENV('LANG')
AND r.language = USERENV('LANG');
Related Objects
The JTF_IH_WRAP_UPS table maintains integral relationships with several master code tables and the activity table, as documented in the ETRM metadata. The following are the key foreign key dependencies:
- AMS_SOURCE_CODES: Joined via
JTF_IH_WRAP_UPS.SOURCE_CODE_IDandJTF_IH_WRAP_UPS.SOURCE_CODEto identify the interaction source. - JTF_IH_OUTCOMES_B: Joined via
JTF_IH_WRAP_UPS.OUTCOME_IDfor the interaction outcome. - JTF_IH_REASONS_B: Joined via
JTF_IH_WRAP_UPS.REASON_IDfor the outcome reason. - JTF_IH_RESULTS_B: Joined via
JTF_IH_WRAP_UPS.RESULT_IDfor the interaction result. - JTF_IH_ACTIVITIES: Joined via
JTF_IH_WRAP_UPS.ACTION_ACTIVITY_IDto link a follow-up activity.
This table is typically a child of the main interaction header table, JTF_IH_INTERACTIONS, though that specific relationship is not listed in the provided metadata excerpt.
-
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_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 ,
-
APPS.AST_CAMP_OUTCOME_PVT dependencies on JTF_IH_WRAP_UPS
12.2.2
-
APPS.IEM_REROUTE_PUB dependencies on JTF_IH_WRAP_UPS
12.2.2
-
APPS.IEM_REROUTE_PUB dependencies on JTF_IH_WRAP_UPS
12.1.1
-
APPS.IEM_EMAIL_PROC_PVT dependencies on JTF_IH_WRAP_UPS
12.1.1
-
APPS.AST_CAMP_OUTCOME_PVT dependencies on JTF_IH_WRAP_UPS
12.1.1
-
APPS.IEM_SPV_ACTIONS_PVT dependencies on JTF_IH_WRAP_UPS
12.1.1
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_WRAP_UPS
12.1.1
-
APPS.JTF_IH_WRAP_UPS_SEED_PUB dependencies on JTF_IH_WRAP_UPS
12.1.1
-
APPS.IEM_EMAIL_PROC_PVT dependencies on JTF_IH_WRAP_UPS
12.2.2
-
APPS.JTF_IH_WRAP_UPS_SEED_PUB dependencies on JTF_IH_WRAP_UPS
12.2.2
-
APPS.IEM_SPV_ACTIONS_PVT dependencies on JTF_IH_WRAP_UPS
12.2.2
-
APPS.JTF_IH_TOOLS dependencies on JTF_IH_WRAP_UPS
12.2.2
-
APPS.IEM_EMAIL_PROC_PVT dependencies on JTF_IH_ACTION_ACTION_ITEMS
12.1.1
-
APPS.IEM_EMAIL_PROC_PVT dependencies on JTF_IH_ACTION_ACTION_ITEMS
12.2.2
-
APPS.IEM_SPV_ACTIONS_PVT dependencies on JTF_IH_ACTION_ACTION_ITEMS
12.1.1
-
APPS.IEM_SPV_ACTIONS_PVT dependencies on JTF_IH_ACTION_ACTION_ITEMS
12.2.2
-
APPS.AST_CAMP_OUTCOME_PVT SQL Statements
12.1.1
-
APPS.AST_CAMP_OUTCOME_PVT SQL Statements
12.2.2
-
VIEW: JTF.JTF_IH_WRAP_UPS#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_IH_WRAP_UPS#, status:VALID,
-
APPS.JTF_IH_WRAP_UPS_SEED_PUB SQL Statements
12.2.2
-
APPS.IEM_REROUTE_PUB dependencies on JTF_IH_ACTION_ACTION_ITEMS
12.2.2
-
APPS.IEM_REROUTE_PUB dependencies on JTF_IH_ACTION_ACTION_ITEMS
12.1.1
-
TRIGGER: APPS.JTF_IH_WRAP_UPS+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_IH_WRAP_UPS+, status:VALID,
-
APPS.JTF_IH_WRAP_UPS_SEED_PUB SQL Statements
12.1.1
-
SYNONYM: APPS.JTF_IH_WRAP_UPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_IH_WRAP_UPS, status:VALID,
-
Table: AMS_SOURCE_CODES
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_SOURCE_CODES, object_name:AMS_SOURCE_CODES, status:VALID, product: AMS - Marketing , description: This table records the source codes for all objects in the system. , implementation_dba_data: AMS.AMS_SOURCE_CODES ,
-
Table: AMS_SOURCE_CODES
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_SOURCE_CODES, object_name:AMS_SOURCE_CODES, status:VALID, product: AMS - Marketing , description: This table records the source codes for all objects in the system. , implementation_dba_data: AMS.AMS_SOURCE_CODES ,
-
VIEW: APPS.JTF_IH_ACTIVE_WRAP_UPS_VL
12.1.1
-
TRIGGER: APPS.JTF_IH_WRAP_UPS+
12.2.2
-
APPS.JTF_IH_WRAP_UPS_SEED_PUB dependencies on JTF_IH_ACTION_ACTION_ITEMS
12.2.2
-
SYNONYM: APPS.JTF_IH_WRAP_UPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_IH_WRAP_UPS, status:VALID,
-
VIEW: APPS.JTF_IH_ACTIVE_WRAP_UPS_VL
12.2.2
-
VIEW: APPS.JTF_IH_WRAPUP_REASONS_VL
12.1.1
-
VIEW: APPS.JTF_IH_WRAPUP_RESULTS_VL
12.1.1
-
VIEW: APPS.JTF_IH_WRAPUP_RESULTS_VL
12.2.2
-
VIEW: JTF.JTF_IH_WRAP_UPS#
12.2.2
-
APPS.JTF_IH_TOOLS SQL Statements
12.1.1
-
VIEW: APPS.JTF_IH_WRAPUP_OUTCOMES_VL
12.2.2
-
VIEW: APPS.JTF_IH_WRAPUP_REASONS_VL
12.2.2
-
VIEW: APPS.JTF_IH_WRAPUP_OUTCOMES_VL
12.1.1
-
APPS.JTF_IH_WRAP_UPS_SEED_PUB dependencies on JTF_IH_ACTION_ACTION_ITEMS
12.1.1
-
APPS.JTF_IH_TOOLS SQL Statements
12.2.2
-
VIEW: APPS.JTF_IH_WRAP_UPS_VL
12.2.2
-
VIEW: APPS.JTF_IH_WRAP_UPS_VL
12.1.1
-
FUNCTION: APPS.JTF_IH_WRAP_UPS=
12.2.2
-
APPS.AST_CAMP_OUTCOME_PVT dependencies on DUAL
12.2.2
-
APPS.AST_CAMP_OUTCOME_PVT dependencies on JTF_IH_WRAP_UPS_S1
12.1.1
-
APPS.AST_CAMP_OUTCOME_PVT dependencies on DUAL
12.1.1