Search Results wrap_time
Overview
The table BIX.BIX_SUM_AGENT is a summary (aggregate) table within the Oracle E-Business Suite 12.1.1 / 12.2.2 data model, owned by the BIX schema and stored in the APPS_TS_SUMMARY tablespace. Its name—combining the BIX application prefix, the "SUM" summary indicator, and the "AGENT" business subject—signals a pre-aggregated analytical store of agent-level interaction center metrics. In the telephony and interaction-center reporting stack, this object consolidates detail captured in transactional call and agent-state tables into pre-computed daily percentages and durations, reducing query cost for dashboards and operational reports.
Heuristically, the Data Vault classification of this object suggests a satellite pattern rather than a hub or link. As a summary of a single business subject (an agent-resource within an interaction center on a given day), it captures descriptive and quantitative measures whose keys—INTERACTION_CENTER_ID, RESOURCE_ID, and DAY—are effectively business keys owned elsewhere in the model. The table has no documented foreign key relationship to itself or other summary objects; its sole documented FK points to FND_SECURITY_GROUPS, confirming that it carries context rather than a true hub or associative link role.
Key Information Stored
BIX_SUM_AGENT contains 10 documented columns. The following are the most operationally significant:
- INTERACTION_CENTER_ID — identifier of the interaction center (queue or contact center) against which the agent's daily activity was recorded. Indexed via BIX_CENTER_N1.
- RESOURCE_ID — identifier of the agent/resource being summarized. Indexed via BIX_RESOURCE_N1.
- DAY — the reporting date on which the summarized measurements were accumulated. Indexed via BIX_DAY_N1.
- TALK_TIME — aggregate conversation/communication time for the agent on that day.
- AVAILABLE_TIME — total time the agent was available to take interactions.
- WRAP_TIME — total after-call work or "wrap" time recorded for the agent. This is the column most directly associated with the user's search term.
- IDLE_TIME — aggregate idle time accumulated by the agent.
- LOGGED_IN_TIME — total logged-in duration for the agent.
- CALLS_ANSWERED — count of calls answered by the agent.
- SECURITY_GROUP_ID — security group context used to constrain data access; documented as a foreign key to FND_SECURITY_GROUPS.
The table does not expose a documented single surrogate primary key in the metadata; the effective business key candidates are the compound (INTERACTION_CENTER_ID, RESOURCE_ID, DAY), supported by three non-unique normal indexes created in APPS_TS_SUMMARY.
Common Use Cases and Queries
BIX_SUM_AGENT is typically used for agent productivity reporting, contact-center KPI dashboards, and time-allocation ratio analysis (for example, the proportion of logged-in time spent in TALK_TIME versus WRAP_TIME versus IDLE_TIME). A representative query pattern is:
SELECT DAY, RESOURCE_ID, TALK_TIME, WRAP_TIME, CALLS_ANSWERED FROM BIX.BIX_SUM_AGENT WHERE INTERACTION_CENTER_ID = :center AND DAY BETWEEN :from_date AND :to_date ORDER BY DAY, RESOURCE_ID;
Because WRAP_TIME is a stored measure, "wrap ratio" reporting—WRAP_TIME divided by LOGGED_IN_TIME—can be computed directly without drilling into raw interaction detail, which is the primary performance benefit of a summary table. Access must be restricted to Oracle Applications programs and appropriate security-group context, as indicated by the standard "Oracle Internal Use Only" notice.
Related Objects
The documented dependency section states that BIX_SUM_AGENT does not reference any database objects, and is referenced only by the APPS synonym BIX_SUM_AGENT. Its sole documented FK is SECURITY_GROUP_ID to FND_SECURITY_GROUPS. Related objects to consider include FND_SECURITY_GROUPS (join column: SECURITY_GROUP_ID) for access control, and the underlying base agent/interaction detail tables that load this summary, which are not enumerated in the provided metadata.
-
APPS.BIX_AGT_COLLECT SQL Statements
12.1.1
-
APPS.BIX_CCI_COLLECT SQL Statements
12.1.1
-
APPS.BIX_SUMMARY_PUB SQL Statements
12.1.1
-
TABLE: BIX.BIX_SUM_AGENT
12.1.1
owner:BIX, object_type:TABLE, fnd_design_data:BIX.BIX_SUM_AGENT, object_name:BIX_SUM_AGENT, status:VALID,
-
TABLE: BIX.BIX_DM_AO_SUM
12.1.1
owner:BIX, object_type:TABLE, object_name:BIX_DM_AO_SUM, status:VALID,
-
PACKAGE BODY: APPS.BIX_AGT_COLLECT
12.1.1
-
TABLE: BIX.BIX_DM_ADVANCED_OUTBOUND_SUM
12.1.1
owner:BIX, object_type:TABLE, object_name:BIX_DM_ADVANCED_OUTBOUND_SUM, status:VALID,
-
PACKAGE BODY: APPS.BIX_SUMMARY_PUB
12.1.1
-
TABLE: BIX.BIX_SERVER_MCM
12.1.1
owner:BIX, object_type:TABLE, fnd_design_data:BIX.BIX_SERVER_MCM, object_name:BIX_SERVER_MCM, status:VALID,
-
TABLE: BIX.BIX_SUM_GRP_PRD_OUT
12.1.1
owner:BIX, object_type:TABLE, fnd_design_data:BIX.BIX_SUM_GRP_PRD_OUT, object_name:BIX_SUM_GRP_PRD_OUT, status:VALID,
-
TABLE: BIX.BIX_SUM_GRP_CLS
12.1.1
owner:BIX, object_type:TABLE, fnd_design_data:BIX.BIX_SUM_GRP_CLS, object_name:BIX_SUM_GRP_CLS, status:VALID,
-
TABLE: BIX.BIX_INTERACTIONS
12.1.1
owner:BIX, object_type:TABLE, fnd_design_data:BIX.BIX_INTERACTIONS, object_name:BIX_INTERACTIONS, status:VALID,
-
TABLE: BIX.BIX_SUM_AGT_CLS
12.1.1
owner:BIX, object_type:TABLE, fnd_design_data:BIX.BIX_SUM_AGT_CLS, object_name:BIX_SUM_AGT_CLS, status:VALID,
-
APPS.BIX_POP_AO_SUM_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BIX_CCI_COLLECT
12.1.1
-
PACKAGE BODY: APPS.BIX_POP_AO_SUM_PKG
12.1.1
-
APPS.CCT_SERVERDATAINPUT_PUB SQL Statements
12.1.1
-
APPS.CCT_SERVERDATAINPUT_PUB SQL Statements
12.2.2
-
Lookup Type: CCT_DYNAMIC_REPORTS
12.1.1
product: CCT - Telephony Manager , meaning: CCT_DYNAMIC_REPORTS , description: Dynamic Reports keys ,
-
Lookup Type: CCT_DYNAMIC_REPORTS
12.2.2
product: CCT - Telephony Manager , meaning: CCT_DYNAMIC_REPORTS , description: Dynamic Reports keys ,
-
eTRM - BIX Tables and Views
12.1.1
-
APPS.BIX_AGT_COLLECT dependencies on BIX_INTERACTIONS
12.1.1
-
APPS.BIX_AGT_COLLECT dependencies on IEU_SH_ACTIVITIES
12.1.1
-
APPS.BIX_POP_AO_SUM_PKG dependencies on BIX_DM_ADVANCED_OUTBOUND_SUM
12.1.1
-
APPS.BIX_CCI_COLLECT dependencies on JTF_IH_INTERACTIONS
12.1.1
-
APPS.BIX_CCI_COLLECT dependencies on JTF_IH_MEDIA_ITEM_LC_SEGS
12.1.1
-
APPS.BIX_CCI_COLLECT dependencies on JTF_IH_MEDIA_ITM_LC_SEG_TYS
12.1.1
-
APPS.CCT_SERVERDATAINPUT_PUB dependencies on BIX_SERVER_CP_S
12.1.1
-
APPS.CCT_SERVERDATAINPUT_PUB dependencies on BIX_SERVER_CP
12.1.1
-
APPS.BIX_AGT_COLLECT dependencies on IEU_SH_SESSIONS
12.1.1
-
PACKAGE BODY: APPS.CCT_SERVERDATAINPUT_PUB
12.1.1
-
PACKAGE BODY: APPS.CCT_SERVERDATAINPUT_PUB
12.2.2