Search Results per_grades
Overview
The PER_GRADES table is a core data object within the Oracle E-Business Suite Human Resources (PER) module. It serves as the master repository for all grade definitions within a business group. A grade is a classification level within an organization's job hierarchy, often linked to compensation ranges, career progression paths, and approval authorities. This table is fundamental for structuring the workforce, managing assignments, and administering compensation and benefits policies. Its integrity is critical as it is referenced extensively across HR, Payroll, and related modules to enforce business rules and maintain data consistency.
Key Information Stored
The table stores the defining attributes for each grade. Its primary key is the system-generated, unique GRADE_ID. A composite unique key on NAME and BUSINESS_GROUP_ID ensures grade names are unique within a business group. The BUSINESS_GROUP_ID column links the grade to its owning business group via a foreign key to HR_ALL_ORGANIZATION_UNITS. Another critical column is GRADE_DEFINITION_ID, which links to the PER_GRADE_DEFINITIONS table, allowing for the association of a specific grade with a broader grade structure or ladder. Other typical columns, inferred from standard implementations, would include effective start and end dates (EFFECTIVE_START_DATE, EFFECTIVE_END_DATE), a sequence number (SEQUENCE), and descriptive attributes like COMMENTS.
Common Use Cases and Queries
This table is central to numerous operational and reporting processes. Common use cases include validating grade assignments for employees and positions, configuring grade-based eligibility for salary elements or benefits, and generating organizational grade distribution reports. A typical query retrieves all active grades for a business group:
SELECT grade_id, name FROM per_grades WHERE business_group_id = &bg_id AND SYSDATE BETWEEN effective_start_date AND NVL(effective_end_date, SYSDATE) ORDER BY sequence;
Another frequent pattern is joining to assignment data to analyze the employee population by grade:
SELECT pg.name, COUNT(pa.person_id) FROM per_grades pg, per_all_assignments_f pa WHERE pg.grade_id = pa.grade_id AND pa.primary_flag = 'Y' AND SYSDATE BETWEEN pa.effective_start_date AND pa.effective_end_date GROUP BY pg.name;
Related Objects
As indicated by the extensive foreign key relationships, PER_GRADES is a pivotal table integrated with many HR and Payroll functions. Key related objects include:
PER_ALL_ASSIGNMENTS_F: Links an employee's primary assignment to a grade viaGRADE_ID.HR_ALL_POSITIONS_FandPER_ALL_VACANCIES: Store the entry or default grade for a position or vacancy.PAY_ELEMENT_LINKS_F: Enables grade-based eligibility for compensation elements.PER_GRADE_SPINES_F: Defines salary points or ranges associated with a grade.PER_VALID_GRADES: Defines valid grade progressions for jobs.PQH_BUDGET_DETAILSandPER_BUDGET_ELEMENTS: Used in position budgeting and control.- Other modules like Global Human Resources (
GHR_PA_REQUESTS,GHR_COMPLAINT_COSTS) and Procurement (AP_POL_SCHEDULE_OPTIONS) also reference grades for specific functional rules.
-
Table: PER_GRADES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADES, object_name:PER_GRADES, status:VALID, product: PER - Human Resources , description: Grade definitions for a business group. , implementation_dba_data: HR.PER_GRADES ,
-
Table: PER_GRADES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADES, object_name:PER_GRADES, status:VALID, product: PER - Human Resources , description: Grade definitions for a business group. , implementation_dba_data: HR.PER_GRADES ,
-
View: HR_GRADE_JPG_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_JPG_LOV_V, object_name:HR_GRADE_JPG_LOV_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_JPG_LOV_V ,
-
View: HR_GRADE_JPG_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_JPG_BASE_V, object_name:HR_GRADE_JPG_BASE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_JPG_BASE_V ,
-
View: HR_GRADE_JPG_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_JPG_LOV_V, object_name:HR_GRADE_JPG_LOV_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_JPG_LOV_V ,
-
View: HR_GRADE_JPG_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_JPG_BASE_V, object_name:HR_GRADE_JPG_BASE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_JPG_BASE_V ,
-
View: HR_GRADE_POS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_POS_LOV_V, object_name:HR_GRADE_POS_LOV_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_POS_LOV_V ,
-
View: HR_GRADE_POS_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_POS_BASE_V, object_name:HR_GRADE_POS_BASE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_POS_BASE_V ,
-
View: HR_GRADE_POS_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_POS_BASE_V, object_name:HR_GRADE_POS_BASE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_POS_BASE_V ,
-
View: HR_GRADE_POS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_POS_LOV_V, object_name:HR_GRADE_POS_LOV_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_POS_LOV_V ,
-
View: HR_GRADE_JOB_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_JOB_BASE_V, object_name:HR_GRADE_JOB_BASE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_JOB_BASE_V ,
-
View: HR_GRADE_JOB_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_JOB_LOV_V, object_name:HR_GRADE_JOB_LOV_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_JOB_LOV_V ,
-
View: HR_GRADE_JOB_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_JOB_LOV_V, object_name:HR_GRADE_JOB_LOV_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_JOB_LOV_V ,
-
View: HR_GRADE_JOB_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_JOB_BASE_V, object_name:HR_GRADE_JOB_BASE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_JOB_BASE_V ,
-
Table: PER_GRADES_TL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADES_TL, object_name:PER_GRADES_TL, status:VALID, product: PER - Human Resources , description: Trnslated fields for per_grades , implementation_dba_data: HR.PER_GRADES_TL ,
-
Table: PER_GRADES_TL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADES_TL, object_name:PER_GRADES_TL, status:VALID, product: PER - Human Resources , description: Trnslated fields for per_grades , implementation_dba_data: HR.PER_GRADES_TL ,
-
Lookup Type: BEN_MAPPING_PLAN_TABLE
12.1.1
product: PER - Human Resources , meaning: Object to which Plan is mapped to , description: Object to which Plan is mapped to ,
-
Table: PER_GRADE_DEFINITIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADE_DEFINITIONS, object_name:PER_GRADE_DEFINITIONS, status:VALID, product: PER - Human Resources , description: Grade key flexfield combinations table. , implementation_dba_data: HR.PER_GRADE_DEFINITIONS ,
-
Table: PER_GRADE_DEFINITIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADE_DEFINITIONS, object_name:PER_GRADE_DEFINITIONS, status:VALID, product: PER - Human Resources , description: Grade key flexfield combinations table. , implementation_dba_data: HR.PER_GRADE_DEFINITIONS ,
-
Lookup Type: BEN_MAPPING_PLAN_TABLE
12.2.2
product: PER - Human Resources , meaning: Object to which Plan is mapped to , description: Object to which Plan is mapped to ,
-
View: HR_GRADE_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_LOV_V, object_name:HR_GRADE_LOV_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_LOV_V ,
-
View: HR_GRADE_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_BASE_V, object_name:HR_GRADE_BASE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_BASE_V ,
-
View: HR_GRADE_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_LOV_V, object_name:HR_GRADE_LOV_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_LOV_V ,
-
View: HR_GRADE_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_GRADE_BASE_V, object_name:HR_GRADE_BASE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_GRADE_BASE_V ,
-
Table: PER_GRADE_SPINES_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADE_SPINES_F, object_name:PER_GRADE_SPINES_F, status:VALID, product: PER - Human Resources , description: Stores the progression points for each grade scale. , implementation_dba_data: HR.PER_GRADE_SPINES_F ,
-
Table: PER_GRADE_SPINES_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADE_SPINES_F, object_name:PER_GRADE_SPINES_F, status:VALID, product: PER - Human Resources , description: Stores the progression points for each grade scale. , implementation_dba_data: HR.PER_GRADE_SPINES_F ,
-
Table: PER_VALID_GRADES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_VALID_GRADES, object_name:PER_VALID_GRADES, status:VALID, product: PER - Human Resources , description: Lists valid grades for jobs and positions. , implementation_dba_data: HR.PER_VALID_GRADES ,
-
Table: PER_MM_ASSIGNMENTS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_MM_ASSIGNMENTS, object_name:PER_MM_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: PER_MM_ASSIGNMENTS holds assignments that were defined as part of a mass move. , implementation_dba_data: HR.PER_MM_ASSIGNMENTS ,
-
Table: PER_MM_ASSIGNMENTS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_MM_ASSIGNMENTS, object_name:PER_MM_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: PER_MM_ASSIGNMENTS holds assignments that were defined as part of a mass move. , implementation_dba_data: HR.PER_MM_ASSIGNMENTS ,
-
Table: PER_VALID_GRADES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_VALID_GRADES, object_name:PER_VALID_GRADES, status:VALID, product: PER - Human Resources , description: Lists valid grades for jobs and positions. , implementation_dba_data: HR.PER_VALID_GRADES ,
-
Table: PER_MM_VALID_GRADES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_MM_VALID_GRADES, object_name:PER_MM_VALID_GRADES, status:VALID, product: PER - Human Resources , description: PER_MM_VALID_GRADES holds valid grades that will be moved with a position during a mass move. , implementation_dba_data: HR.PER_MM_VALID_GRADES ,
-
Table: PER_MM_VALID_GRADES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_MM_VALID_GRADES, object_name:PER_MM_VALID_GRADES, status:VALID, product: PER - Human Resources , description: PER_MM_VALID_GRADES holds valid grades that will be moved with a position during a mass move. , implementation_dba_data: HR.PER_MM_VALID_GRADES ,
-
Table: HR_ALL_POSITIONS_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_ALL_POSITIONS_F, object_name:HR_ALL_POSITIONS_F, status:VALID, product: PER - Human Resources , description: Position definition information. , implementation_dba_data: HR.HR_ALL_POSITIONS_F ,
-
Table: HR_ALL_POSITIONS_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_ALL_POSITIONS_F, object_name:HR_ALL_POSITIONS_F, status:VALID, product: PER - Human Resources , description: Position definition information. , implementation_dba_data: HR.HR_ALL_POSITIONS_F ,
-
Table: PER_SALARY_SURVEY_MAPPINGS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_SALARY_SURVEY_MAPPINGS, object_name:PER_SALARY_SURVEY_MAPPINGS, status:VALID, product: PER - Human Resources , description: Mapping information for a salary survey line. , implementation_dba_data: HR.PER_SALARY_SURVEY_MAPPINGS ,
-
Table: PER_BUDGET_ELEMENTS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_BUDGET_ELEMENTS, object_name:PER_BUDGET_ELEMENTS, status:VALID, product: PER - Human Resources , description: Combinations of organization, grade, job, and position used to define detailed budget values. , implementation_dba_data: HR.PER_BUDGET_ELEMENTS ,
-
Table: PER_SALARY_SURVEY_MAPPINGS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_SALARY_SURVEY_MAPPINGS, object_name:PER_SALARY_SURVEY_MAPPINGS, status:VALID, product: PER - Human Resources , description: Mapping information for a salary survey line. , implementation_dba_data: HR.PER_SALARY_SURVEY_MAPPINGS ,
-
Table: PER_BUDGET_ELEMENTS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_BUDGET_ELEMENTS, object_name:PER_BUDGET_ELEMENTS, status:VALID, product: PER - Human Resources , description: Combinations of organization, grade, job, and position used to define detailed budget values. , implementation_dba_data: HR.PER_BUDGET_ELEMENTS ,
-
View: HRFV_GRADE_RATE_ASGS_BG
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADE_RATE_ASGS_BG, object_name:HRFV_GRADE_RATE_ASGS_BG, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADE_RATE_ASGS_BG ,
-
View: HRFV_GRADE_RATE_ASGS_BG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADE_RATE_ASGS_BG, object_name:HRFV_GRADE_RATE_ASGS_BG, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADE_RATE_ASGS_BG ,
-
Table: PER_ALL_VACANCIES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_VACANCIES, object_name:PER_ALL_VACANCIES, status:VALID, product: PER - Human Resources , description: Vacancies within a specific requisition. , implementation_dba_data: HR.PER_ALL_VACANCIES ,
-
Table: PER_ALL_VACANCIES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_VACANCIES, object_name:PER_ALL_VACANCIES, status:VALID, product: PER - Human Resources , description: Vacancies within a specific requisition. , implementation_dba_data: HR.PER_ALL_VACANCIES ,
-
Table: PER_ALL_ASSIGNMENTS_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_F, object_name:PER_ALL_ASSIGNMENTS_F, status:VALID, product: PER - Human Resources , description: Employee and applicant assignment details. , implementation_dba_data: HR.PER_ALL_ASSIGNMENTS_F ,
-
View: HRFV_GRADES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADES, object_name:HRFV_GRADES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADES ,
-
View: HRFV_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADES, object_name:HRFV_GRADES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADES ,
-
Table: PER_ALL_ASSIGNMENTS_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_F, object_name:PER_ALL_ASSIGNMENTS_F, status:VALID, product: PER - Human Resources , description: Employee and applicant assignment details. , implementation_dba_data: HR.PER_ALL_ASSIGNMENTS_F ,
-
View: HRFV_VALID_GRADES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_VALID_GRADES, object_name:HRFV_VALID_GRADES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_VALID_GRADES ,
-
View: HRFV_VALID_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_VALID_GRADES, object_name:HRFV_VALID_GRADES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_VALID_GRADES ,
-
View: HRFV_REQUIRED_COMPETENCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_REQUIRED_COMPETENCES, object_name:HRFV_REQUIRED_COMPETENCES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_REQUIRED_COMPETENCES ,
-
View: HRFV_REQUIRED_COMPETENCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_REQUIRED_COMPETENCES, object_name:HRFV_REQUIRED_COMPETENCES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_REQUIRED_COMPETENCES ,