Search Results resource_comp_count
Overview
APPS.PA_REP_ORG_RES_COMP_V is a Business Intelligence System (BIS) view owned by the APPS schema in Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2. The view presents a denormalized, reporting-oriented projection of project resource data combined with the competencies each resource possesses, organized by the owning organization. Its primary purpose is to serve Oracle Projects reporting and integration requirements where a flattened, ready-to-consume record set is preferred over joining the highly normalized HR and Projects base tables directly.
The view is registered under FND Design Data as PA.PA_REP_ORG_RES_COMP_V and is documented with a status of VALID. It is not referenced by any other database object, confirming that it functions strictly as a terminal reporting artifact rather than a building block for further dependent logic. The name of the view reflects its three principal dimensions: organization (ORG), resource (RES), and competency (COMP). Users searching for the resource_comp_count metric will find it exposed here under the documented column name RESOURCE_COMP_COUNT.
Underlying Base Objects
The view is defined over a combination of APPS synonyms, a view, and packaged PL/SQL functions. The documented dependencies are:
- PA_RESOURCES_DENORM (synonym) — supplies the denormalized resource attributes such as organization, resource name, manager, job, and billable/schedulable flags.
- PER_PEOPLE_F (view) — the effective-dated HR person record used to resolve resource names and person types.
- PER_JOBS (synonym) and PER_JOB_EXTRA_INFO (synonym) — provide job identifiers, job names, job codes, and job level information.
- PA_HR_COMPETENCE_UTILS (package) — the competency utility used to derive the concatenated competency string and the competency count for each resource.
- PA_EXPENDITURES_UTILS (package) — projects expenditure utilities referenced within the view definition.
- HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY (packages) — HR foundation calls used for person naming and, critically, security-based row filtering of the persons visible to the querying user.
Because HR_SECURITY is among the dependencies, the rows returned by the view are subject to the HR security profile of the session, meaning results are naturally constrained to the organizations and persons the user is authorized to see.
Key Columns
- ORGANIZATION_ID / ORGANIZATION_NAME — the identifier and up-to-4000-character name of the organization to which the resource belongs.
- RESOURCE_ID / RESOURCE_NAME — the resource identifier and the resource display name (240 characters).
- RESOURCE_COMPETENCIES — a concatenated VARCHAR2(4000) string listing the competencies possessed by the resource.
- RESOURCE_COMP_COUNT — a numeric count of the competencies the resource possesses, the metric referenced by searches for resource_comp_count.
- LAST_UPDATED — the last update date of a specific competency.
- MANAGER_ID / MANAGER_NAME — the resource's manager.
- JOB_ID, JOB_NAME, JOB_LEVEL, JOB_CODE — job attributes sourced from the PER_JOBS structures.
- SCHEDULABLE_FLAG / BILLABLE_FLAG — indicators of whether the resource is schedulable and billable.
- PERSON_TYPE — the HR person type of the resource (VARCHAR2(30)).
Common Use Cases and Queries
Typical uses include competency gap analysis, resource competency inventory reporting, and feeding downstream BI extracts.
- Resources ranked by competency count within an organization:
SELECT ORGANIZATION_NAME, RESOURCE_NAME, RESOURCE_COMP_COUNT FROM APPS.PA_REP_ORG_RES_COMP_V WHERE RESOURCE_COMP_COUNT > 0 ORDER BY RESOURCE_COMP_COUNT DESC;
- Billable, schedulable resources with their managers and jobs:
SELECT RESOURCE_NAME, MANAGER_NAME, JOB_NAME, JOB_LEVEL FROM APPS.PA_REP_ORG_RES_COMP_V WHERE BILLABLE_FLAG = 'Y' AND SCHEDULABLE_FLAG = 'Y';
- Listing competency detail strings for a specific resource or organization:
SELECT ORGANIZATION_NAME, RESOURCE_NAME, RESOURCE_COMPETENCIES, LAST_UPDATED FROM APPS.PA_REP_ORG_RES_COMP_V WHERE RESOURCE_ID = :p_resource_id;
Because HR_SECURITY governs the view, report authors should expect results to vary by responsibility and security profile.
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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 - Projects , description: 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 - Projects , description: 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 - Projects , description: 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 - Projects , description: 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 ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2