Search Results task_description
Overview
APPS.PA_TASKS_ALL_EXPEND_V is a reporting and integration view in the Oracle E-Business Suite Projects (PA) module. Its name indicates that it presents task-level information specifically scoped for expenditure processing, providing a flattened, denormalized projection of project and task attributes that downstream expenditure, cross-charge, and transfer processes require. The view carries a status of VALID and is registered under the FND Design Data namespace PA.PA_TASKS_ALL_EXPEND_V. As with other APPS-owned views in the ETRM inventory, Oracle documents it as Internal Use Only: Oracle Corporation does not support direct access to application data through this object except from standard Oracle Applications programs. Consequently, the view should be treated as a supported integration surface for Oracle-delivered concurrent programs and APIs rather than as a free-standing query target for custom code. The view exposes both identification columns (PROJECT_ID, TASK_ID, TASK_NUMBER) and descriptive columns, including the TASK_DESCRIPTION column (VARCHAR2(250)) that users frequently search for when mapping task narratives into expenditure reports and interfaces.
Underlying Base Objects
The documented dependency list establishes the view's lineage across several PA and shared objects. It references PA_PROJECTS_ALL and PA_TASKS, which supply the core project and task master records, and PA_IMPLEMENTATIONS_ALL, which governs multi-organization and implementation-level behavior. HR_ALL_ORGANIZATION_UNITS supplies the organization context used by TASK_ORGANIZATION and EXPENDITURE_ORG_ID. PA_LOOKUPS resolves the various lookup-backed flag and type values surfaced by the view, including CHARGEABLE_FLAG, BILLABLE_FLAG, ALLOW_CROSS_CHARGE_FLAG, PROJECT_RATE_TYPE, and LABOR_COST_MULTIPLIER_NAME. PA_TASK_UTILS is a PL/SQL package that contributes derived logic such as INDENTED_TASK_NAME and WBS_SORT_ORDER, while FND_PROFILE contributes profile-driven values. The 12.2.2 metadata additionally lists PA_ALTERNATE_TASKS and PA_RBS_ELEMENTS, reflecting alternate task numbering and resource breakdown structure handling. The view is in turn referenced by PJM_PROJECT, PJM_TASKS_MXFR_V, PJM_TASKS_OU_V, and PO_PDOI_DIST_PROCESS_PVT, confirming its role in project task transfer and purchasing distribution processing.
Key Columns
- PROJECT_ID / PROJECT_NUMBER — Surrogate and descriptive identifiers for the owning project.
- TASK_ID / TASK_NUMBER / TASK_NAME — Task identifiers; TASK_NAME is limited to 20 characters.
- INDENTED_TASK_NAME — A WBS-hierarchy-indented rendering of the task name, up to 4000 characters, suitable for display.
- WBS_SORT_ORDER — Sort key that preserves the hierarchical WBS ordering.
- START_DATE / COMPLETION_DATE — Task scheduling dates.
- TASK_DESCRIPTION — Free-text task narrative, VARCHAR2(250); the column most often searched by users.
- CHARGEABLE_FLAG / BILLABLE_FLAG — Indicators controlling whether the task may be charged or billed.
- ALLOW_CROSS_CHARGE_FLAG — Indicates whether cross-charges are permitted for the task.
- PROJECT_RATE_DATE / PROJECT_RATE_TYPE — Task-level defaults for rate determination.
- TASK_ORGANIZATION / EXPENDITURE_ORG_ID — Organization identifiers for task ownership and expenditure accounting.
- LABOR_COST_MULTIPLIER_NAME — Name of the labor cost multiplier applied to the task.
Common Use Cases and Queries
Typical usage includes validating task setup before importing expenditures, resolving task descriptions for reporting, and reconciling cross-charge eligibility. Because the view is Oracle Internal Use Only, custom SQL should target supported public views where possible; the query below is illustrative of the documented structure.
- Retrieve task detail for a project:
SELECT project_number, task_number, task_description FROM apps.pa_tasks_all_expend_v WHERE project_id = :p_project_id ORDER BY wbs_sort_order; - Search by description text:
SELECT project_number, task_number, task_description FROM apps.pa_tasks_all_expend_v WHERE UPPER(task_description) LIKE '%' || UPPER(:p_text) || '%'; - Identify cross-charge-enabled tasks:
SELECT task_number, task_name, allow_cross_charge_flag FROM apps.pa_tasks_all_expend_v WHERE allow_cross_charge_flag = 'Y';
-
VIEW: APPS.PA_TASKS_ALL_EXPEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_ALL_EXPEND_V, object_name:PA_TASKS_ALL_EXPEND_V, status:VALID,
-
View: HXTFV_PROJECT_ACCOUNTING
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXTFV_PROJECT_ACCOUNTING, object_name:HXTFV_PROJECT_ACCOUNTING, status:VALID, product: HXT - Time and Labor , implementation_dba_data: APPS.HXTFV_PROJECT_ACCOUNTING ,
-
View: HXTFV_PROJECT_ACCOUNTING
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXTFV_PROJECT_ACCOUNTING, object_name:HXTFV_PROJECT_ACCOUNTING, status:VALID, product: HXT - Time and Labor , implementation_dba_data: APPS.HXTFV_PROJECT_ACCOUNTING ,
-
VIEW: APPS.PA_PERCENT_COMPLETES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PERCENT_COMPLETES_V, object_name:PA_PERCENT_COMPLETES_V, status:VALID,
-
VIEW: APPS.MSC_PROJECTS_TREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PROJECTS_TREE_V, object_name:MSC_PROJECTS_TREE_V, status:VALID,
-
VIEW: APPS.PA_PERCENT_COMPLETES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PERCENT_COMPLETES_V, object_name:PA_PERCENT_COMPLETES_V, status:VALID,
-
VIEW: APPS.MSC_PROJECTS_TREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PROJECTS_TREE_V, object_name:MSC_PROJECTS_TREE_V, status:VALID,
-
VIEW: APPS.ICX_EDM_PLANNER_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PLANNER_TASK_V, object_name:ICX_EDM_PLANNER_TASK_V, status:VALID,
-
VIEW: APPS.ICX_EDM_KEY_MEMBER_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_KEY_MEMBER_TASK_V, object_name:ICX_EDM_KEY_MEMBER_TASK_V, status:VALID,
-
VIEW: APPS.ICX_EDM_BUYER_SUP_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_BUYER_SUP_TASK_V, object_name:ICX_EDM_BUYER_SUP_TASK_V, status:VALID,
-
Lookup Type: JTF_TASK_SEARCH_SORT_COLS
12.2.2
product: JTF - CRM Foundation , meaning: Task search display columns (1) , description: Task Search display columns (1) ,
-
VIEW: APPS.IGS_PS_FAC_ASG_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_FAC_ASG_TASK_V, object_name:IGS_PS_FAC_ASG_TASK_V, status:VALID,
-
VIEW: APPS.ICX_EDM_KEY_MEMBER_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_KEY_MEMBER_TASK_V, object_name:ICX_EDM_KEY_MEMBER_TASK_V, status:VALID,
-
VIEW: APPS.ICX_EDM_CUSTOMER_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_CUSTOMER_TASK_V, object_name:ICX_EDM_CUSTOMER_TASK_V, status:VALID,
-
VIEW: APPS.ICX_EDM_BUYER_SUP_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_BUYER_SUP_TASK_V, object_name:ICX_EDM_BUYER_SUP_TASK_V, status:VALID,
-
VIEW: APPS.ICX_EDM_PLANNER_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PLANNER_TASK_V, object_name:ICX_EDM_PLANNER_TASK_V, status:VALID,
-
Lookup Type: JTF_TASK_SEARCH_SORT_COLS
12.1.1
product: JTF - CRM Foundation , meaning: Task search display columns (1) , description: Task Search display columns (1) ,
-
VIEW: APPS.CSF_VALIDATE_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_VALIDATE_TASKS_V, object_name:CSF_VALIDATE_TASKS_V, status:VALID,
-
View: PA_PERCENT_COMPLETES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PERCENT_COMPLETES_V, object_name:PA_PERCENT_COMPLETES_V, status:VALID, product: PA - Projects , description: 10Sc Only - Retrofitted , implementation_dba_data: APPS.PA_PERCENT_COMPLETES_V ,
-
VIEW: APPS.PA_TASKS_ALL_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_ALL_EXPEND_V, object_name:PA_TASKS_ALL_EXPEND_V, status:VALID,
-
VIEW: APPS.HXTFV_PROJECT_ACCOUNTING
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXTFV_PROJECT_ACCOUNTING, object_name:HXTFV_PROJECT_ACCOUNTING, status:VALID,
-
View: IGS_PS_FAC_ASG_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_FAC_ASG_TASK_V, object_name:IGS_PS_FAC_ASG_TASK_V, status:VALID, product: IGS - Student System , description: This view stores assigned task for the faculty. , implementation_dba_data: APPS.IGS_PS_FAC_ASG_TASK_V ,
-
VIEW: APPS.CSF_VALIDATE_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_VALIDATE_TASKS_V, object_name:CSF_VALIDATE_TASKS_V, status:VALID,
-
APPS.CAC_VIEW_WF_PVT SQL Statements
12.1.1
-
View: IGS_PS_FAC_ASG_TASK_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores assigned task for the faculty. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.HXTFV_PROJECT_ACCOUNTING
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXT.HXTFV_PROJECT_ACCOUNTING, object_name:HXTFV_PROJECT_ACCOUNTING, status:VALID,
-
VIEW: APPS.HXTFV_PROJECT_ACCOUNTING
12.2.2
-
VIEW: APPS.HXTFV_PROJECT_ACCOUNTING
12.1.1
-
APPS.JTF_CAL_WF_PVT SQL Statements
12.2.2
-
View: PA_PERCENT_COMPLETES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PERCENT_COMPLETES_V, object_name:PA_PERCENT_COMPLETES_V, status:VALID, product: PA - Projects , description: 10Sc Only - Retrofitted , implementation_dba_data: APPS.PA_PERCENT_COMPLETES_V ,
-
TYPE: APPS.CS_SR_TASK_RECORD
12.1.1
owner:APPS, object_type:TYPE, object_name:CS_SR_TASK_RECORD, status:VALID,
-
Lookup Type: JTF_TASK_SEARCH_DISPLAY_COLS
12.1.1
product: JTF - CRM Foundation , meaning: Task search display columns , description: Task Search display columns ,
-
Lookup Type: JTF_TASK_SEARCH_DISPLAY_COLS
12.2.2
product: JTF - CRM Foundation , meaning: Task search display columns , description: Task Search display columns ,
-
TYPE: SYSTEM.TASK_IN_OBJ
12.2.2
owner:SYSTEM, object_type:TYPE, object_name:TASK_IN_OBJ, status:VALID,
-
VIEW: APPS.PA_TASKS_EXPEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_EXPEND_V, object_name:PA_TASKS_EXPEND_V, status:VALID,
-
View: ICX_EDM_KEY_MEMBER_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_KEY_MEMBER_TASK_V, object_name:ICX_EDM_KEY_MEMBER_TASK_V, status:VALID, product: ICX - Oracle iProcurement , description: Task Information Summary View by Key Member , implementation_dba_data: APPS.ICX_EDM_KEY_MEMBER_TASK_V ,
-
View: OKE_K_LINES_FWDN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FWDN_V, object_name:OKE_K_LINES_FWDN_V, status:VALID, product: OKE - Project Contracts , description: Contract line view for flowdown , implementation_dba_data: APPS.OKE_K_LINES_FWDN_V ,
-
Lookup Type: JTF_TASK_SUM_DISPLAY_HEADER
12.2.2
product: JTF - CRM Foundation , meaning: Task sum display header , description: Task sum display header ,
-
VIEW: APPS.CSF_DEBRIEF_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_TASKS_V, object_name:CSF_DEBRIEF_TASKS_V, status:VALID,
-
APPS.CAC_VIEW_WF_PVT SQL Statements
12.2.2
-
View: ICX_EDM_CUSTOMER_TASK_V
12.2.2
product: ICX - Oracle iProcurement , description: Task Information Summary View by Customer , implementation_dba_data: Not implemented in this database ,
-
APPS.JTF_CAL_WF_PVT SQL Statements
12.1.1
-
VIEW: APPS.CSF_DEBRIEF_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_TASKS_V, object_name:CSF_DEBRIEF_TASKS_V, status:VALID,
-
View: PA_TASKS_ALL_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_ALL_EXPEND_V, object_name:PA_TASKS_ALL_EXPEND_V, status:VALID, product: PA - Projects , description: View of the tasks for a given project to which you can charge expenditures , implementation_dba_data: APPS.PA_TASKS_ALL_EXPEND_V ,
-
View: ICX_EDM_KEY_MEMBER_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_KEY_MEMBER_TASK_V, object_name:ICX_EDM_KEY_MEMBER_TASK_V, status:VALID, product: ICX - Oracle iProcurement , description: Task Information Summary View by Key Member , implementation_dba_data: APPS.ICX_EDM_KEY_MEMBER_TASK_V ,
-
TYPE: APPS.CS_SR_TASK_RECORD
12.2.2
owner:APPS, object_type:TYPE, object_name:CS_SR_TASK_RECORD, status:VALID,
-
View: PA_TASKS_ALL_EXPEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_ALL_EXPEND_V, object_name:PA_TASKS_ALL_EXPEND_V, status:VALID, product: PA - Projects , description: View of the tasks for a given project to which you can charge expenditures , implementation_dba_data: APPS.PA_TASKS_ALL_EXPEND_V ,
-
View: ICX_EDM_CUSTOMER_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_CUSTOMER_TASK_V, object_name:ICX_EDM_CUSTOMER_TASK_V, status:VALID, product: ICX - Oracle iProcurement , description: Task Information Summary View by Customer , implementation_dba_data: APPS.ICX_EDM_CUSTOMER_TASK_V ,
-
View: PA_TASKS_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_EXPEND_V, object_name:PA_TASKS_EXPEND_V, status:VALID, product: PA - Projects , description: View of the tasks for a given project to which you can charge expenditures , implementation_dba_data: APPS.PA_TASKS_EXPEND_V ,
-
VIEW: APPS.AMS_INSTANCE_PARTY_B2B_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_INSTANCE_PARTY_B2B_V, object_name:AMS_INSTANCE_PARTY_B2B_V, status:VALID,