Search Results pa_project_assignments
Overview
The PA_PROJECT_ASSIGNMENTS table is a core data repository within the Oracle E-Business Suite Projects module (PA). It serves as the central transactional table for storing and managing all assignment records for projects. An assignment defines the specific engagement of a resource (person, job, or organization) to a project, detailing their role, work type, schedule, and financial attributes. This table is fundamental to project staffing, planning, and cost collection, acting as the primary link between project definitions, resources, and the expenditure items they generate. Its integrity is maintained by a complex network of foreign key relationships to other master and transactional tables across the Projects, Human Resources, and General Ledger modules.
Key Information Stored
The table's primary key is the unique ASSIGNMENT_ID. Each record encapsulates comprehensive details about a project assignment. Critical columns include PROJECT_ID, linking to PA_PROJECTS_ALL, and RESOURCE_ID, linking to PA_RESOURCES. The table stores temporal data such as START_DATE and END_DATE, and assignment attributes like ASSIGNMENT_TYPE and STATUS_CODE (linked to PA_PROJECT_STATUSES). It holds key planning and costing determinants: WORK_TYPE_ID (from PA_WORK_TYPES_B), EXPENDITURE_TYPE and EXPENDITURE_TYPE_CLASS (from PA_EXPENDITURE_TYPES and PA_SYSTEM_LINKAGES), and CALENDAR_ID (from JTF_CALENDARS_B). Organizational and job information is stored via EXPENDITURE_ORGANIZATION_ID (HR_ALL_ORGANIZATION_UNITS) and forecast job fields (FCST_JOB_ID, FCST_JOB_GROUP_ID). The SOURCE_ASSIGNMENT_ID supports assignment copying and versioning by referencing another record within the same table.
Common Use Cases and Queries
This table is central to numerous operational and reporting processes. Common use cases include generating project staffing reports, validating expenditures against active assignments, and analyzing resource allocation. A typical query retrieves all active assignments for a project to understand current team composition:
- SELECT assignment_id, resource_id, start_date, end_date, status_code FROM pa_project_assignments WHERE project_id = :p_project_id AND sysdate BETWEEN start_date AND NVL(end_date, sysdate);
For cost analysis, a join to expenditure items is essential to reconcile planned assignments with actual costs:
- SELECT pa.assignment_id, SUM(pei.raw_cost) FROM pa_project_assignments pa, pa_expenditure_items_all pei WHERE pa.assignment_id = pei.assignment_id AND pa.project_id = :p_project_id GROUP BY pa.assignment_id;
Assignment history tracking is facilitated through the related PA_ASSIGNMENTS_HISTORY table, which logs changes to assignment records over time.
Related Objects
PA_PROJECT_ASSIGNMENTS is a hub within the Projects data model. Its primary foreign key dependencies, as documented, include PA_PROJECTS_ALL, PA_RESOURCES, PA_PROJECT_STATUSES, PA_EXPENDITURE_TYPES, PA_WORK_TYPES_B, and HR_ALL_ORGANIZATION_UNITS. It is a parent table to several key transactional entities. Most notably, PA_EXPENDITURE_ITEMS_ALL references ASSIGNMENT_ID, making this link critical for all project costing and billing transactions. The PA_ASSIGNMENTS_HISTORY table tracks changes to assignments, and PA_CANDIDATES may store potential assignment data linked to it. For implementation, the Assignment Manager API and related PL/SQL packages provide the standard programmatic interface for creating and maintaining records in this table.
-
Table: PA_PROJECT_ASSIGNMENTS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSIGNMENTS, object_name:PA_PROJECT_ASSIGNMENTS, status:VALID, product: PA - Projects , description: PA_PROJECT_ASSIGNMENTS stores details of all Assignments for a project. , implementation_dba_data: PA.PA_PROJECT_ASSIGNMENTS ,
-
Table: PA_PROJECT_ASSIGNMENTS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSIGNMENTS, object_name:PA_PROJECT_ASSIGNMENTS, status:VALID, product: PA - Projects , description: PA_PROJECT_ASSIGNMENTS stores details of all Assignments for a project. , implementation_dba_data: PA.PA_PROJECT_ASSIGNMENTS ,
-
APPS.PA_SEARCH_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_UTILS4 dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_HR_COMPETENCE_UTILS dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_ASGMT_WFSTD dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_RATE_PVT_PKG dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_SEARCH_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_ASSIGNMENT_APPROVAL_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_TASK_ASSIGNMENT_UTILS dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_FORECAST_REVENUE dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_ASSIGNMENT_APPROVAL_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_ASSIGNMENT_APPROVAL_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_ASSIGNMENT_APPROVAL_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_CLIENT_EXTN_ASGMT_APPRVL dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_PURGE_VALIDATE_PJRM dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_SEARCH_GLOB dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_MASS_ASGMT_TRX dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_MASS_ASGMT_TRX dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_RES_MANAGEMENT_AMG_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_CC_TRANSFER_PRICE dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_ASGMT_WFSTD dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_TIMELINE_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_FORECASTITEM_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_ADVERTISEMENTS_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_HR_UPDATE_API dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_RESOURCE_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_ASSIGNMENTS_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_COST dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_RATE_PVT_PKG dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_RES_MERGE_PKG dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_ASSIGNMENTS_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_FI_AMT_CALC_PKG dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_PLANNING_ELEMENT_UTILS dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_SCHEDULE_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_HR_COMPETENCE_UTILS dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_ASSIGNMENTS_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_ADVERTISEMENTS_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_STAFFED_ASSIGNMENT_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_ASSIGNMENTS_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_TEAM_TEMPLATES_PKG dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_COMPETENCE_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_SCHEDULE_UTILS dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_OPEN_ASSIGNMENT_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_STAFFED_ASSIGNMENT_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_FP_GEN_FCST_AMT_PVT dependencies on PA_PROJECT_ASSIGNMENTS
12.1.1
-
APPS.PA_SCHEDULE_UTILS dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2
-
APPS.PA_SEARCH_GLOB dependencies on PA_PROJECT_ASSIGNMENTS
12.2.2