Search Results first_interaction_resoln_count




Overview

BIX.BIX_SUM_GRP_PRD_OUT is a summary table in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 release levels, owned by the BIX schema and registered in FND Design Data as BIX.BIX_SUM_GRP_PRD_OUT. It resides in the APPS_TS_SUMMARY tablespace, is marked VALID, and carries the Oracle Internal Use Only restriction, meaning it must not be queried or modified directly except through standard Oracle Applications programs such as the Interaction Center intelligence collection and reporting components.

The table stores pre-aggregated interaction center performance metrics, organized by product group, resource group, interaction center, campaign, outcome, and hour. Its granularity is summarised performance per reporting hour, which makes it the primary source for contact center dashboards, agent and group productivity reporting, and campaign effectiveness analysis. The heuristic Data Vault classification mined from the foreign key structure is standalone; no classic hub, link, or satellite pattern applies, although in a modeling sense this object behaves as a daily/hourly performance satellite keyed by a surrogate identifier.

Key Information Stored

The surrogate primary key is SUM_GRP_PRD_OUT_ID, enforced through BIX_SUM_GRP_PRD_OUT_PK. The remaining columns represent the business payload of each summarised record, including:

Common Use Cases and Queries

Typical usage is reporting first-interaction resolution, service level adherence, and sales performance by product group. A representative query pattern groups the summary rows by product group and hour:

  • SELECT hour, product_group_id, SUM(first_interaction_resoln_count), SUM(service_request_count) FROM bix.bix_sum_grp_prd_out GROUP BY hour, product_group_id;
  • First-contact-resolution rate: first_interaction_resoln_count / NULLIF(contacts,0) grouped by interaction_center_id.
  • Average handling time from (talk_time + wrap_time) / NULLIF(contacts,0).
  • Revenue and lead attribution by campaign: SUM(sales_revenue), SUM(leads_generated) GROUP BY campaign_id.
  • Trend analysis using the hour index for range scans across days or shifts.

All direct access should be through supported BIX collection and reporting programs; ad hoc SQL is acceptable for prototyping but not as an integration interface.

Related Objects

  • FND_PRODUCT_GROUPS — joined via PRODUCT_GROUP_ID.
  • FND_SECURITY_GROUPS — joined via SECURITY_GROUP_ID for row-level security.
  • CCT_CALL_CENTER — source of INTERACTION_CENTER_ID and the telephony metrics.
  • BIX_SUM_GRP_PRD_OUT_PK / BIX_SUM_GRP_PRD_OUT_N1 — primary key and the non-unique HOUR index used for time-based access paths.
  • BIX collection and summary programs — the supported processes that populate and maintain this table.