Search Results iem_email_classifications_uk
Overview
The IEM_EMAIL_CLASSIFICATIONS table is a core data object within the Oracle E-Business Suite (EBS) Email Center (IEM) module. It functions as a persistent store for the automated or agent-assigned classifications of inbound and outbound email messages processed by the system. Its primary role is to maintain a historical record of the top-ranked classifications for each email, enabling intelligent routing, workflow automation, performance reporting, and analytical insights into email correspondence patterns. By linking messages to specific classification categories, this table is fundamental to the operational logic of the Email Center, allowing for rules-based assignment and categorization that drives business process efficiency.
Key Information Stored
The table's structure is designed to uniquely associate an email message with one or more classification codes. As defined by its primary key (IEM_EMAIL_CLASSIFICATIONS_UK), the critical columns are MESSAGE_ID, EMAIL_ACCOUNT_ID, and CLASSIFICATION_ID. The MESSAGE_ID and EMAIL_ACCOUNT_ID together uniquely identify the specific email within the system. The CLASSIFICATION_ID is a foreign key that references the IEM_CLASSIFICATIONS table, storing the identifier for the assigned category (e.g., "Sales Inquiry," "Service Request," "Complaint"). While the provided metadata does not list additional columns, typical implementations may include columns for a confidence score (if assigned by an automated classifier), a ranking order for multiple classifications, and standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, etc.) for auditing.
Common Use Cases and Queries
This table is central to reporting and operational analysis within the Email Center. Common use cases include generating volume reports by classification type to measure team workload, analyzing trends in customer inquiry topics, and auditing the accuracy of automated classification engines. A fundamental query retrieves all classifications for a specific email for agent review or workflow triggering. For reporting, a typical SQL pattern joins this table to IEM_CLASSIFICATIONS for descriptive text and to message header tables for date filtering.
- Sample Query: Count Emails by Classification
SELECT cl.classification_name, COUNT(*) AS email_count FROM iem_email_classifications ec, iem_classifications cl WHERE ec.classification_id = cl.classification_id AND ec.creation_date > SYSDATE - 30 GROUP BY cl.classification_name ORDER BY email_count DESC; - Sample Query: Find All Classifications for a Message
SELECT cl.* FROM iem_email_classifications ec, iem_classifications cl WHERE ec.message_id = :p_message_id AND ec.email_account_id = :p_account_id AND ec.classification_id = cl.classification_id ORDER BY ec.rank; -- assuming a RANK column exists
Related Objects
The IEM_EMAIL_CLASSIFICATIONS table exists within a tightly integrated schema. Its integrity is maintained through foreign key relationships, as documented. It directly references the IEM_CLASSIFICATIONS table to resolve classification IDs into meaningful names and descriptions. It also references the IEM_EMAIL_ACCOUNTS table, which defines the configured email accounts within the EBS system. This table is likely a child of a core email message entity, such as IEM_EMAIL_MESSAGES or a similar table holding the message header and body, though that specific relationship is not detailed in the provided excerpt. Any custom reports, business intelligence extracts, or data migration scripts involving email categorization will inherently depend on this table.
-
Table: IEM_EMAIL_CLASSIFICATIONS
12.2.2
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_EMAIL_CLASSIFICATIONS, object_name:IEM_EMAIL_CLASSIFICATIONS, status:VALID, product: IEM - Email Center , description: List of top n classifications for every email message. , implementation_dba_data: IEM.IEM_EMAIL_CLASSIFICATIONS ,
-
Table: IEM_EMAIL_CLASSIFICATIONS
12.1.1
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_EMAIL_CLASSIFICATIONS, object_name:IEM_EMAIL_CLASSIFICATIONS, status:VALID, product: IEM - Email Center , description: List of top n classifications for every email message. , implementation_dba_data: IEM.IEM_EMAIL_CLASSIFICATIONS ,