Search Results member_level
Overview
APPS.PA_RESOURCE_LIST_MEMBERS_V is a reporting view in Oracle E-Business Suite (validated against 12.1.1 and 12.2.2) that presents the hierarchical members of project resource lists. Resource lists group people, organizations, or non-labor resources for use in project planning, staffing, and costing. The view exposes the flat rows stored in the underlying members table while simultaneously resolving each member against its parent row via a self-join, allowing consumers to reconstruct the tree structure without recursive queries. It is owned by the APPS schema and is intended primarily for reporting, Oracle Discoverer/BI Publisher extracts, and integration interfaces that need a denormalized, level-aware representation of resource list membership.
Underlying Base Objects
The view is defined exclusively over the single base object PA_RESOURCE_LIST_MEMBERS (referenced through a synonym). The view text joins that table to itself using two aliases, RLM1 and RLM2. The join predicate is:
NVL(RLM1.PARENT_MEMBER_ID, RLM1.RESOURCE_LIST_MEMBER_ID) = RLM2.RESOURCE_LIST_MEMBER_ID
This self-join ensures that every member row is matched either to its parent member row (when PARENT_MEMBER_ID is populated) or to itself (when it is a top-level member). The result is a one-row-per-member result set that carries both the member's own attributes and the parent's ordering attributes. Because the view is built only from PA_RESOURCE_LIST_MEMBERS, it inherits that table's multi-org and installation data context; no additional joined tables are referenced in the documented definition.
Key Columns
Each column is derived directly from RLM1 unless noted otherwise:
- ALIAS — the member alias, prefixed with indentation generated by
LPAD(' ',2*(RLM1.MEMBER_LEVEL-1)), producing a visual hierarchy for report output. (Note: MEMBER_LEVEL is referenced in the LPAD expression but is not projected as a separate column.) - RESOURCE_LIST_ID — identifies the parent resource list to which the member belongs.
- RESOURCE_LIST_MEMBER_ID — primary key of the member row, also used as the self-join target (
parent_member_idvalues point here). - RESOURCE_ID — the underlying resource (person, organization, or non-labor resource) that the member represents.
- TRACK_AS_LABOR_FLAG — indicates whether the member is tracked as labor.
- PARENT_MEMBER_ID — the self-referencing foreign key that establishes hierarchy; the user's search term. A NULL value denotes a top-level member.
- Sort order (DECODE expressions) — two derived ordering columns: one returns RLM1.SORT_ORDER for top-level members and RLM2.SORT_ORDER for children; the second returns 0 for top-level members and RLM1.SORT_ORDER for children. Together these support hierarchical sort sequencing.
- MIGRATION_CODE — a migration/upgrade tracking code carried on the member row.
Common Use Cases and Queries
Typical scenarios include listing all members of a resource list in hierarchical order, locating top-level members, and resolving parent-child relationships, which is directly relevant to searches on parent_member_id.
- Hierarchical listing for a specific list:
SELECT alias, resource_list_member_id, resource_id, parent_member_id FROM apps.pa_resource_list_members_v WHERE resource_list_id = :list_id ORDER BY resource_list_id, sort_order;
- Locating top-level (root) members:
SELECT alias, resource_list_member_id FROM apps.pa_resource_list_members_v WHERE parent_member_id IS NULL AND resource_list_id = :list_id;
- Identifying all children of a given parent:
SELECT alias, resource_list_member_id FROM apps.pa_resource_list_members_v WHERE parent_member_id = :member_id;
Because the view performs the self-join internally, these queries avoid manual recursion, though note the join filters rows where PARENT_MEMBER_ID points to a nonexistent member. The view is recommended for read-only reporting; DML should target PA_RESOURCE_LIST_MEMBERS directly. Oracle EBS 12.1.1 and 12.2.2 share this definition, so SQL written against one release remains portable to the other.
-
VIEW: APPS.PA_RESOURCE_LIST_MEMBERS_V
12.1.1
-
VIEW: APPS.PA_RESOURCE_LIST_MEMBERS_V
12.2.2
-
VIEW: PA.PA_RESOURCE_LIST_MEMBERS#
12.2.2
-
VIEW: APPS.PA_STATUS_RSRC_GENERIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_GENERIC_V, object_name:PA_STATUS_RSRC_GENERIC_V, status:VALID,
-
VIEW: APPS.PA_STATUS_RSRC_GENERIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_GENERIC_V, object_name:PA_STATUS_RSRC_GENERIC_V, status:VALID,
-
View: PA_RESOURCE_LIST_MEMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LIST_MEMBERS_V, object_name:PA_RESOURCE_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: View of all resource members, including resource aliases and sort order columns. , implementation_dba_data: APPS.PA_RESOURCE_LIST_MEMBERS_V ,
-
VIEW: PA.PA_RESOURCE_LIST_MEMBERS#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_RESOURCE_LIST_MEMBERS#, status:VALID,
-
View: PA_RESOURCE_LIST_MEMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LIST_MEMBERS_V, object_name:PA_RESOURCE_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: View of all resource members, including resource aliases and sort order columns. , implementation_dba_data: APPS.PA_RESOURCE_LIST_MEMBERS_V ,
-
VIEW: APPS.OTA_TRAINING_PLAN_BUDGETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_TRAINING_PLAN_BUDGETS_V, object_name:OTA_TRAINING_PLAN_BUDGETS_V, status:VALID,
-
APPS.OTA_FR_PLAN_DFORM SQL Statements
12.2.2
-
APPS.PA_DDC_API SQL Statements
12.1.1
-
APPS.PA_DDC_API SQL Statements
12.2.2
-
VIEW: APPS.OTA_TRAINING_PLAN_BUDGETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_TRAINING_PLAN_BUDGETS_V, object_name:OTA_TRAINING_PLAN_BUDGETS_V, status:VALID,
-
VIEW: APPS.PA_STATUS_RSRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_V, object_name:PA_STATUS_RSRC_V, status:VALID,
-
APPS.OTA_FR_PLAN_DFORM SQL Statements
12.1.1
-
VIEW: APPS.PA_STATUS_RSRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_V, object_name:PA_STATUS_RSRC_V, status:VALID,
-
APPS.PA_DDC_PVT SQL Statements
12.2.2
-
APPS.PA_DDC_PVT SQL Statements
12.1.1
-
View: PA_STATUS_RSRC_GENERIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_GENERIC_V, object_name:PA_STATUS_RSRC_GENERIC_V, status:VALID, product: PA - Projects , description: 10SC Only -- This was set create False on 8.30.96 as these views are re- created by paxgddc3.sql during autoinstall . , implementation_dba_data: APPS.PA_STATUS_RSRC_GENERIC_V ,
-
APPS.PA_RESOURCE_LIST_PKG SQL Statements
12.1.1
-
APPS.PA_RESOURCE_LIST_PKG SQL Statements
12.2.2
-
View: PA_STATUS_RSRC_GENERIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_GENERIC_V, object_name:PA_STATUS_RSRC_GENERIC_V, status:VALID, product: PA - Projects , description: 10SC Only -- This was set create False on 8.30.96 as these views are re- created by paxgddc3.sql during autoinstall . , implementation_dba_data: APPS.PA_STATUS_RSRC_GENERIC_V ,
-
View: PA_STATUS_RSRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_V, object_name:PA_STATUS_RSRC_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_V ,
-
View: PA_STATUS_RSRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_V, object_name:PA_STATUS_RSRC_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_V ,
-
TABLE: PA.PA_RESOURCE_LIST_MEMBERS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RESOURCE_LIST_MEMBERS, object_name:PA_RESOURCE_LIST_MEMBERS, status:VALID,
-
TABLE: PA.PA_RESOURCE_LIST_MEMBERS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RESOURCE_LIST_MEMBERS, object_name:PA_RESOURCE_LIST_MEMBERS, status:VALID,
-
APPS.PA_CREATE_RESOURCE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_DDC_API
12.1.1
-
APPS.PA_CREATE_RESOURCE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_DDC_API
12.2.2
-
PACKAGE BODY: APPS.PA_FC_RES_MAP
12.1.1
-
PACKAGE BODY: APPS.PA_FC_RES_MAP
12.2.2
-
APPS.PA_RES_LIST_UPGRADE_PKG SQL Statements
12.2.2
-
APPS.PA_RES_LIST_UPGRADE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_RESOURCE_LIST_PKG
12.2.2
-
PACKAGE BODY: APPS.PA_RESOURCE_LIST_PKG
12.1.1
-
PACKAGE BODY: APPS.PA_DDC_PVT
12.2.2
-
View: OTA_TRAINING_PLAN_BUDGETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_TRAINING_PLAN_BUDGETS_V, object_name:OTA_TRAINING_PLAN_BUDGETS_V, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTA_TRAINING_PLAN_BUDGETS_V ,
-
View: OTA_TRAINING_PLAN_BUDGETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_TRAINING_PLAN_BUDGETS_V, object_name:OTA_TRAINING_PLAN_BUDGETS_V, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTA_TRAINING_PLAN_BUDGETS_V ,
-
PACKAGE BODY: APPS.PA_DDC_PVT
12.1.1
-
PACKAGE BODY: APPS.OTA_FR_PLAN_DFORM
12.1.1
-
PACKAGE BODY: APPS.OTA_FR_PLAN_DFORM
12.2.2
-
PACKAGE: APPS.PA_RES_ACCUMS
12.2.2
-
PACKAGE: APPS.PA_RES_ACCUMS
12.1.1
-
APPS.OTA_FR_PLAN_DFORM dependencies on OTA_ACTIVITY_DEFINITIONS
12.2.2
-
APPS.OTA_FR_PLAN_DFORM dependencies on OTA_ACTIVITY_VERSIONS
12.2.2
-
APPS.OTA_FR_PLAN_DFORM dependencies on OTA_ACTIVITY_DEFINITIONS
12.1.1
-
APPS.OTA_FR_PLAN_DFORM dependencies on OTA_ACTIVITY_VERSIONS
12.1.1
-
PACKAGE BODY: APPS.PA_CREATE_RESOURCE
12.1.1
-
APPS.OTA_FR_PLAN_DFORM dependencies on OTA_ACTIVITY_VERSIONS_TL
12.2.2