Search Results iem_classifications
Overview
The IEM_CLASSIFICATIONS table is a core data object within the Oracle E-Business Suite (EBS) Email Center (IEM) module. It functions as the master repository for defining and managing email classifications. In the context of customer service and support operations, classifications are used to categorize inbound and outbound email interactions, enabling systematic routing, tracking, and reporting. The table establishes a critical link between a logical classification name and a specific email account configured within the system, thereby governing how emails are organized and processed.
Key Information Stored
The table's primary function is to store the unique pairing of a classification to an email account. Its key columns, as defined by its primary and unique keys, are:
- CLASSIFICATION_ID: The system-generated primary key (PK) that uniquely identifies each classification record.
- EMAIL_ACCOUNT_ID: A foreign key referencing the IEM_EMAIL_ACCOUNTS table. This links the classification to a specific configured email account from which emails are retrieved or to which they are sent.
- CLASSIFICATION: The name or label for the classification (e.g., "Sales Inquiry," "Technical Support," "Billing Question"). This, combined with EMAIL_ACCOUNT_ID, forms a unique constraint (UK).
This structure ensures that within a given email account, classification names are unique, while the same classification name can be reused across different accounts.
Common Use Cases and Queries
This table is central to operations involving email categorization and reporting. Administrators use it to set up and maintain the classification schema. Common technical use cases include generating reports on email volume by classification and joining to transactional data for service analysis. Sample SQL patterns include retrieving all classifications for a specific account or listing classifications with their associated account details:
- Basic Lookup:
SELECT classification_id, classification FROM iem_classifications WHERE email_account_id = <account_id>; - Joined Report Query:
SELECT ic.classification, iea.account_name, COUNT(iec.email_id) FROM iem_classifications ic, iem_email_accounts iea, iem_email_classifications iec WHERE ic.email_account_id = iea.email_account_id AND ic.classification_id = iec.classification_id GROUP BY ic.classification, iea.account_name;
Such queries are foundational for building custom reports on support agent workload, email trend analysis, and classification effectiveness.
Related Objects
As indicated by its foreign key relationships, the IEM_CLASSIFICATIONS table is a parent to several key transactional and setup tables within the Email Center, highlighting its integrative role:
- IEM_EMAIL_ACCOUNTS: The parent table referenced by EMAIL_ACCOUNT_ID. This defines the email server configuration.
- IEM_EMAIL_CLASSIFICATIONS: A transactional table that applies a classification from this master list to individual email messages.
- IEM_KB_RESULTS and IEM_THEMES: These tables reference the classification, linking knowledge base search results and analytical themes to the email categorization structure.
Consequently, the CLASSIFICATION_ID is a vital foreign key propagated throughout the module to maintain data integrity and enable comprehensive tracking of email interactions against their assigned categories.
-
Table: IEM_CLASSIFICATIONS
12.1.1
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_CLASSIFICATIONS, object_name:IEM_CLASSIFICATIONS, status:VALID, product: IEM - Email Center , description: List of all classification names and corresponding email accounts. , implementation_dba_data: IEM.IEM_CLASSIFICATIONS ,
-
Table: IEM_CLASSIFICATIONS
12.2.2
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_CLASSIFICATIONS, object_name:IEM_CLASSIFICATIONS, status:VALID, product: IEM - Email Center , description: List of all classification names and corresponding email accounts. , implementation_dba_data: IEM.IEM_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 ,
-
Table: IEM_EMAIL_ACCOUNTS
12.2.2
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_EMAIL_ACCOUNTS, object_name:IEM_EMAIL_ACCOUNTS, status:VALID, product: IEM - Email Center , description: List of all eMC email accounts. , implementation_dba_data: IEM.IEM_EMAIL_ACCOUNTS ,
-
Table: IEM_KB_RESULTS
12.1.1
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_KB_RESULTS, object_name:IEM_KB_RESULTS, status:VALID, product: IEM - Email Center , description: Search results from various knowledge base categories per email message. , implementation_dba_data: IEM.IEM_KB_RESULTS ,
-
Table: IEM_THEMES
12.2.2
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_THEMES, object_name:IEM_THEMES, status:VALID, product: IEM - Email Center , description: List of themes per classification. , implementation_dba_data: IEM.IEM_THEMES ,
-
Table: IEM_KB_RESULTS
12.2.2
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_KB_RESULTS, object_name:IEM_KB_RESULTS, status:VALID, product: IEM - Email Center , description: Search results from various knowledge base categories per email message. , implementation_dba_data: IEM.IEM_KB_RESULTS ,
-
Table: IEM_EMAIL_ACCOUNTS
12.1.1
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_EMAIL_ACCOUNTS, object_name:IEM_EMAIL_ACCOUNTS, status:VALID, product: IEM - Email Center , description: List of all eMC email accounts. , implementation_dba_data: IEM.IEM_EMAIL_ACCOUNTS ,
-
Table: IEM_THEMES
12.1.1
owner:IEM, object_type:TABLE, fnd_design_data:IEM.IEM_THEMES, object_name:IEM_THEMES, status:VALID, product: IEM - Email Center , description: List of themes per classification. , implementation_dba_data: IEM.IEM_THEMES ,
-
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 ,