Search Results allow_as_proj_member
Overview
APPS.PA_PROJECT_ROLELIST_LOV_V is a reporting and list-of-values (LOV) view in the Oracle E-Business Suite Projects (PA) module. Its purpose is to present the set of project roles that are valid for assignment as project team members, filtered by the role control code ALLOW_AS_PROJ_MEMBER. In Oracle Projects, role controls determine which actions a given project role type is permitted to perform on a project; the ALLOW_AS_PROJ_MEMBER control specifically governs whether a role may be added to a project's role list and therefore appear as a project member. This view exposes that filtered role list joined with the owning project and role list identifiers, making it suitable for LOV definitions, project team setup screens, concurrent program lookups, and custom reporting. Because the underlying objects include both the role type definition view and the role list membership table, the view effectively answers the question: "for a given project and role list, which roles are permitted to be used as project members?"
Underlying Base Objects
The ETRM 12.2.2 metadata documents the following referenced base objects:
- PA_PROJECT_ROLE_TYPES_V (view) — supplies the role type definition and attribute columns aliased as
role. - PA_ROLE_CONTROLS (synonym to table) — supplies the role control rows aliased as
control, filtered onrole_control_code = 'ALLOW_AS_PROJ_MEMBER'. - PA_ROLE_LIST_MEMBERS (synonym to table) — links role list identifiers to project role identifiers, aliased as
prlm. - PA_PROJECTS_ALL (synonym to table) — provides the project name and segment1 (project number), aliased as
ppa, joined viarole_list_id. - PA_ROLE_UTILS and PA_ROLE_JOB_BG_UTILS (packages) — utility packages documented as dependencies supporting role and job default logic.
The view text is a UNION ALL of two SELECT DISTINCT branches that share an identical column projection but differ in how the role list linkage is resolved, ultimately joining PA_ROLE_LIST_MEMBERS to PA_PROJECTS_ALL on role_list_id.
Key Columns
- ROW_ID — surrogate identifier for the role row, sourced from the role type view.
- PROJECT_ROLE_ID — primary key of the project role type; the join key to PA_ROLE_CONTROLS and PA_ROLE_LIST_MEMBERS.
- PROJECT_ROLE_TYPE — classification of the role (for example, member or non-member role type).
- MEANING — the user-facing display name of the role, typically used as the LOV display value.
- SCHEDULABLE_FLAG — indicates whether the role participates in project scheduling.
- QUERY_LABOR_COST_FLAG — controls whether the role may query labor cost information.
- START_DATE_ACTIVE / END_DATE_ACTIVE — effective dating for the role.
- ROLE_LIST_ID — the role list the role is a member of; joins to PA_PROJECTS_ALL.
- NAME / SEGMENT1 — the project name and project number from PA_PROJECTS_ALL.
- Descriptive and DFF columns — DESCRIPTION, DEFAULT_MIN_JOB_LEVEL, DEFAULT_MAX_JOB_LEVEL, DEFAULT_JOB_ID, DEFAULT_ACCESS_LEVEL, FREEZE_RULES_FLAG, MENU_ID, and ATTRIBUTE1 through ATTRIBUTE15, plus audit columns CREATION_DATE, LAST_UPDATE_DATE, and their associated user and login identifiers.
Common Use Cases and Queries
Typical usage covers validating project member assignments, populating LOVs on project team forms, and reporting the roles enabled for project membership per project. A representative query listing member roles for a project is:
SELECT meaning, project_role_id, role_list_id FROM apps.pa_project_rolelist_lov_v WHERE segment1 = :project_number;SELECT DISTINCT meaning FROM apps.pa_project_rolelist_lov_v ORDER BY 1;— builds a simple role LOV.SELECT p.name, v.meaning FROM apps.pa_project_rolelist_lov_v v, apps.pa_projects_all p WHERE v.role_list_id = p.role_list_id;— reports member roles across projects.
Because the view is filtered by the ALLOW_AS_PROJ_MEMBER role control, its result set is intentionally narrower than PA_PROJECT_ROLE_TYPES_V; consumers should not treat it as a complete catalog of project roles. The DISTINCT and UNION ALL structure can also produce duplicate role rows when a role belongs to multiple role lists, so join predicates to project should be applied carefully. For integration or BI Publisher extracts, this view provides a convenient, pre-filtered source that already encodes the role control and role list membership logic maintained by the PA_ROLE_UTILS utilities.
-
VIEW: APPS.PA_PROJECT_ROLELIST_LOV_V
12.2.2
-
VIEW: APPS.PA_PROJECT_ROLELIST_LOV_V
12.1.1
-
VIEW: APPS.PA_PROJECT_PLAYERS
12.2.2
-
View: PA_PROJECT_ROLELIST_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ROLELIST_LOV_V, object_name:PA_PROJECT_ROLELIST_LOV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_ROLELIST_LOV_V ,
-
VIEW: APPS.PA_ROLE_ROLELIST_LOV_V
12.2.2
-
VIEW: APPS.PA_PROJECT_PLAYERS
12.1.1
-
VIEW: APPS.PA_PROJECT_ROLES_LOV_V
12.1.1
-
VIEW: APPS.PA_ROLE_ROLELIST_LOV_V
12.1.1
-
VIEW: APPS.PA_PROJECT_ROLES_LOV_V
12.2.2
-
View: PA_PROJECT_ROLELIST_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ROLELIST_LOV_V, object_name:PA_PROJECT_ROLELIST_LOV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_ROLELIST_LOV_V ,
-
VIEW: APPS.PA_DRAFT_INVOICE_PP_V
12.2.2
-
Lookup Type: ROLE_CONTROL_CODE
12.1.1
product: PA - Projects , meaning: Role Controls , description: Role Controls ,
-
VIEW: APPS.PA_QUICK_ENTRY_SPECS_SS_V
12.1.1
-
Lookup Type: ROLE_CONTROL_CODE
12.2.2
product: PA - Projects , meaning: Role Controls , description: Role Controls ,
-
View: PA_PROJECT_PLAYERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_PLAYERS, object_name:PA_PROJECT_PLAYERS, status:VALID, product: PA - Projects , description: People assigned to a Specified Project , implementation_dba_data: APPS.PA_PROJECT_PLAYERS ,
-
View: PA_PROJECT_PLAYERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_PLAYERS, object_name:PA_PROJECT_PLAYERS, status:VALID, product: PA - Projects , description: People assigned to a Specified Project , implementation_dba_data: APPS.PA_PROJECT_PLAYERS ,
-
VIEW: APPS.PA_QUICK_ENTRY_SPECS_SS_V
12.2.2
-
View: PA_ROLE_ROLELIST_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ROLE_ROLELIST_LOV_V, object_name:PA_ROLE_ROLELIST_LOV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ROLE_ROLELIST_LOV_V ,
-
View: PA_ROLE_ROLELIST_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ROLE_ROLELIST_LOV_V, object_name:PA_ROLE_ROLELIST_LOV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ROLE_ROLELIST_LOV_V ,
-
View: PA_PROJECT_ROLES_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ROLES_LOV_V, object_name:PA_PROJECT_ROLES_LOV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_ROLES_LOV_V ,
-
View: PA_PROJECT_ROLES_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ROLES_LOV_V, object_name:PA_PROJECT_ROLES_LOV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_ROLES_LOV_V ,
-
View: PA_QUICK_ENTRY_SPECS_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUICK_ENTRY_SPECS_SS_V, object_name:PA_QUICK_ENTRY_SPECS_SS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_QUICK_ENTRY_SPECS_SS_V ,
-
View: PA_QUICK_ENTRY_SPECS_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUICK_ENTRY_SPECS_SS_V, object_name:PA_QUICK_ENTRY_SPECS_SS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_QUICK_ENTRY_SPECS_SS_V ,
-
VIEW: APPS.GMS_DRAFT_INVOICES_V
12.2.2
-
View: PA_DRAFT_INVOICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_INVOICES_V, object_name:PA_DRAFT_INVOICES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_DRAFT_INVOICES_V ,
-
APPS.PA_PROJECT_PVT SQL Statements
12.1.1
-
APPS.PA_PROJECT_PVT dependencies on PA_PROJECT_ROLE_TYPES_V
12.1.1
-
APPS.PA_PROJECT_PVT SQL Statements
12.2.2
-
APPS.PA_PROJECT_PUB dependencies on PA_PROJECT_ROLE_TYPES_V
12.1.1
-
APPS.PA_PROJECT_PVT dependencies on PA_PROJECT_ROLE_TYPES
12.1.1
-
APPS.PA_PROJECT_PUB dependencies on PA_PROJECT_ROLE_TYPES_V
12.2.2
-
APPS.PA_PROJECT_PVT dependencies on PA_PROJECT_ROLE_TYPES_V
12.2.2
-
APPS.PA_PROJECT_PVT dependencies on PA_PROJECT_ROLE_TYPES
12.2.2
-
APPS.PA_PROJECT_PUB SQL Statements
12.1.1
-
APPS.PA_PROJECT_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_PROJECT_PVT
12.1.1
-
PACKAGE BODY: APPS.PA_PROJECT_PVT
12.2.2
-
PACKAGE BODY: APPS.PA_PROJECT_PUB
12.1.1
-
PACKAGE BODY: APPS.PA_PROJECT_PUB
12.2.2