Search Results proficiency_level
Overview
PA_REP_ORG_COM_RES_LST_V is an Oracle Projects (PA) reporting view owned by the APPS schema. It presents a consolidated resource listing organized by organization and competence, allowing reporting tools and integrations to retrieve schedulable project resources together with their competence, proficiency level, managerial, and job-related attributes in a single flat structure. The view is one of the denormalized reporting constructs supplied with Oracle E-Business Suite and is classified as VALID in both 12.1.1 and 12.2.2. Because it joins person, competence, job, and organization data across the HR and Projects schemas, it removes the need for report developers to reconstruct those joins manually. It is typically consumed by custom reports, Oracle BI Publisher layouts, Discoverer worksheets, and interfaces that need a competence-aware roster of project resources. Notably, the column exposing proficiency is derived from PER_RATING_LEVELS.STEP_VALUE and is surfaced in the view as PROFICIENCY_LEVEL, which is the term users most often search for when investigating this object.
Underlying Base Objects
The view is defined over the following documented objects:
- PER_COMPETENCES and PER_COMPETENCE_ELEMENTS — supply the competence definition and each person's competence assignment, including the proficiency level ID and effectiveness dates.
- PER_RATING_LEVELS — resolved through an outer join on PROFICIENCY_LEVEL_ID to yield the proficiency step value.
- PA_RESOURCES_DENORM — the denormalized Projects resource repository providing resource name, person ID, manager, city, region, country, job, and schedulable flag.
- HR_ORGANIZATION_UNITS — the resource's owning organization.
- PER_JOBS — supplies job name and job ID.
- PER_JOB_EXTRA_INFO — an outer-joined source of the "JOB CATEGORY" descriptive flexfield value (JEI_INFORMATION5), aliased as PROJECT_JOB_CODE.
- PER_PEOPLE_F — used to restrict results to a single current person row.
- HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY — packages referenced for name formatting and security-based row filtering.
The join path links competence elements to resource records by PERSON_ID, and resources to organizations by RESOURCE_ORGANIZATION_ID. An inline subquery on PA_RESOURCES_DENORM selects the earliest effective resource row whose end date is still open, ensuring a single current resource record per person.
Key Columns
- ORGANIZATION_ID / ORGANIZATION_NAME — the organization owning the resource.
- COMPETENCE_ID / COMPETENCE_NAME — the competence being reported.
- PROFICIENCY_LEVEL — the rating step value from PER_RATING_LEVELS, representing how proficient the person is in the competence.
- PERSON_NAME / PERSON_ID — the resource identity.
- MANAGER_NAME / MANAGER_ID — the resource's manager.
- JOB_NAME / JOB_ID and PROJECT_JOB_LEVEL / PROJECT_JOB_CODE — the job and its Projects job category information.
- SCHEDULABLE_FLAG — DECODE-wrapped so that NULL becomes 'N'.
- LOCATION — concatenation of city, region, and country code.
- PERSON_TYPE — the resource person type.
Common Use Cases and Queries
A typical report filters by organization and competence to list qualified resources with their proficiency levels. The query below honors the SYSDATE-based date filters already built into the view:
SELECT organization_name,
person_name,
competence_name,
proficiency_level,
job_name,
schedulable_flag,
location
FROM apps.pa_rep_org_com_res_lst_v
WHERE organization_id = :p_org_id
AND competence_id = :p_competence_id
ORDER BY proficiency_level DESC, person_name;
Other common scenarios include identifying resources at or above a given proficiency threshold for staffing decisions, auditing schedulable versus non-schedulable resources by organization, and feeding downstream applications that require competence-to-resource mappings. Because HR_SECURITY packages participate in the definition, results are inherently subject to the calling user's HR security profile, so report consumers see only the organizations and people they are authorized to view.
-
View: PA_REP_ORG_COM_RES_LST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_ORG_COM_RES_LST_V, object_name:PA_REP_ORG_COM_RES_LST_V, status:VALID, product: PA - Projects , description: PA_REP_ORG_COM_RES_LST_V is a view that shows resource listing for organization and competence , implementation_dba_data: APPS.PA_REP_ORG_COM_RES_LST_V ,
-
View: PA_REP_RES_COMP_DTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_COMP_DTS_V, object_name:PA_REP_RES_COMP_DTS_V, status:VALID, product: PA - Projects , description: PA_REP_RES_COMP_DTS_V is a view that lists all resources and their organization, competencies details and job details , implementation_dba_data: APPS.PA_REP_RES_COMP_DTS_V ,
-
View: PA_REP_ORG_COM_RES_LST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_ORG_COM_RES_LST_V, object_name:PA_REP_ORG_COM_RES_LST_V, status:VALID, product: PA - Projects , description: PA_REP_ORG_COM_RES_LST_V is a view that shows resource listing for organization and competence , implementation_dba_data: APPS.PA_REP_ORG_COM_RES_LST_V ,
-
View: PA_REP_RES_COMP_DTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_COMP_DTS_V, object_name:PA_REP_RES_COMP_DTS_V, status:VALID, product: PA - Projects , description: PA_REP_RES_COMP_DTS_V is a view that lists all resources and their organization, competencies details and job details , implementation_dba_data: APPS.PA_REP_RES_COMP_DTS_V ,
-
Lookup Type: MASS_ASSIGNMENT_UPDATE_ATTR
12.1.1
product: PA - Projects , meaning: Mass Assignment Update Attributes ,
-
Lookup Type: MASS_ASSIGNMENT_UPDATE_ATTR
12.2.2
product: PA - Projects , meaning: Mass Assignment Update Attributes ,