Search Results baselined_asgmt_start_date
Overview
PA_TASK_ASGMTS_V is an Oracle EBS Projects (PA) schema view owned by APPS. It presents task-level resource assignments—planned staffing of people, organizations, and other resource classes against specific WBS elements in a project structure—enriched with currency-denominated planned cost, quantity, and baselined figures. In Oracle EBS 12.1.1 and 12.2.2, planning data for a project resides in versioned structures (project structure versions, WBS element versions), and the base assignment tables store identifiers and measures that are not directly consumable by reporting tools. This view bridges that gap: it joins the resource assignment rows to their structural context (project, budget version, WBS element version, proj element) and resolves descriptions, unit-of-measure meanings, and multi-currency plan amounts.
Its principal role is in Projects reporting and integration. It is the standard read interface for extracting planned assignment detail—quantities, raw cost, burdened cost, and baselined comparisons—without requiring the caller to reconstruct the versioning joins or invoke the PA_TASK_ASSIGNMENT_UTILS package functions independently. Because it exposes both transaction-currency and project/projfunc-currency measures, it supports cross-currency reporting and plan-versus-baseline analysis.
Underlying Base Objects
The documented base objects underlying the view are:
- PA_PROJECTS_ALL — supplies project-level context, including PROJECT_CURRENCY_CODE and PROJFUNC_CURRENCY_CODE used in currency resolution.
- PA_BUDGET_VERSIONS — provides PROJECT_STRUCTURE_VERSION_ID, tying assignments to the correct planning version.
- PA_PROJ_ELEMENTS — resolves the PROJ_ELEMENT_ID for the WBS element.
- PA_RESOURCE_ASSIGNMENTS — the core assignment rows (resource class, RBS element, person, schedule and planning dates, UOM, rate-based and unplanned flags).
- PA_RESOURCE_ASGN_CURR — stores currency-denominated planned amounts (TOTAL_QUANTITY, TOTAL_TXN_BURDENED_COST, TOTAL_TXN_RAW_COST).
- PA_RESOURCE_LIST_MEMBERS — supplies the resource list member alias.
- PA_LOOKUPS — resolves lookup meanings, such as UNIT_OF_MEASURE.
- PA_TASK_ASSIGNMENT_UTILS — a PL/pgSQL package invoked within the view text to compute planned currency info and to retrieve baselined assignment dates and amounts.
The view therefore acts as a denormalized projection over these objects, hiding versioning and currency-resolution logic behind a single row per resource assignment.
Key Columns
- RESOURCE_ASSIGNMENT_ID, PROJECT_ID — identity keys joining back to the assignment and project.
- PROJECT_STRUCTURE_VERSION_ID, WBS_ELEMENT_VERSION_ID, PROJ_ELEMENT_ID — the versioned structural context of the task.
- RESOURCE_CLASS_CODE, RBS_ELEMENT_ID, PERSON_ID, RESOURCE_LIST_MEMBER_ID, ALIAS — who or what is assigned.
- UNIT_OF_MEASURE, MEANING — the assignment unit and its lookup description.
- RATE_BASED_FLAG, UNPLANNED_FLAG — assignment behavior indicators.
- SCHEDULE_START_DATE, SCHEDULE_END_DATE, PLANNING_START_DATE, PLANNING_END_DATE — scheduling versus planning windows.
- PLANNED_QUANTITY, PLANNED_RAW_COST_TXN_CUR, PLANNED_BUR_COST_TXN_CUR, PLANNED_RAW_COST_PROJ_CUR, PLANNED_BUR_COST_PROJ_CUR, PLANNED_RAW_COST_PROJFUNC, PLANNED_BUR_COST_PROJFUNC — planned effort and cost in transaction, project, and projfunc currencies.
- Baseline columns (BASELINED_ASGMT_START_DATE, BASELINED_ASGMT_END_DATE, BL_PLANNED_* through PA_TASK_ASSIGNMENT_UTILS) — the comparable baseline values for plan-versus-baseline reporting.
Common Use Cases and Queries
Typical uses include staffing/plan extracts, cost-loaded plan reports, and reconciliations between planned and baselined assignment values. Note that columns returned by the PA_TASK_ASSIGNMENT_UTILS functions are not filterable efficiently, so restrict by indexed base columns first.
- Assignment detail for a project:
SELECT resource_assignment_id, proj_element_id, alias, planned_quantity, planned_raw_cost_proj_cur FROM pa_task_asgmts_v WHERE project_id = :p_project_id ORDER BY planning_start_date; - Planned versus baselined quantity variance:
SELECT resource_assignment_id, planned_quantity, pa_task_asgmts_v.planned_quantity - TO_NUMBER(baselined_planned_qty) AS qty_variance FROM pa_task_asgmts_v WHERE project_id = :p_project_id AND unplanned_flag = 'N'; - Person-level staffing by resource class:
SELECT person_id, resource_class_code, alias, SUM(planned_quantity) planned_qty FROM pa_task_asgmts_v WHERE project_id = :p_project_id GROUP BY person_id, resource_class_code, alias;
-
View: PA_TASK_ASGMTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASGMTS_V, object_name:PA_TASK_ASGMTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_ASGMTS_V ,
-
View: PA_TASK_ASGMTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASGMTS_V, object_name:PA_TASK_ASGMTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_ASGMTS_V ,
-
VIEW: APPS.PA_TASK_ASGMTS_V
12.2.2
-
VIEW: APPS.PA_TASK_ASGMTS_V
12.1.1
-
VIEW: APPS.PA_TASK_ASGMTS_LPV_V
12.2.2
-
View: PA_TASK_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_V, object_name:PA_TASK_ASSIGNMENTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_ASSIGNMENTS_V ,
-
View: PA_TASK_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_V, object_name:PA_TASK_ASSIGNMENTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_ASSIGNMENTS_V ,
-
VIEW: APPS.PA_TASK_ASGMTS_LPV_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PA_TASK_ASGMTS_LPV_V, status:VALID,
-
VIEW: APPS.PA_TASK_ASGMTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASGMTS_V, object_name:PA_TASK_ASGMTS_V, status:VALID,
-
VIEW: APPS.PA_TASK_ASGMTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASGMTS_V, object_name:PA_TASK_ASGMTS_V, status:VALID,
-
VIEW: APPS.PA_TASK_ASSIGNMENTS_V
12.1.1
-
VIEW: APPS.PA_TASK_ASSIGNMENTS_V
12.2.2
-
VIEW: APPS.PA_TASK_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_V, object_name:PA_TASK_ASSIGNMENTS_V, status:VALID,
-
VIEW: APPS.PA_TASK_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_V, object_name:PA_TASK_ASSIGNMENTS_V, status:VALID,
-
PACKAGE BODY: APPS.PA_TASK_ASSIGNMENT_UTILS
12.1.1
-
PACKAGE BODY: APPS.PA_TASK_ASSIGNMENT_UTILS
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2