Search Results bix_server_mcm_pk




Overview

The table BIX_SERVER_MCM, owned by the schema BIX (Interaction Center Intelligence), is a core data repository within Oracle E-Business Suite Release 12.1.1 and 12.2.2 for storing consolidated operational metrics from the Multi-Channel Manager (MCM). As part of the BIX module—a dedicated environment for interaction center analytics—this table aggregates raw interaction data from the MCM and organizes it by interaction classification. The MCM component is responsible for routing, tracking, and managing customer interactions across channels such as voice, email, and chat. The BIX_SERVER_MCM table transforms that high-volume transactional data into a structured, classification-based format suitable for analytical reporting. It serves as a source for dashboards and trend analyses that help interaction center managers assess agent performance, queue efficiency, and service levels. The table is designed to support historical reporting rather than real-time operational queries, and its data is typically loaded and refreshed by the BIX data collection processes.

Key Information Stored

The table is uniquely identified by its primary key, BIX_SERVER_MCM_PK, which is built on the column SERVER_MCM_ID. This key serves as the definitive reference for each record and is critical for all joins and lookups. Based on the documented description "Records data from the MCM, grouped by interaction classification," the schema logically includes attributes to define the interaction classification (such as CLASSIFICATION or CLASSIFICATION_ID), metrics or aggregated counts that summarize interactions within that classification, and foreign key references to source transaction tables or dimension tables like BIX_INTERACTION_SERVER. The primary key column acts as the surrogate identifier for each unique grouping of MCM data. Other likely important columns in the physical table include date/time stamps for the reporting period, server identifiers, and numeric statistics such as total contacts, average handle time, and queue wait times. The "server" designation in the table name and column SERVER_MCM_ID suggests a linkage to the physical or logical MCM server instance that processed the interactions.

Common Use Cases and Queries

The most frequent use case for BIX_SERVER_MCM is generating summary reports on interaction center activity. Analysts commonly query this table to compute aggregate service metrics—for instance, total interactions handled, average speed of answer, and abandonment rates—filtered by classification over specific date ranges. A sample query pattern to retrieve such data would be:

SELECT classification, COUNT(*), AVG(handle_time_sec)
FROM BIX.BIX_SERVER_MCM
WHERE server_date BETWEEN '01-JAN-2024' AND '31-JAN-2024'
GROUP BY classification;

Another common pattern is joining the table with the classification dimension table to retrieve descriptive labels. The table is also used in disparity or trend analyses, comparing interaction counts and service metrics between MCM servers or across time periods. Because the data is already grouped by classification, this table reduces the overhead of scanning the detailed interaction transaction tables, making it ideal for dashboard backends and scheduled report generation. The SERVER_MCM_ID column is indispensable when performing point lookups on specific administrative events or when debugging data loading issues.

Related Objects

Based on the ETRM metadata, the documented relationship for BIX_SERVER_MCM is:

  • Primary Key Constraint: BIX_SERVER_MCM_PK on column SERVER_MCM_ID — ensures uniqueness of each record within this table.

Although additional foreign key relationships are not explicitly detailed in the provided metadata, by its nature in the BIX schema, this table is related to:

  • BIX_INTERACTION_SERVER (or similar BIX staging table): Likely joined on a server identifier column to source the raw interaction data before classification grouping.
  • BIX_CLASSIFICATION Lookup Table: Provides descriptive labels for the classification column stored in this table.
  • HZ_PARTIES (Customer Schema): May be referenced indirectly through the interaction server data flow to link interactions to party records.
  • MCM Transaction Tables (e.g., AS_SESSION_* or AS_ACTIVITY_*): The source systems under the AS (Service) schema that feed the BIX ETL processes.