Search Results assignment_status
Overview
The PA_RES_ASGN_TIMELINE_ROWLBL_V view is a reporting and integration object in the Oracle E-Business Suite Projects (PA) module, owned by the APPS schema. Its documented purpose is to provide row labels for the resource assignments and requirements timeline. In practice, the view functions as a filtered, denormalized read interface over the timeline row-label data used by the Project Resource Management timeline UI and related analytics. The view exposes assignment-level and resource-level attributes—including the assignment start date that users frequently search for—so that downstream reports, dashboards, and integrations can retrieve timeline row labels without querying the base table directly. It is a view object with VALID status in the ETRM metadata for both 12.1.1 and 12.2.2, and it is not a table; therefore it cannot be updated directly and reflects the current state of the underlying data at query time.
Underlying Base Objects
The view is defined over a single referenced base object: PA_TIMELINE_ROW_LABEL, accessed through a synonym. The view text applies a restricting predicate on ROW_LABEL_TYPE, returning only rows where ROW_LABEL_TYPE is in ('PROJECT', 'ADMIN', 'AVAILABLE'). This design narrows the base table's full row-label population to the categories relevant to resource assignment and requirement timelines. Because the view does not join additional tables, all columns are projected from PA_TIMELINE_ROW_LABEL, and any data maintained in that base table is immediately visible through the view subject to the ROW_LABEL_TYPE filter. Administrators should note that performance characteristics follow the base table, and the filter predicate on ROW_LABEL_TYPE should be considered when creating supporting indexes or tuning timeline queries.
Key Columns
- ROW_LABEL_ID – Unique identifier for the timeline row label; primary key equivalent from the base table.
- ROW_LABEL_TYPE – Category of the row label; the view restricts values to PROJECT, ADMIN, and AVAILABLE.
- PROJECT_ID, PROJECT_NUMBER, PROJECT_NAME – Project context for the row label.
- ASSIGNMENT_ID, ASSIGNMENT_NAME, ASSIGNMENT_STATUS – Identifier, name, and status of the assignment/requirement row.
- ASSIGNMENT_START_DATE, ASSIGNMENT_END_DATE – The start and end dates of the assignment; ASSIGNMENT_START_DATE is the column most commonly searched for in timeline analysis.
- RESOURCE_ID, RESOURCE_NAME – The resource assigned to or required for the row.
- ORGANIZATION_NAME, RESOURCE_MGR_NAME – Owning organization and the resource manager associated with the row.
- SCH_UPD_PENDING_FLAG – Flag indicating whether a schedule update is pending, useful for synchronization and exception reporting.
Common Use Cases and Queries
Typical usage includes timeline reporting, resource assignment dashboards, and data extracts for integration with external scheduling tools. Because ASSIGNMENT_START_DATE is exposed directly, the view is well suited to date-driven queries such as identifying assignments beginning within a period or comparing planned versus actual timelines. A sample query filtering by project and start date follows:
SELECT assignment_id, assignment_name, assignment_status, assignment_start_date, assignment_end_date, resource_name FROM apps.pa_res_asgn_timeline_rowlbl_v WHERE project_number = :p_project AND assignment_start_date >= :p_from_date ORDER BY assignment_start_date;SELECT row_label_type, COUNT(*) FROM apps.pa_res_asgn_timeline_rowlbl_v GROUP BY row_label_type;
The view returns only PROJECT, ADMIN, and AVAILABLE row-label types, so consumers should not expect other categories present in the base table. As a read-only view, it supports reporting and integration patterns but not DML.
-
View: PA_RES_ASGN_TIMELINE_ROWLBL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_ASGN_TIMELINE_ROWLBL_V, object_name:PA_RES_ASGN_TIMELINE_ROWLBL_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide row labels for the resource assignments / requirements timeline , implementation_dba_data: APPS.PA_RES_ASGN_TIMELINE_ROWLBL_V ,
-
View: PA_RES_ASGN_TIMELINE_ROWLBL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_ASGN_TIMELINE_ROWLBL_V, object_name:PA_RES_ASGN_TIMELINE_ROWLBL_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide row labels for the resource assignments / requirements timeline , implementation_dba_data: APPS.PA_RES_ASGN_TIMELINE_ROWLBL_V ,
-
View: PA_RES_ASGN_TIME_CHART_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_ASGN_TIME_CHART_V, object_name:PA_RES_ASGN_TIME_CHART_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide the time chart data for the resource assignments / requirements timeline , implementation_dba_data: APPS.PA_RES_ASGN_TIME_CHART_V ,
-
View: PA_RES_ASGN_TIME_CHART_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_ASGN_TIME_CHART_V, object_name:PA_RES_ASGN_TIME_CHART_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide the time chart data for the resource assignments / requirements timeline , implementation_dba_data: APPS.PA_RES_ASGN_TIME_CHART_V ,
-
View: PA_PROJ_ASGN_TIMELINE_ROWLBL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ASGN_TIMELINE_ROWLBL_V, object_name:PA_PROJ_ASGN_TIMELINE_ROWLBL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_ASGN_TIMELINE_ROWLBL_V ,
-
View: PA_PROJ_ASGN_TIMELINE_ROWLBL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ASGN_TIMELINE_ROWLBL_V, object_name:PA_PROJ_ASGN_TIMELINE_ROWLBL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_ASGN_TIMELINE_ROWLBL_V ,
-
View: PA_PROJ_ASGN_TIME_CHART_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ASGN_TIME_CHART_V, object_name:PA_PROJ_ASGN_TIME_CHART_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide the time chart data for the project assignments / requirements timeline , implementation_dba_data: APPS.PA_PROJ_ASGN_TIME_CHART_V ,
-
View: PA_PROJ_ASGN_TIME_CHART_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ASGN_TIME_CHART_V, object_name:PA_PROJ_ASGN_TIME_CHART_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide the time chart data for the project assignments / requirements timeline , implementation_dba_data: APPS.PA_PROJ_ASGN_TIME_CHART_V ,