Search Results per_qualifications
Overview
The PER_QUALIFICATIONS table is a core data structure within the Oracle E-Business Suite (EBS) Human Resources (HR) module, specifically under the PER product family. It serves as the central repository for storing records of formal and professional credentials associated with a person. This includes completed or in-progress educational qualifications, professional certifications, licenses, and other formally recognized achievements. Its primary role is to maintain a comprehensive historical and current profile of an individual's credentials, which is fundamental for talent management, compliance reporting, career development, and workforce planning processes within the application.
Key Information Stored
The table's structure is designed to capture the essential details of a qualification. The primary identifier is the system-generated QUALIFICATION_ID. Each record is uniquely constrained by a combination of START_DATE, QUALIFICATION_TYPE_ID, ATTENDANCE_ID, TITLE, BUSINESS_GROUP_ID, and PERSON_ID, as defined by the PER_QUALIFICATIONS_UK unique key. Critical columns include PERSON_ID, which links the qualification to an individual in the PER_ALL_PEOPLE_F table; QUALIFICATION_TYPE_ID, a foreign key to PER_QUALIFICATION_TYPES that classifies the credential (e.g., Degree, License, Certificate); and ATTENDANCE_ID, which can link to an educational institution record in PER_ESTABLISHMENT_ATTENDANCES. The BUSINESS_GROUP_ID anchors the record to the appropriate organizational security context. Additional columns typically store details such as the qualification's title, grade, awarding body, completion date, and any expiry information.
Common Use Cases and Queries
This table is pivotal for generating employee skills and qualifications profiles, verifying compliance for job roles requiring specific licenses, and reporting on organizational talent pools. Common reporting needs include listing all employees holding a specific certification or identifying individuals whose professional licenses are nearing expiration. A typical query might join PER_QUALIFICATIONS with PER_ALL_PEOPLE_F and PER_QUALIFICATION_TYPES to produce a readable report.
- Sample Query Pattern: To find employees with an active 'Project Management Professional' certification:
SELECT papf.full_name, pq.title, pq.date_obtained FROM per_qualifications pq, per_all_people_f papf, per_qualification_types pqt WHERE pq.person_id = papf.person_id AND pq.qualification_type_id = pqt.qualification_type_id AND SYSDATE BETWEEN papf.effective_start_date AND papf.effective_end_date AND pqt.name = 'Professional Certification' AND pq.title LIKE '%PMP%' AND (pq.expiry_date IS NULL OR pq.expiry_date > SYSDATE);
Related Objects
PER_QUALIFICATIONS is a central node in the HR data model with several key relationships. It is a child table of PER_QUALIFICATION_TYPES (for the type of qualification) and HR_ALL_ORGANIZATION_UNITS (for the business group). It can optionally link to PER_ESTABLISHMENT_ATTENDANCES to associate the qualification with a specific educational institution. Crucially, it acts as a parent table to PER_SUBJECTS_TAKEN, which stores detailed subject or module results for a broader qualification. This table is also heavily referenced by key HRMS APIs and is the foundation for numerous standard and custom HR reports concerning employee development and credentials.
-
Table: PER_QUALIFICATIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_QUALIFICATIONS, object_name:PER_QUALIFICATIONS, status:VALID, product: PER - Human Resources , description: A record of educational qualification, certificates, licenses, etc that a person holds or is acquiring. , implementation_dba_data: HR.PER_QUALIFICATIONS ,
-
Table: PER_QUALIFICATIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_QUALIFICATIONS, object_name:PER_QUALIFICATIONS, status:VALID, product: PER - Human Resources , description: A record of educational qualification, certificates, licenses, etc that a person holds or is acquiring. , implementation_dba_data: HR.PER_QUALIFICATIONS ,
-
Table: PER_QUALIFICATIONS_EFC
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_QUALIFICATIONS_EFC, object_name:PER_QUALIFICATIONS_EFC, status:VALID, product: PER - Human Resources , description: This is a copy of the PER_QUALIFICATIONS table which is populated by the EFC (Euro as Functional Currency) process. , implementation_dba_data: HR.PER_QUALIFICATIONS_EFC ,
-
Table: PER_SUBJECTS_TAKEN
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_SUBJECTS_TAKEN, object_name:PER_SUBJECTS_TAKEN, status:VALID, product: PER - Human Resources , description: Holds a record of a person's subject usages for a qualification , implementation_dba_data: HR.PER_SUBJECTS_TAKEN ,
-
Table: PER_SUBJECTS_TAKEN
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_SUBJECTS_TAKEN, object_name:PER_SUBJECTS_TAKEN, status:VALID, product: PER - Human Resources , description: Holds a record of a person's subject usages for a qualification , implementation_dba_data: HR.PER_SUBJECTS_TAKEN ,
-
Table: PER_QUALIFICATION_TYPES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_QUALIFICATION_TYPES, object_name:PER_QUALIFICATION_TYPES, status:VALID, product: PER - Human Resources , description: Maintains the list of qualiification types that can be attained. , implementation_dba_data: HR.PER_QUALIFICATION_TYPES ,
-
Table: PER_QUALIFICATIONS_EFC
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_QUALIFICATIONS_EFC, object_name:PER_QUALIFICATIONS_EFC, status:VALID, product: PER - Human Resources , description: This is a copy of the PER_QUALIFICATIONS table which is populated by the EFC (Euro as Functional Currency) process. , implementation_dba_data: HR.PER_QUALIFICATIONS_EFC ,
-
View: HRFV_QUALIFICATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_QUALIFICATIONS, object_name:HRFV_QUALIFICATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_QUALIFICATIONS ,
-
Table: PER_QUALIFICATION_TYPES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_QUALIFICATION_TYPES, object_name:PER_QUALIFICATION_TYPES, status:VALID, product: PER - Human Resources , description: Maintains the list of qualiification types that can be attained. , implementation_dba_data: HR.PER_QUALIFICATION_TYPES ,
-
View: HRFV_QUALIFICATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_QUALIFICATIONS, object_name:HRFV_QUALIFICATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_QUALIFICATIONS ,
-
Table: PER_ESTABLISHMENT_ATTENDANCES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ESTABLISHMENT_ATTENDANCES, object_name:PER_ESTABLISHMENT_ATTENDANCES, status:VALID, product: PER - Human Resources , description: A record of educational establishments that a person is currently attending or has previously attended. , implementation_dba_data: HR.PER_ESTABLISHMENT_ATTENDANCES ,
-
Table: PER_ESTABLISHMENT_ATTENDANCES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ESTABLISHMENT_ATTENDANCES, object_name:PER_ESTABLISHMENT_ATTENDANCES, status:VALID, product: PER - Human Resources , description: A record of educational establishments that a person is currently attending or has previously attended. , implementation_dba_data: HR.PER_ESTABLISHMENT_ATTENDANCES ,
-
View: HRFV_SUBJECTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SUBJECTS, object_name:HRFV_SUBJECTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SUBJECTS ,
-
View: HRFV_SUBJECTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SUBJECTS, object_name:HRFV_SUBJECTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SUBJECTS ,
-
View: PER_QUALIFICATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_QUALIFICATIONS_VL, object_name:PER_QUALIFICATIONS_VL, status:VALID, product: PER - Human Resources , description: mls view for qualifications , implementation_dba_data: APPS.PER_QUALIFICATIONS_VL ,
-
View: PER_QUALIFICATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_QUALIFICATIONS_VL, object_name:PER_QUALIFICATIONS_VL, status:VALID, product: PER - Human Resources , description: mls view for qualifications , implementation_dba_data: APPS.PER_QUALIFICATIONS_VL ,
-
View: PER_ZA_FORMAL_QUALIFICATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ZA_FORMAL_QUALIFICATIONS_V, object_name:PER_ZA_FORMAL_QUALIFICATIONS_V, status:VALID, product: PER - Human Resources , description: PER_ZA_FORMAL_QUALIFICATIONS_V is used to maintain table PER_ZA_FORMAL_QUALIFICATIONS via NQF forms. , implementation_dba_data: APPS.PER_ZA_FORMAL_QUALIFICATIONS_V ,
-
View: PER_ZA_FORMAL_QUALIFICATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ZA_FORMAL_QUALIFICATIONS_V, object_name:PER_ZA_FORMAL_QUALIFICATIONS_V, status:VALID, product: PER - Human Resources , description: PER_ZA_FORMAL_QUALIFICATIONS_V is used to maintain table PER_ZA_FORMAL_QUALIFICATIONS via NQF forms. , implementation_dba_data: APPS.PER_ZA_FORMAL_QUALIFICATIONS_V ,
-
View: PER_QUALIFICATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_QUALIFICATIONS_V, object_name:PER_QUALIFICATIONS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_QUALIFICATIONS_V ,
-
View: PER_QUALIFICATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_QUALIFICATIONS_V, object_name:PER_QUALIFICATIONS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_QUALIFICATIONS_V ,
-
Table: HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,
-
Table: HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,