Search Results add_cx_button




Overview

APPS.CZ_UIOA_PVT is a private PL/SQL package belonging to the Oracle E-Business Suite product family commonly associated with Oracle Configurator and its user interface modeling extensions (the CZ schema prefix). In Oracle EBS 12.1.1 and 12.2.2 this package operates as a backend utility layer that manages UI object administration (UIOA) tasks — the creation, duplication, refresh, and deletion of user interface pages, subtrees, templates, and their associated elements. It acts as the engine beneath the public-facing model and developer utilities APIs, providing the low-level manipulation of UI metadata that Configurator runtime and design-time components depend upon. Because its API classification is PVT, the package is not intended for direct customer invocation; it is called by higher-level packages such as CZ_MODELOPERATIONS_PUB and CZ_DEVELOPER_UTILS_PVT.

Key Procedures and Functions

The package exposes 27 documented procedures and functions. The principal groups are:

Together these routines provide the CRUD and copy semantics for the Configurator UI model, and are invoked as building blocks rather than being exposed directly to end users.

Tables Accessed

The package reads and writes a set of CZ_ tables through APPS synonyms:

It also references the view CZ_UITEMPLS_FOR_PSNODES_V to resolve templates applicable to product structure nodes.

Usage Notes

CZ_UIOA_PVT is never invoked directly from Oracle Forms or concurrent programs. It is reachable only through APPS.CZ_MODELOPERATIONS_PUB and APPS.CZ_DEVELOPER_UTILS_PVT, which call it during Configurator model publication, UI editing, and developer utility operations in both 12.1.1 and 12.2.2. Customizations should call the public CZ_MODELOPERATIONS_PUB entry points rather than the private package, because the internal procedure signatures and behavior are not part of the supported API surface and may change without notice. The package depends on PUBLIC.XMLDOM and SYS.STANDARD and must be installed in the APPS schema where the CZ synonyms are valid.