Search Results resource_comp_count




Overview

PA_REP_ORG_RES_COMP_V is an APPS-owned reporting view in the Oracle E-Business Suite Projects (PA) module. As documented in the ETRM repository for releases 12.1.1 and 12.2.2, the view "lists all resource competence details by organizations." It consolidates resource, organizational, job, and competence information into a single queryable structure, allowing report developers and integrators to retrieve competence attributes for billable, schedulable resources without navigating the multiple base tables and PL/SQL utility packages that hold the raw data.

The view is primarily a reporting and integration construct rather than a transactional object. Because competence values are computed at runtime through PA_HR_COMPETENCE_UTILS, the view reflects the current state of competency records whenever it is queried. This makes it suitable for ad hoc reporting, Discoverer workbooks, and custom concurrent programs that need a denormalized, per-resource view of competence data organized by resource organization.

Underlying Base Objects

The documented base objects referenced by PA_REP_ORG_RES_COMP_V are:

The join logic selects only the earliest effective resource row per resource whose effective end date is on or after SYSDATE, filters to UTILIZATION_FLAG = 'Y', and requires a matching PER_PEOPLE_F row.

Key Columns

Common Use Cases and Queries

Typical scenarios include identifying resources with a given number of competences, auditing competence currency, and populating competency dashboards by organization.

To list resources with at least one competence:

  • SELECT resource_id, resource_name, organization_name, resource_comp_count FROM pa_rep_org_res_comp_v WHERE resource_comp_count > 0 ORDER BY resource_comp_count DESC;

To find resources whose competences have not been refreshed recently:

  • SELECT resource_name, organization_name, resource_comp_count, last_updated FROM pa_rep_org_res_comp_v WHERE last_updated < SYSDATE - 365;

Because the view invokes PL/SQL functions per row, large extracts benefit from filtering by organization or resource before aggregation, and from running outside peak online hours.

  • View: PA_REP_ORG_RES_COMP_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_REP_ORG_RES_COMP_V,  object_name:PA_REP_ORG_RES_COMP_V,  status:VALID,  product: PA - Projectsdescription: PA_REP_ORG_RES_COMP_V is a view that lists all resource competence details by organizations ,  implementation_dba_data: APPS.PA_REP_ORG_RES_COMP_V

  • View: PA_REP_ORG_RES_COMP_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_REP_ORG_RES_COMP_V,  object_name:PA_REP_ORG_RES_COMP_V,  status:VALID,  product: PA - Projectsdescription: PA_REP_ORG_RES_COMP_V is a view that lists all resource competence details by organizations ,  implementation_dba_data: APPS.PA_REP_ORG_RES_COMP_V

  • View: PA_REP_PROJ_RES_COMP_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_REP_PROJ_RES_COMP_V,  object_name:PA_REP_PROJ_RES_COMP_V,  status:VALID,  product: PA - Projectsdescription: PA_REP_ORG_RES_COMP_V is a view that lists all resource competence details by projects ,  implementation_dba_data: APPS.PA_REP_PROJ_RES_COMP_V

  • View: PA_REP_PROJ_RES_COMP_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_REP_PROJ_RES_COMP_V,  object_name:PA_REP_PROJ_RES_COMP_V,  status:VALID,  product: PA - Projectsdescription: PA_REP_ORG_RES_COMP_V is a view that lists all resource competence details by projects ,  implementation_dba_data: APPS.PA_REP_PROJ_RES_COMP_V