Search Results row_label_type
Overview
APPS.PA_RES_ASGN_TIMELINE_ROWLBL_V is a reporting and integration view in the Oracle E-Business Suite Projects (PA) module. It exposes a filtered, denormalized projection of assignment and resource timeline row-label data used by the Oracle Projects resource assignment timeline and scheduling functionality. The view is built directly over the PA_TIMELINE_ROW_LABEL table and restricts its output to three specific row-label categories: PROJECT, ADMIN, and AVAILABLE. This filtering is significant because it isolates the row-label types relevant to resource assignment timelines from other internal row-label usages that may exist in the base table.
Its role is primarily presentation-layer: it flattens the descriptive attributes of a timeline row label (project identifiers, assignment identifiers, resource details, and scheduling status) into a single consumable structure. In Oracle EBS 12.1.1 and 12.2.2 the view behaves identically from a definition standpoint, since it is a simple single-table view with no version-specific logic. The distinguishing feature users search for, row_label_type, is one of the core columns and doubles as the view's filter predicate, making the view a natural entry point for any query that needs to distinguish project rows, administrative rows, and available-capacity rows within a resource timeline.
Underlying Base Objects
The view is defined over a single documented base object: the synonym PA_TIMELINE_ROW_LABEL, which resolves to the underlying PA schema table. No joins, unions, or aggregations are present in the view text; the definition is a SELECT projection with a WHERE clause. Because it references only one base object, the view carries no additional referential integrity constraints of its own, and its performance characteristics are governed entirely by the indexing and volume of PA_TIMELINE_ROW_LABEL.
The WHERE clause applies an IN predicate on ROW_LABEL_TYPE restricting the result to 'PROJECT', 'ADMIN', and 'AVAILABLE'. Consequently, any row-label type outside this set — should the base table contain others — is invisible through this view. Consumers requiring the full unfiltered set must query PA_TIMELINE_ROW_LABEL directly, whereas consumers needing only the assignment-timeline-relevant categories can use this view to avoid re-implementing the filter predicate.
Key Columns
- ROW_LABEL_ID — Primary identifier for the timeline row label; the unique key of each returned row.
- ROW_LABEL_TYPE — Categorizes the row as PROJECT, ADMIN, or AVAILABLE. This is the view's defining filter and the most commonly searched attribute.
- PROJECT_ID, PROJECT_NUMBER, PROJECT_NAME — Project context for the row label, enabling joins to project-based reporting.
- ASSIGNMENT_ID, ASSIGNMENT_NAME, ASSIGNMENT_STATUS — Assignment context, including its current status.
- ASSIGNMENT_START_DATE, ASSIGNMENT_END_DATE — Temporal boundaries of the assignment, used for timeline placement and date-range reporting.
- RESOURCE_ID, RESOURCE_NAME — The resource (person or organization entity) associated with the row label.
- ORGANIZATION_NAME, RESOURCE_MGR_NAME — Organizational and managerial attribution for the resource.
- SCH_UPD_PENDING_FLAG — Indicates whether a scheduling update is pending, useful for detecting incomplete or out-of-sync timeline states.
Common Use Cases and Queries
Typical uses include building resource-timeline reports, validating assignment scheduling status, and integrating timeline row labels into external scheduling or analytics platforms. A representative query filtered by the searched attribute:
SELECT row_label_id, project_number, assignment_name, resource_name, assignment_status, sch_upd_pending_flag FROM apps.pa_res_asgn_timeline_rowlbl_v WHERE row_label_type = 'PROJECT';SELECT resource_name, assignment_start_date, assignment_end_date FROM apps.pa_res_asgn_timeline_rowlbl_v WHERE row_label_type = 'AVAILABLE';— isolate available-capacity rows for utilization analysis.SELECT * FROM apps.pa_res_asgn_timeline_rowlbl_v WHERE sch_upd_pending_flag = 'Y';— detect rows awaiting a scheduling update.
Because the view already constrains ROW_LABEL_TYPE, queries adding a further equality on that column typically benefit from the base table's indexing on the type and ID columns, and should be run against the APPS synonym with appropriate MOAC and security considerations applied by the calling application.
-
VIEW: APPS.PA_RES_ASGN_TIMELINE_ROWLBL_V
12.2.2
-
VIEW: APPS.PA_RES_ASGN_TIMELINE_ROWLBL_V
12.1.1
-
VIEW: APPS.PA_PROJ_ASGN_TIMELINE_ROWLBL_V
12.2.2
-
VIEW: APPS.PA_PROJ_ASGN_TIMELINE_ROWLBL_V
12.1.1
-
TABLE: PA.PA_TIMELINE_ROW_LABEL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TIMELINE_ROW_LABEL, object_name:PA_TIMELINE_ROW_LABEL, status:VALID,
-
VIEW: PA.PA_TIMELINE_ROW_LABEL#
12.2.2
-
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_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_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: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
TABLE: PA.PA_TIMELINE_ROW_LABEL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TIMELINE_ROW_LABEL, object_name:PA_TIMELINE_ROW_LABEL, status:VALID,
-
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: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: PA.PA_TIMELINE_ROW_LABEL#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_TIMELINE_ROW_LABEL#, status:VALID,
-
VIEW: APPS.PA_RES_SCH_TIMELINE_ROWLBL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIMELINE_ROWLBL_V, object_name:PA_RES_SCH_TIMELINE_ROWLBL_V, status:VALID,
-
VIEW: APPS.PA_RES_SCH_TIMELINE_ROWLBL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIMELINE_ROWLBL_V, object_name:PA_RES_SCH_TIMELINE_ROWLBL_V, status:VALID,
-
VIEW: APPS.PA_RES_SCH_TIME_CHART_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIME_CHART_V, object_name:PA_RES_SCH_TIME_CHART_V, status:VALID,
-
VIEW: APPS.PA_RES_SCH_TIME_CHART_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIME_CHART_V, object_name:PA_RES_SCH_TIME_CHART_V, status:VALID,
-
View: PA_RES_SCH_TIME_CHART_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIME_CHART_V, object_name:PA_RES_SCH_TIME_CHART_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide the time chart data for the resource schedule timeline , implementation_dba_data: APPS.PA_RES_SCH_TIME_CHART_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_SCH_TIME_CHART_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIME_CHART_V, object_name:PA_RES_SCH_TIME_CHART_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide the time chart data for the resource schedule timeline , implementation_dba_data: APPS.PA_RES_SCH_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_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 ,
-
View: PA_RES_SCH_TIMELINE_ROWLBL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIMELINE_ROWLBL_V, object_name:PA_RES_SCH_TIMELINE_ROWLBL_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide row label data for the resource schedule timeline , implementation_dba_data: APPS.PA_RES_SCH_TIMELINE_ROWLBL_V ,
-
View: PA_RES_SCH_TIMELINE_ROWLBL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIMELINE_ROWLBL_V, object_name:PA_RES_SCH_TIMELINE_ROWLBL_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide row label data for the resource schedule timeline , implementation_dba_data: APPS.PA_RES_SCH_TIMELINE_ROWLBL_V ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2