Search Results comp_ele
Overview
APPS.PA_REQMNT_COMPETENCES_AMG_V is a reporting and integration view in Oracle E-Business Suite that consolidates competency requirement data attached to project assignments. It joins assignment, project, competence, competence element, and rating level information into a single denormalized result set, allowing consumers to retrieve the complete competency profile of an assignment without navigating the individual transactional tables. The view is owned by the APPS schema and is exposed in both release 12.1.1 and 12.2.2, with documented metadata captured in ETRM 12.2.2.
The object is particularly relevant to searches such as "comp_ele" because its driving table is PER_COMPETENCE_ELEMENTS (aliased COMP_ELE), which stores the individual competency element records that link a competence definition to a specific object. The view restricts these records to those whose OBJECT_NAME is 'OPEN_ASSIGNMENT', ensuring only assignment-level requirements are surfaced.
Underlying Base Objects
The view is defined over five referenced base objects, all resolved through synonyms in the APPS schema:
- PA_PROJECT_ASSIGNMENTS (ASGMT) — supplies the assignment identifier, name, start and end dates, and the parent project reference.
- PA_PROJECTS_ALL (PROJ) — supplies the project name and the project number (SEGMENT1).
- PER_COMPETENCE_ELEMENTS (COMP_ELE) — the driving table of the join; holds the competency element identifier, the associated competence, proficiency level, mandatory flag, and audit columns.
- PER_COMPETENCES (COMP) — supplies the competency name, alias, and business group identifier.
- PER_RATING_LEVELS (RL) — supplies the numeric step value corresponding to the proficiency level.
The join path is: COMP_ELE.COMPETENCE_ID = COMP.COMPETENCE_ID, COMP_ELE.OBJECT_ID = ASGMT.ASSIGNMENT_ID, ASGMT.PROJECT_ID = PROJ.PROJECT_ID, and COMP_ELE.PROFICIENCY_LEVEL_ID = RL.RATING_LEVEL_ID. The final predicate is an outer join (RL.RATING_LEVEL_ID (+)), so competency elements lacking a valid proficiency level are still returned.
Key Columns
- OBJECT_ID — the assignment identifier that the competency element is attached to.
- ASSIGNMENT_NAME, START_DATE, END_DATE — descriptive attributes of the assignment.
- PROJECT_ID, NAME, SEGMENT1 — project identifier, name, and project number.
- COMPETENCE_ELEMENT_ID — unique identifier of the competency element record.
- COMPETENCE_ID, NAME, COMPETENCE_ALIAS — the competence being required and its readable identifiers.
- PROFICIENCY_LEVEL_ID, STEP_VALUE — the required proficiency level and its numeric rating step.
- MANDATORY — flag indicating whether the competency is mandatory for the assignment.
- OBJECT_VERSION_NUMBER, BUSINESS_GROUP_ID, CREATION_DATE, LAST_UPDATE_DATE — concurrency control and audit/ownership columns.
Common Use Cases and Queries
This view is typically used for competency gap analysis, assignment staffing reports, and integration extracts feeding external HR or resource management systems. A straightforward query by project is:
SELECT project_id, segment1, assignment_name, name, step_value, mandatory FROM apps.pa_reqmnt_competences_amg_v WHERE segment1 = :project_number;SELECT competence_id, name, step_value FROM apps.pa_reqmnt_competences_amg_v WHERE assignment_name = :assignment AND mandatory = 'Y';SELECT * FROM apps.pa_reqmnt_competences_amg_v WHERE object_id = :assignment_id;
Because the view is defined only over open assignments, it never returns historical or closed assignment competency requirements. Reports requiring proficiency text rather than the numeric STEP_VALUE should join back to PER_RATING_LEVELS explicitly, since only STEP_VALUE is projected here.
-
VIEW: APPS.PA_REQMNT_COMPETENCES_AMG_V
12.2.2
-
VIEW: APPS.PA_REQMNT_COMPETENCES_AMG_V
12.1.1
-
VIEW: APPS.PA_RESOURCE_COMPETENCES_V
12.1.1
-
VIEW: APPS.PA_PROJ_ROLE_COMPETENCES_V
12.2.2
-
VIEW: APPS.PA_OPEN_ASGMT_COMPETENCES_V
12.1.1
-
VIEW: APPS.PA_PROJ_ROLE_COMPETENCES_V
12.1.1
-
VIEW: APPS.PA_OPEN_ASGMT_COMPETENCES_V
12.2.2
-
VIEW: APPS.PA_RESOURCE_COMPETENCES_V
12.2.2
-
VIEW: APPS.PA_REP_RES_COMP_DTS_V
12.1.1
-
VIEW: APPS.PA_REP_ORG_COM_RES_LST_V
12.2.2
-
VIEW: APPS.PA_REP_RES_COMP_DTS_V
12.2.2
-
VIEW: APPS.PA_REP_ORG_COM_RES_LST_V
12.1.1
-
View: PA_PROJ_ROLE_COMPETENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ROLE_COMPETENCES_V, object_name:PA_PROJ_ROLE_COMPETENCES_V, status:VALID, product: PA - Projects , description: This view returns the competences for a Project role , implementation_dba_data: APPS.PA_PROJ_ROLE_COMPETENCES_V ,
-
View: PA_PROJ_ROLE_COMPETENCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ROLE_COMPETENCES_V, object_name:PA_PROJ_ROLE_COMPETENCES_V, status:VALID, product: PA - Projects , description: This view returns the competences for a Project role , implementation_dba_data: APPS.PA_PROJ_ROLE_COMPETENCES_V ,
-
View: PA_OPEN_ASGMT_COMPETENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OPEN_ASGMT_COMPETENCES_V, object_name:PA_OPEN_ASGMT_COMPETENCES_V, status:VALID, product: PA - Projects , description: This view returns the competences for a Requirement , implementation_dba_data: APPS.PA_OPEN_ASGMT_COMPETENCES_V ,
-
View: PA_OPEN_ASGMT_COMPETENCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OPEN_ASGMT_COMPETENCES_V, object_name:PA_OPEN_ASGMT_COMPETENCES_V, status:VALID, product: PA - Projects , description: This view returns the competences for a Requirement , implementation_dba_data: APPS.PA_OPEN_ASGMT_COMPETENCES_V ,
-
VIEW: APPS.PA_REP_ORG_COMP_SUM_V
12.1.1
-
VIEW: APPS.PA_REP_ORG_COMP_SUM_V
12.2.2
-
View: PA_RESOURCE_COMPETENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_COMPETENCES_V, object_name:PA_RESOURCE_COMPETENCES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RESOURCE_COMPETENCES_V ,
-
View: PA_REQMNT_COMPETENCES_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REQMNT_COMPETENCES_AMG_V, object_name:PA_REQMNT_COMPETENCES_AMG_V, status:VALID, product: PA - Projects , description: This view shows all competences for a project requirement. , implementation_dba_data: APPS.PA_REQMNT_COMPETENCES_AMG_V ,
-
View: PA_REQMNT_COMPETENCES_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REQMNT_COMPETENCES_AMG_V, object_name:PA_REQMNT_COMPETENCES_AMG_V, status:VALID, product: PA - Projects , description: This view shows all competences for a project requirement. , implementation_dba_data: APPS.PA_REQMNT_COMPETENCES_AMG_V ,
-
View: PA_RESOURCE_COMPETENCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_COMPETENCES_V, object_name:PA_RESOURCE_COMPETENCES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RESOURCE_COMPETENCES_V ,
-
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_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.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_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 ,
-
View: PA_REP_ORG_COMP_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_ORG_COMP_SUM_V, object_name:PA_REP_ORG_COMP_SUM_V, status:VALID, product: PA - Projects , description: A view that shows organization competence summary , implementation_dba_data: APPS.PA_REP_ORG_COMP_SUM_V ,
-
View: PA_REP_ORG_COMP_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_ORG_COMP_SUM_V, object_name:PA_REP_ORG_COMP_SUM_V, status:VALID, product: PA - Projects , description: A view that shows organization competence summary , implementation_dba_data: APPS.PA_REP_ORG_COMP_SUM_V ,
-
APPS.PA_HR_COMPETENCE_UTILS SQL Statements
12.1.1
-
APPS.PA_HR_COMPETENCE_UTILS SQL Statements
12.2.2
-
APPS.CCT_JTFRESOURCEROUTING_PUB SQL Statements
12.1.1
-
APPS.CCT_JTFRESOURCEROUTING_PUB SQL Statements
12.2.2
-
APPS.PA_COMPETENCE_PUB SQL Statements
12.1.1
-
APPS.PA_COMPETENCE_PUB SQL Statements
12.2.2
-
APPS.PA_COMP_PROFILE_PUB SQL Statements
12.1.1
-
APPS.PA_COMP_PROFILE_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CCT_JTFRESOURCEROUTING_PUB
12.2.2
-
PACKAGE BODY: APPS.CCT_JTFRESOURCEROUTING_PUB
12.1.1
-
PACKAGE BODY: APPS.PA_HR_COMPETENCE_UTILS
12.2.2
-
APPS.CCT_JTFRESOURCEROUTING_PUB dependencies on PER_COMPETENCE_ELEMENTS
12.1.1
-
PACKAGE BODY: APPS.PA_HR_COMPETENCE_UTILS
12.1.1
-
APPS.CCT_JTFRESOURCEROUTING_PUB dependencies on PER_COMPETENCE_ELEMENTS
12.2.2
-
APPS.CCT_JTFRESOURCEROUTING_PUB dependencies on PER_COMPETENCES
12.2.2
-
APPS.CCT_JTFRESOURCEROUTING_PUB dependencies on PER_COMPETENCES
12.1.1
-
APPS.PA_HR_COMPETENCE_UTILS dependencies on PER_COMPETENCE_ELEMENTS
12.1.1
-
PACKAGE BODY: APPS.PA_COMP_PROFILE_PUB
12.2.2
-
PACKAGE BODY: APPS.PA_COMP_PROFILE_PUB
12.1.1
-
APPS.PA_HR_COMPETENCE_UTILS dependencies on PER_COMPETENCE_ELEMENTS
12.2.2
-
PACKAGE BODY: APPS.PA_COMPETENCE_PUB
12.1.1
-
APPS.PA_HR_COMPETENCE_UTILS dependencies on PER_RATING_LEVELS
12.1.1