Search Results ieu_uwq_svr_mps_plugins
Overview
IEU.IEU_UWQ_SVR_MPS_PLUGINS is a configuration table in the IEU (Universal Work Queue) product module of Oracle E-Business Suite, documented as VALID in both the 12.1.1 and 12.2.2 releases. Its description — "UWQ Server (Media Provider) Plugins" — indicates that the table registers server-side media provider plugin implementations that the Universal Work Queue uses to service work items originating from different communication channels. In EBS 12.1.1 and 12.2.2, UWQ provides the routing and assignment infrastructure that surfaces work items to agents in applications such as Telephony, Email Center, and Interaction Center; each media provider plugin is the Java class responsible for that channel's interaction with the UWQ server.
The ETRM metadata assigns a heuristic Data Vault classification of link. This is a modeling suggestion rather than a physical constraint: the table's foreign keys to FND_APPLICATION and IEO_SVR_TYPES_B make it a natural association between an application, a server type, and a plugin implementation, and it would typically be modeled as a link table connecting those business entities. The physical schema is owned by IEU and documents 12 columns.
Key Information Stored
The table's most significant columns, as documented in the ETRM 12.2.2 physical schema, are:
- SVR_MPS_PLUGIN_ID — surrogate primary key, enforced by
IEU_UWQ_SVR_MPS_PLUGINS_PK; also the first column of unique indexIEU_UWQ_SVR_MPS_PLUGINS_U1. - SVR_TYPE_ID — foreign key to
IEO_SVR_TYPES_B, identifying the UWQ server type to which the media provider plugin is bound; a business-key candidate via unique indexIEU_UWQ_SVR_MPS_PLUGINS_U2(SVR_TYPE_ID, ZD_EDITION_NAME). - SVR_PLUGIN_CLASS — the Java implementation class name that the UWQ server instantiates for this media provider plugin.
- APPLICATION_ID — foreign key to
FND_APPLICATION, scoping the plugin to a registered EBS application. - OBJECT_VERSION_NUMBER — optimistic locking column used by the OAF/BC4J middle tier.
- SECURITY_GROUP_ID — foreign key to
FND_SECURITY_GROUPS, supporting multi-organization security or partitioning of the plugin definition. - ZD_EDITION_NAME — editioning column introduced for Online Patching in EBS 12.2.2; it participates in both unique indexes and is absent from 12.1.1, where the equivalent uniqueness is enforced without it.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard EBS "Who" audit columns populated by concurrent programs and forms.
The 12.1.1 structure is functionally identical minus the editioning column, so SQL written against named columns rather than SELECT * ports cleanly between the two releases.
Common Use Cases and Queries
Typical uses center on diagnosing why a media channel fails to surface work items in UWQ, and on auditing which plugin class serves a given server type. A join to the server-type and application tables is the standard pattern:
SELECT p.SVR_MPS_PLUGIN_ID, st.SVR_TYPE_NAME, p.SVR_PLUGIN_CLASS, fa.APPLICATION_SHORT_NAME FROM IEU.UWQ_SVR_MPS_PLUGINS p, IEO.IEO_SVR_TYPES_B st, FND_APPLICATION fa WHERE p.SVR_TYPE_ID = st.SVR_TYPE_ID AND p.APPLICATION_ID = fa.APPLICATION_ID;- Locating the plugin for one channel: filter on
SVR_TYPE_IDor on a specificSVR_PLUGIN_CLASSvalue to confirm which implementation is registered. - Post-upgrade validation queries that compare
SVR_PLUGIN_CLASSvalues against the deployed Java classes to detect orphaned or obsolete registrations. - In 12.2.2, edition-aware reporting should filter or join on
ZD_EDITION_NAMEto avoid reading rows from inactive editions.
Related Objects
- IEO_SVR_TYPES_B — parent server-type definition; joined via
IEU_UWQ_SVR_MPS_PLUGINS.SVR_TYPE_ID → IEO_SVR_TYPES_B.SVR_TYPE_ID. - FND_APPLICATION — application registry; joined via
APPLICATION_ID. - FND_SECURITY_GROUPS — security group definition; joined via
SECURITY_GROUP_ID. - IEO_SVR_TYPES_TL — translation table for server-type names, useful in reporting joins.
- FND_APPLICATION_TL — translated application names for readable output.
- IEU_UWQ_SVR_MPS_PLUGINS_PK / _U1 / _U2 — the primary key and unique indexes that enforce the table's business keys.
-
Table: IEU_UWQ_SVR_MPS_PLUGINS
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_SVR_MPS_PLUGINS, object_name:IEU_UWQ_SVR_MPS_PLUGINS, status:VALID, product: IEU - Universal Work Queue , description: UWQ Server (Media Provider) Plugins , implementation_dba_data: IEU.IEU_UWQ_SVR_MPS_PLUGINS ,
-
Table: IEU_UWQ_SVR_MPS_PLUGINS
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_SVR_MPS_PLUGINS, object_name:IEU_UWQ_SVR_MPS_PLUGINS, status:VALID, product: IEU - Universal Work Queue , description: UWQ Server (Media Provider) Plugins , implementation_dba_data: IEU.IEU_UWQ_SVR_MPS_PLUGINS ,
-
VIEW: IEU.IEU_UWQ_SVR_MPS_PLUGINS#
12.2.2
owner:IEU, object_type:VIEW, object_name:IEU_UWQ_SVR_MPS_PLUGINS#, status:VALID,
-
TRIGGER: APPS.IEU_UWQ_SVR_MPS_PLUGINS+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IEU_UWQ_SVR_MPS_PLUGINS+, status:VALID,
-
VIEW: IEU.IEU_UWQ_SVR_MPS_PLUGINS#
12.2.2
-
SYNONYM: APPS.IEU_UWQ_SVR_MPS_PLUGINS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEU_UWQ_SVR_MPS_PLUGINS, status:VALID,
-
SYNONYM: APPS.IEU_UWQ_SVR_MPS_PLUGINS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEU_UWQ_SVR_MPS_PLUGINS, status:VALID,
-
TRIGGER: APPS.IEU_UWQ_SVR_MPS_PLUGINS+
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_PVT SQL Statements
12.1.1
-
TABLE: IEU.IEU_UWQ_SVR_MPS_PLUGINS
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_SVR_MPS_PLUGINS, object_name:IEU_UWQ_SVR_MPS_PLUGINS, status:VALID,
-
TABLE: IEU.IEU_UWQ_SVR_MPS_PLUGINS
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_SVR_MPS_PLUGINS, object_name:IEU_UWQ_SVR_MPS_PLUGINS, status:VALID,
-
APPS.IEU_UWQ_MEDIA_TYPES_PVT SQL Statements
12.2.2
-
FUNCTION: APPS.IEU_UWQ_SVR_MPS_PLUGINS=
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
FUNCTION: APPS.IEU_UWQ_SVR_MPS_PLUGINS=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IEU_UWQ_SVR_MPS_PLUGINS=, status:VALID,
-
Table: IEO_SVR_TYPES_B
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_TYPES_B, object_name:IEO_SVR_TYPES_B, status:VALID, product: IEO - Interaction Center Technology , description: Server Types (base table). , implementation_dba_data: IEO.IEO_SVR_TYPES_B ,
-
PACKAGE BODY: APPS.IEU_SEED_DATA_LOADER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_SEED_DATA_LOADER_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEU_UWQ_MEDIA_TYPES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_UWQ_MEDIA_TYPES_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: IEO_SVR_TYPES_B
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_TYPES_B, object_name:IEO_SVR_TYPES_B, status:VALID, product: IEO - Interaction Center Technology , description: Server Types (base table). , implementation_dba_data: IEO.IEO_SVR_TYPES_B ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_SEED_DATA_LOADER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_SEED_DATA_LOADER_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEU_UWQ_MEDIA_TYPES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_UWQ_MEDIA_TYPES_PVT, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IEU_UWQ_MEDIA_TYPES_PVT
12.2.2
-
Table: FND_APPLICATION
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_APPLICATION, object_name:FND_APPLICATION, status:VALID, product: FND - Application Object Library , description: Applications registered with Oracle Application Object Library , implementation_dba_data: APPLSYS.FND_APPLICATION ,
-
Table: FND_APPLICATION
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_APPLICATION, object_name:FND_APPLICATION, status:VALID, product: FND - Application Object Library , description: Applications registered with Oracle Application Object Library , implementation_dba_data: APPLSYS.FND_APPLICATION ,
-
PACKAGE BODY: APPS.IEU_UWQ_MEDIA_TYPES_PVT
12.1.1
-
APPS.IEU_SEED_DATA_LOADER_PKG SQL Statements
12.1.1
-
APPS.IEU_SEED_DATA_LOADER_PKG SQL Statements
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_PVT dependencies on IEU_UWQ_SVR_MPS_PLUGINS
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_PVT dependencies on IEU_UWQ_SVR_MPS_PLUGINS
12.1.1
-
APPS.IEU_SEED_DATA_LOADER_PKG dependencies on IEU_UWQ_SVR_MPS_PLUGINS
12.1.1
-
APPS.IEU_SEED_DATA_LOADER_PKG dependencies on IEU_UWQ_SVR_MPS_PLUGINS
12.2.2
-
PACKAGE BODY: APPS.IEU_SEED_DATA_LOADER_PKG
12.1.1
-
PACKAGE BODY: APPS.IEU_SEED_DATA_LOADER_PKG
12.2.2
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
12.2.2 DBA Data
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_PVT dependencies on IEU_UWQ_SVR_MPS_MMAPS
12.2.2
-
APPS.IEU_UWQ_MEDIA_TYPES_PVT dependencies on IEU_UWQ_SVR_MPS_MMAPS
12.1.1
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,