Search Results ieo_svr_comps
Overview
IEO_SVR_COMPS is a table in the IEO schema (Interaction Center Technology product family) within Oracle E-Business Suite 12.1.1 and 12.2.2. It stores server component definitions — the individual deployable components that make up an Interaction Center server instance (for example, telephony, media, or application service processes registered against a server). It is not a transactional or high-volume table; it is configuration/reference data that describes how an Interaction Center server is composed from defined component types.
From a dimensional modeling perspective, the mined FK structure classifies this table as satellite-leaning. In Data Vault terms this suggests IEO_SVR_COMPS behaves as a satellite attached to its hub parents, IEO_SVR_SERVERS and IEO_SVR_COMP_DEFS, rather than acting as an independent hub. It carries descriptive and versioning attributes (COMP_NAME, OBJECT_VERSION_NUMBER, SECURITY_GROUP_ID) that are subordinate to those parent entities.
Key Information Stored
The table contains 7 documented columns. The most important are:
- COMP_ID — the surrogate primary key (IEO_SVR_COMPS_PK), uniquely identifying each server-component row. Also exposed as a unique index (IEO_SVR_COMPS_U1) and the business-key candidate in the documented schema.
- SERVER_ID — foreign key to IEO_SVR_SERVERS, identifying the parent server. Part of the unique key IEO_SVR_COMPS_UK1.
- COMP_DEF_ID — foreign key to IEO_SVR_COMP_DEFS, identifying the reusable component definition. Also part of IEO_SVR_COMPS_UK1.
- COMP_NAME — the component's name, an alternate descriptive business-key candidate (documented in IEO_SVR_COMPS_UK1).
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, enforcing multi-org / data-security partitioning.
- OBJECT_VERSION_NUMBER — the standard EBS optimistic-concurrency / row-versioning column.
- OBJECT_REF — a reference pointer associated with the component object, indicating whether the component is backed by a stored object definition.
The unique key IEO_SVR_COMPS_UK1 (SERVER_ID, COMP_DEF_ID, COMP_NAME) confirms that within a given server, a component definition cannot be registered twice under the same name. A separate SYS_IL index on column 7 (the LOB/object column) supports the OBJECT_REF storage.
Common Use Cases and Queries
Typical uses include auditing server composition, validating that all required component types are present on a server, and reconciling component-to-protocol mappings.
- List all components of a server:
SELECT c.COMP_ID, c.COMP_NAME, d.COMP_DEF_ID FROM IEO.IEO_SVR_COMPS c, IEO.IEO_SVR_COMP_DEFS d WHERE c.COMP_DEF_ID = d.COMP_DEF_ID AND c.SERVER_ID = :server_id;
- Find components mapped to a protocol:
SELECT p.PROTOCOL_ID, c.COMP_NAME FROM IEO.IEO_SVR_PROTOCOL_MAP p, IEO.IEO_SVR_COMPS c WHERE p.COMP_ID = c.COMP_ID;
- Identify servers missing a given component definition (comparison against IEO_SVR_COMP_DEFS).
Related Objects
- IEO_SVR_SERVERS — parent; joined via IEO_SVR_COMPS.SERVER_ID = IEO_SVR_SERVERS.SERVER_ID.
- IEO_SVR_COMP_DEFS — parent; joined via IEO_SVR_COMPS.COMP_DEF_ID = IEO_SVR_COMP_DEFS.COMP_DEF_ID.
- IEO_SVR_PROTOCOL_MAP — child; references IEO_SVR_COMPS.COMP_ID.
- JDR_COMPONENTS — references IEO_SVR_COMPS.COMP_ID.
- FND_SECURITY_GROUPS — referenced via SECURITY_GROUP_ID for data security.
-
Table: IEO_SVR_COMPS
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_COMPS, object_name:IEO_SVR_COMPS, status:VALID, product: IEO - Interaction Center Technology , description: Server Components. , implementation_dba_data: IEO.IEO_SVR_COMPS ,
-
Table: IEO_SVR_COMPS
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_COMPS, object_name:IEO_SVR_COMPS, status:VALID, product: IEO - Interaction Center Technology , description: Server Components. , implementation_dba_data: IEO.IEO_SVR_COMPS ,
-
APPS.IEC_CUSTOM_RMI_UTIL_PVT SQL Statements
12.1.1
-
APPS.IEC_CUSTOM_RMI_UTIL_PVT SQL Statements
12.2.2
-
VIEW: IEO.IEO_SVR_COMPS#
12.2.2
owner:IEO, object_type:VIEW, object_name:IEO_SVR_COMPS#, status:VALID,
-
VIEW: IEO.IEO_SVR_COMPS#
12.2.2
-
SYNONYM: APPS.IEO_SVR_COMPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEO_SVR_COMPS, status:VALID,
-
SYNONYM: APPS.IEO_SVR_COMPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEO_SVR_COMPS, status:VALID,
-
PACKAGE BODY: APPS.IEC_CUSTOM_RMI_UTIL_PVT
12.2.2
-
PACKAGE BODY: APPS.IEC_CUSTOM_RMI_UTIL_PVT
12.1.1
-
TABLE: IEO.IEO_SVR_COMPS
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_COMPS, object_name:IEO_SVR_COMPS, status:VALID,
-
TABLE: IEO.IEO_SVR_COMPS
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_COMPS, object_name:IEO_SVR_COMPS, status:VALID,
-
Table: IEO_SVR_PROTOCOL_MAP
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_PROTOCOL_MAP, object_name:IEO_SVR_PROTOCOL_MAP, status:VALID, product: IEO - Interaction Center Technology , description: Server Protocol Maps. , implementation_dba_data: IEO.IEO_SVR_PROTOCOL_MAP ,
-
Table: IEO_SVR_COMP_DEFS
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_COMP_DEFS, object_name:IEO_SVR_COMP_DEFS, status:VALID, product: IEO - Interaction Center Technology , description: Server Component Definitions. , implementation_dba_data: IEO.IEO_SVR_COMP_DEFS ,
-
Table: IEO_SVR_COMP_DEFS
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_COMP_DEFS, object_name:IEO_SVR_COMP_DEFS, status:VALID, product: IEO - Interaction Center Technology , description: Server Component Definitions. , implementation_dba_data: IEO.IEO_SVR_COMP_DEFS ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
Table: IEO_SVR_PROTOCOL_MAP
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_PROTOCOL_MAP, object_name:IEO_SVR_PROTOCOL_MAP, status:VALID, product: IEO - Interaction Center Technology , description: Server Protocol Maps. , implementation_dba_data: IEO.IEO_SVR_PROTOCOL_MAP ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEC_CUSTOM_RMI_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEC_CUSTOM_RMI_UTIL_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEC_CUSTOM_RMI_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEC_CUSTOM_RMI_UTIL_PVT, status:VALID,
-
Table: IEO_SVR_SERVERS
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_SERVERS, object_name:IEO_SVR_SERVERS, status:VALID, product: IEO - Interaction Center Technology , description: Servers. , implementation_dba_data: IEO.IEO_SVR_SERVERS ,
-
Table: IEO_SVR_SERVERS
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_SERVERS, object_name:IEO_SVR_SERVERS, status:VALID, product: IEO - Interaction Center Technology , description: Servers. , implementation_dba_data: IEO.IEO_SVR_SERVERS ,
-
APPS.IEO_SVR_UTIL_PVT SQL Statements
12.1.1
-
APPS.IEO_SVR_UTIL_PVT SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IEC_SVR_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEC_SVR_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEO_SVR_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEO_SVR_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEC_SVR_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEC_SVR_UTIL_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEO_SVR_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEO_SVR_UTIL_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.IEC_SVR_UTIL_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IEU_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_PVT, status:VALID,
-
APPS.IEC_SVR_UTIL_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IEU_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_PVT, status:VALID,
-
eTRM - IEO Tables and Views
12.2.2
description: Currently-defined voice messages available to be played to callee ,
-
eTRM - IEO Tables and Views
12.1.1
description: Currently-defined voice messages available to be played to callee ,
-
PACKAGE BODY: APPS.IEC_SVR_UTIL_PVT
12.1.1
-
PACKAGE BODY: APPS.IEC_SVR_UTIL_PVT
12.2.2
-
APPS.IEU_PVT SQL Statements
12.2.2
-
APPS.IEC_SVR_UTIL_PVT dependencies on IEO_SVR_COMPS
12.2.2
-
APPS.IEU_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IEO_SVR_UTIL_PVT
12.1.1
-
PACKAGE BODY: APPS.IEO_SVR_UTIL_PVT
12.2.2
-
APPS.IEU_PVT dependencies on IEO_SVR_COMPS
12.2.2