Search Results determine_eligible_media_types




Overview

APPS.IEU_PVT is the private implementation package body for the Interaction E-Utilities (IEU) Universal Work Queue (UWQ) subsystem in Oracle E-Business Suite. It provides the low-level PL/SQL logic that drives media type eligibility, work node enumeration, work node count refresh, and agent-to-server binding for the UWQ client. Because it is a private (PVT) package, its members are not exposed as public APIs; the corresponding public package, IEU_IMP or the relevant UWQ facade, delegates down to these routines on behalf of the UWQ client forms and runtime components.

The package defines an extensive set of PL/SQL collection globals used as bulk-bind arrays for DML and query processing, including node, resource, bind variable, and security group collections. These collections support the recursive tree walking and set-based updates that characterized UWQ node maintenance.

Key Procedures and Functions

Tables Accessed

Usage Notes

IEU_PVT is invoked indirectly through the UWQ client runtime and its public wrapper packages rather than called directly by end-user forms. It is referenced by five other packages, which indicates it functions as a shared private service layer across the UWQ stack. Administrators and developers troubleshooting media type eligibility, missing work nodes, or incorrect node counts should trace execution into DETERMINE_ELIGIBLE_MEDIA_TYPES and ENUMERATE_WORK_NODES respectively. Direct modification of this package body is not supported; customizations should target the public API layer. All table access occurs through APPS synonyms, so the package executes under standard EBS APPS schema privileges.