Search Results pa_tasks_v
Overview
PA_TASKS_V is an Oracle EBS Projects (PA) view owned by the APPS schema. It is documented in ETRM as "10Sc only," indicating that it is intended primarily for Oracle Projects 10SC (a former public-sector/contracts-specific variant) rather than as a general-purpose 11i/R12 development interface. The view presents a denormalized, reportable representation of project task (WBS element) records. Its role is to expose the core task attributes from PA_TASKS together with the descriptive values that reporting and integration consumers typically require, such as organization name, task manager name, service type meaning, and structured address information. Because it joins lookup and HR/HZ descriptive data at the database level, it removes the need for consumers to reproduce those joins themselves.
Underlying Base Objects
The view text selects primarily from PA_TASKS (referenced as the TASK alias). Descriptive data is joined from several supporting objects:
- HR_ORGANIZATION_UNITS (ORG) supplies the loading/carrying-out organization name for CARRYING_OUT_ORGANIZATION_ID.
- PA_LOOKUPS (LK, LK2) provides lookup meanings, including SERVICE_TYPE_M for the service type code and the PM-related meaning.
- PER_ALL_PEOPLE_F (EMP) supplies TASK_MANAGER_NAME via FULL_NAME for the task manager person identifier.
- HZ_LOCATIONS, HZ_PARTY_SITES, and HZ_CUST_ACCT_SITES_ALL are referenced through the address identifier to return ADDRESS1 through ADDRESS4, CITY, STATE, and COUNTRY.
- PA_WORK_TYPES_VL, PA_TASK_UTILS, HR_GENERAL, and HR_SECURITY are also referenced; PA_TASK_UTILS provides the inline CHECK_CHILD_EXISTS function used to derive the WBS expand indicator.
Key Columns
The view exposes the full set of task attributes from PA_TASKS, including:
- TASK_ID, PROJECT_ID, TASK_NUMBER, TASK_NAME, DESCRIPTION — the core task identity.
- TOP_TASK_ID, PARENT_TASK_ID, WBS_LEVEL — hierarchical WBS position, plus a derived '+' or blank flag showing whether child tasks exist.
- READY_TO_BILL_FLAG, READY_TO_DISTRIBUTE_FLAG, CHARGEABLE_FLAG, BILLABLE_FLAG — billing and charging controls.
- CARRYING_OUT_ORGANIZATION_ID / ORGANIZATION_NAME and TASK_MANAGER_PERSON_ID / TASK_MANAGER_NAME — organizational ownership and responsibility.
- START_DATE, COMPLETION_DATE together with actual, early, late, and scheduled dates — task scheduling data.
- Bill rate, cost multiplier, and rate-schedule identifiers for labor and non-labor charging.
- ADDRESS_ID plus address1–4, city, state, country — task location reference.
- Standard WHO attributes (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, etc.) and the ATTRIBUTE1–10 and attribute category flexfield columns.
Common Use Cases and Queries
The view is typically used to build task-level reports and to feed downstream processes that need task names, manager names, and organization names in a single query.
List tasks for a project:
SELECT task_id, task_number, task_name, wbs_level, organization_name, task_manager_name, ready_to_bill_flag FROM pa_tasks_v WHERE project_id = :project_id ORDER BY task_number;
Identify billable vs chargeable tasks:
SELECT task_number, task_name, service_type_m, chargeable_flag, billable_flag FROM pa_tasks_v WHERE project_id = :project_id AND ready_to_bill_flag = 'Y';
Because the view is documented as 10Sc-specific, developers should verify its availability and column set in 12.1.1 and 12.2.2 before relying on it, and prefer supported PA APIs or PA_TASKS-based queries where portability is required.
-
View: PA_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_V, object_name:PA_TASKS_V, status:VALID, product: PA - Projects , description: 10Sc only , implementation_dba_data: APPS.PA_TASKS_V ,
-
View: PA_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_V, object_name:PA_TASKS_V, status:VALID, product: PA - Projects , description: 10Sc only , implementation_dba_data: APPS.PA_TASKS_V ,
-
VIEW: APPS.GMS_STATUS_ACCUM_TASK_BASE_V
12.2.2
-
VIEW: APPS.GMS_STATUS_ACCUM_TASK_BASE_V
12.1.1
-
View: GMS_STATUS_ACCUM_TASK_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACCUM_TASK_BASE_V, object_name:GMS_STATUS_ACCUM_TASK_BASE_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_ACCUM_TASK_BASE_V ,
-
View: GMS_STATUS_ACCUM_TASK_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACCUM_TASK_BASE_V, object_name:GMS_STATUS_ACCUM_TASK_BASE_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_ACCUM_TASK_BASE_V ,
-
PACKAGE BODY: APPS.MSC_ASK_ORACLE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_ASK_ORACLE, status:VALID,
-
PACKAGE BODY: APPS.MSC_ASK_ORACLE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_ASK_ORACLE, status:VALID,
-
VIEW: APPS.GMS_STATUS_ACCUM_TASK_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACCUM_TASK_BASE_V, object_name:GMS_STATUS_ACCUM_TASK_BASE_V, status:VALID,
-
VIEW: APPS.GMS_STATUS_ACCUM_TASK_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACCUM_TASK_BASE_V, object_name:GMS_STATUS_ACCUM_TASK_BASE_V, status:VALID,
-
PACKAGE: APPS.PA_TASK_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_TASK_UTILS, status:VALID,
-
PACKAGE: APPS.PA_TASK_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_TASK_UTILS, status:VALID,
-
VIEW: APPS.PA_WORK_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_WORK_TYPES_VL, object_name:PA_WORK_TYPES_VL, status:VALID,
-
VIEW: APPS.PA_WORK_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_WORK_TYPES_VL, object_name:PA_WORK_TYPES_VL, status:VALID,
-
APPS.MSC_ASK_ORACLE SQL Statements
12.1.1
-
VIEW: APPS.PA_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_V, object_name:PA_TASKS_V, status:VALID,
-
APPS.MSC_ASK_ORACLE SQL Statements
12.2.2
-
VIEW: APPS.PA_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_V, object_name:PA_TASKS_V, status:VALID,
-
APPS.MSC_ASK_ORACLE dependencies on PA_TASKS_V
12.2.2
-
APPS.MSC_ASK_ORACLE dependencies on PA_TASKS_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
VIEW: APPS.PA_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LOOKUPS, object_name:PA_LOOKUPS, status:VALID,
-
VIEW: APPS.PA_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LOOKUPS, object_name:PA_LOOKUPS, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.PA_TASKS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_TASKS, status:VALID,
-
SYNONYM: APPS.PA_TASKS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_TASKS, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
APPS.MSC_ASK_ORACLE dependencies on PJM_TASKS_V
12.2.2
-
APPS.MSC_ASK_ORACLE dependencies on PJM_TASKS_V
12.1.1
-
PACKAGE BODY: APPS.MSC_ASK_ORACLE
12.1.1
-
PACKAGE BODY: APPS.MSC_ASK_ORACLE
12.2.2
-
APPS.MSC_ASK_ORACLE dependencies on MSC_SUPPLIES
12.1.1
-
APPS.MSC_ASK_ORACLE dependencies on MSC_SUPPLIES
12.2.2
-
SYNONYM: APPS.HZ_PARTY_SITES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
eTRM - GMS Tables and Views
12.1.1
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - GMS Tables and Views
12.2.2
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
SYNONYM: APPS.PER_ALL_PEOPLE_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_PEOPLE_F, status:VALID,
-
SYNONYM: APPS.PER_ALL_PEOPLE_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_PEOPLE_F, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,