Search Results ieu_wp_node_section_maps_s1




Overview

IEU_SEED_DATA_LOADER_PKG is an APPS-owned PL/SQL package body that serves as a seed data loader for the Interaction and E-Service (IEU) product family in Oracle E-Business Suite. The package provides a controlled mechanism to insert, update, or migrate the reference and configuration rows that underpin several IEU subcomponents, including the Universal Work Queue (UWQ), the Work Panel (WP), and the Client Provider (CLI) frameworks. Because these frameworks depend on ordered sets of metadata definitions — actions, nodes, sections, plugins, and enumerators — the package centralizes seed loading so that environments can be provisioned consistently and upgrades can apply the correct delivered configuration.

The package is classified as OTHER and is not referenced by any other database object, indicating that it is intended for direct invocation during installation, patching, or administrative seeding operations rather than being consumed through a runtime API surface. Its object status is VALID, and it operates within the APPS schema, referencing utility objects such as FND_APPLICATION, FND_LANGUAGES, FND_GLOBAL, and FND_LOAD_UTIL for application context, multilingual handling, and loader utility support.

Key Procedures and Functions

The documented interface exposes thirteen procedures that collectively load the delivered metadata for the IEU frameworks. The loading procedures are:

The procedures are designed to be idempotent seed loaders — that is, they apply delivered definitions in a repeatable manner consistent with Oracle's standard loader conventions rather than providing ad hoc DML.

Tables Accessed

The package reads and writes a defined set of IEU configuration tables through APPS synonyms, including IEU_UWQ_SVR_MPS_PLUGINS, IEU_UWQ_SVR_MPS_MMAPS, IEU_UWQ_SEL_ENUMERATORS, IEU_UWQ_RES_CAT_ENM_MAPS, IEU_UWQ_CLI_MED_PLUGINS, IEU_UWQ_NODE_DS, IEU_UWQ_NONMEDIA_ACTIONS, IEU_UWQ_MACTION_DEFS_B, IEU_CLI_PROV_PLUGINS, IEU_CLI_PROV_PLUGIN_MED_MAPS, IEU_WP_SECTIONS_B, IEU_WP_ACT_PARAM_SETS_B, IEU_WP_ACTION_PARAMS, and IEU_WP_ACTION_MAPS. It also touches IEU_WP_SECTIONS_TL for translatable section text and IEU_WP_NODE_SECTION_MAPS, with IEU_WP_NODE_SECTION_MAPS_S1 appearing as a dependent object. These tables hold the definitions that drive agents' navigable work queues and panels.

Usage Notes

Because the package is not referenced by any other object, it is invoked directly — typically as part of environment setup, a patch driver, or an administrator-run seeding step. It relies on FND_LOAD_UTIL, FND_APPLICATION, FND_GLOBAL, and FND_LANGUAGES to establish application and language context before inserting language-sensitive seed rows. The dependence on IEU_WP_NODE_SECTION_MAPS_S1 reflects the underlying sequence used when populating node-to-section mappings. This package should be treated as a delivered administrative utility; custom code should not depend on its internal behavior, and any manual execution should be coordinated with the standard EBS patch cycle to avoid conflicting with delivered seed data.