Search Results validate_no_overlap_manager




Overview

PA_PROJECT_PARTIES_UTILS is a server-side PL/SQL utility package in the APPS schema that centralizes the validation, derivation, and maintenance logic governing project parties and project players in Oracle Projects. Project parties represent the individuals and organizations associated with a project — project managers, project administrators, customers, and other role holders — and the integrity of these assignments is critical to role-based security, workflow routing, billing, and reporting. Rather than duplicating business rules across the Project Parties form, the Project Players form, and public APIs, this package consolidates that logic into a single reusable layer.

The package carries an API classification of OTHER and is documented with 25 procedures and functions. Its dependency list confirms its integration role: it references FND_API, FND_MESSAGE, and FND_MSG_PUB for the standard PL/SQL API error and message stack; HZ_PARTIES and PA_CUSTOMERS_V for party and customer identification; PER_ALL_PEOPLE_F and PA_EMPLOYEES for person validation; and core Projects entities including PA_PROJECTS_ALL, PA_PROJECT_PARTIES, PA_PROJECT_PLAYERS, PA_PROJECT_ROLE_TYPES, PA_PROJECT_STATUSES, and PA_PROJECT_TYPES. It also calls sibling utilities PA_PROJECT_DATES_UTILS, PA_ROLE_UTILS, PA_UTILS, and PA_DEBUG, and is itself referenced by 28 other database objects, underscoring its role as a shared service.

Key Procedures and Functions

Tables Accessed

The package reads PA_PROJECTS_ALL to obtain project attributes and dates, PA_PROJECT_PARTIES as the primary party assignment table, and PA_PROJECT_PLAYERS for player-level assignments. Role definitions and their translated values come from PA_PROJECT_ROLE_TYPES, PA_PROJECT_ROLE_TYPES_B, and PA_PROJECT_ROLE_TYPES_VL. Project status and classification context are drawn from PA_PROJECT_STATUSES, PA_PROJECT_TYPES, and PA_PROJECT_TYPES_ALL. Person data is validated against PER_ALL_PEOPLE_F and PA_EMPLOYEES, while HZ_PARTIES and PA_CUSTOMERS_V supply customer and trading-party information. DUAL supports simple scalar lookups. Write operations are limited to the project party and player tables; the remainder are read-only reference lookups.

Usage Notes

PA_PROJECT_PARTIES_UTILS is not intended for direct end-user invocation. It is called from the Oracle Projects forms that maintain project parties and project players, from public APIs such as the project party and project player APIs, and from concurrent programs and custom extensions that create or validate party assignments. Because 28 database objects reference it, changes to its validation behavior can have wide-reaching effects. Developers extending Oracle Projects should call the corresponding public API rather than this utility package, allowing the standard validation path — including FND_MSG_PUB error propagation — to remain intact. The package is valid in both 12.1.1 and 12.2.2, and the documented metadata is consistent across those releases.