Search Results wait_time_to_abandon




Overview

BIX.BIX_SUM_AGT_CLS is a summary table owned by the BIX schema and stored in the APPS_TS_SUMMARY tablespace. It aggregates contact-center agent and interaction activity by classification and interval, and is populated by Oracle EBS interaction-center / telephony summary concurrent programs rather than by direct user entry. In Oracle EBS 12.1.1 and 12.2.2, it serves as a reporting and analytics substrate for contact-center performance metrics — abandonment, wait time, transfers, IVR handling, agent talk and wrap time, and service-request throughput — and is typically consumed by BI Publisher reports, Discoverer workbooks, and custom dashboards.

The ETRM classification flags this object as unstructured / standalone rather than as a strict Data Vault hub, link, or satellite. From a Data Vault modeling perspective, it may most usefully be treated as a satellite or aggregated fact-like structure keyed on a degenerate business key, because it does not participate in an extensive foreign-key network; only SECURITY_GROUP_ID resolves to FND_SECURITY_GROUPS. The primary key, BIX_SUM_AGT_CLS_PK, is defined on SUM_AGT_CLS_ID. Oracle marks this object Oracle Internal Use Only, and supported access is limited to standard Oracle Applications programs.

Key Information Stored

The table contains 43 documented columns. The most significant for reporting purposes are:

Common Use Cases and Queries

Typical uses include abandonment-rate reporting, average speed-of-answer analysis, IVR containment measurement, and agent/queue productivity trending. A representative abandonment query:

  • SELECT h.hour, h.interaction_center_id, SUM(abandoned_count), SUM(wait_time_to_abandon), ROUND(SUM(wait_time_to_abandon)/NULLIF(SUM(abandoned_count),0),2) avg_wait_to_abandon FROM bix.bix_sum_agt_cls s, ... WHERE security_group_id = :p_org GROUP BY h.hour, h.interaction_center_id ORDER BY h.hour
  • Joining to FND_SECURITY_GROUPS on SECURITY_GROUP_ID to enforce the operating-unit security profile.
  • Grouping by INTERACTION_TYPE, MEDIA_ITEM_TYPE, or RESOURCE_GROUP_ID to compare channels and teams over an HOUR-level time dimension.
  • IVR containment ratio: INTERACTIONS_HANDLED_BY_IVR / (INTERACTIONS_HANDLED_BY_IVR + INTERACTIONS_ANSWERED_LIVE).
  • First-contact-resolution rate: FIRST_INTERACTION_RESOLN_COUNT / SERVICE_REQUEST_COUNT.

Because the table is Oracle Internal Use Only, queries should be restricted to reporting and read-only analytics, not transactional writes.

Related Objects

  • FND_SECURITY_GROUPS — referenced by SECURITY_GROUP_ID; constrains visible rows by operating-unit security.
  • CCT_CALL_CENTER — source of INTERACTION_CENTER_ID; provides call-center attributes for joins.
  • BIX_SUM_AGT_CLS_N1 — nonunique index on HOUR supporting time-interval reporting.
  • BIX_SUM_AGT_CLS_PK — primary-key constraint on SUM_AGT_CLS_ID.
  • BIX summary ETL programs — concurrent programs that populate this table from interaction-center staging and fact tables.
  • BI Publisher / Discoverer report definitions and custom dashboards that consume the summarized metrics.