Search Results per_pay_bases
Overview
The PER_PAY_BASES table is a core reference table within the Oracle E-Business Suite Human Resources (PER) module. It serves as the master repository for defining specific salary or compensation bases used across the application. A pay basis is a fundamental concept that determines the unit of measurement for an employee's salary, such as an annual salary, an hourly rate, or a monthly wage. This table is essential for configuring and processing compensation correctly, as it links payroll calculations to the defined units of pay. Its role is to provide a standardized, business-group-specific list of valid pay bases that can be assigned to positions, assignments, and payroll elements, ensuring consistency in compensation management.
Key Information Stored
The table stores the definitional attributes for each pay basis. Its primary identifier is the PAY_BASIS_ID. Key columns include the NAME of the pay basis (e.g., 'Annual', 'Hourly'), which is unique within a BUSINESS_GROUP_ID. The BUSINESS_GROUP_ID itself is a critical column that enforces data security and partitioning at the business group level. Two other significant columns are INPUT_VALUE_ID and RATE_ID, which form a unique key with BUSINESS_GROUP_ID. These columns establish a direct link to the PAY_RATES table (via RATE_ID) and to the underlying input value definitions in the payroll engine, thereby connecting the pay basis concept to specific rate definitions and calculation rules used in payroll processing.
Common Use Cases and Queries
A primary use case is validating and reporting on the compensation structure for employees. For instance, an HR analyst may need to list all pay bases defined within a specific business group. A common reporting query involves joining PER_PAY_BASES to assignment data to analyze compensation by pay type.
- Sample Query: List all active pay bases for a business group:
SELECT name, pay_basis_id FROM per_pay_bases WHERE business_group_id = &business_group_id ORDER BY name; - Sample Query: Find assignments using a specific pay basis (e.g., Hourly):
SELECT ppa.assignment_number, ppa.full_name FROM per_all_assignments_f ppa JOIN per_pay_bases ppb ON ppa.pay_basis_id = ppb.pay_basis_id WHERE ppb.name = 'Hourly' AND SYSDATE BETWEEN ppa.effective_start_date AND ppa.effective_end_date;
This table is also central during payroll setup and when creating or updating positions and assignments, as the PAY_BASIS_ID is a required reference.
Related Objects
As indicated by the foreign key relationships, PER_PAY_BASES is a key reference point for several major entities. The PAY_RATES table is directly linked via the RATE_ID. Crucially, the PAY_BASIS_ID is referenced by HR_ALL_POSITIONS_F (to define the pay basis for a position), PER_ALL_ASSIGNMENTS_F (to define the pay basis for an employee's assignment), and PAY_ELEMENT_LINKS_F (to link payroll elements to specific pay bases). It is also referenced by PQH_POSITION_TRANSACTIONS for position management workflows. All these relationships underscore its role as a master data table for compensation configuration within the HR and Payroll modules.
-
Table: PER_PAY_BASES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PAY_BASES, object_name:PER_PAY_BASES, status:VALID, product: PER - Human Resources , description: Definitions of specific salary bases. , implementation_dba_data: HR.PER_PAY_BASES ,
-
Table: PER_PAY_BASES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_PAY_BASES, object_name:PER_PAY_BASES, status:VALID, product: PER - Human Resources , description: Definitions of specific salary bases. , implementation_dba_data: HR.PER_PAY_BASES ,
-
View: PER_FULL_SALARY_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_FULL_SALARY_HISTORY_V, object_name:PER_FULL_SALARY_HISTORY_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_FULL_SALARY_HISTORY_V ,
-
View: PER_FULL_SALARY_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_FULL_SALARY_HISTORY_V, object_name:PER_FULL_SALARY_HISTORY_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_FULL_SALARY_HISTORY_V ,
-
View: HR_H2PI_PAY_BASES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_H2PI_PAY_BASES_V, object_name:HR_H2PI_PAY_BASES_V, status:VALID, product: PER - Human Resources , description: Contains data related to Oracle HR to Oracle Payroll Interface (H2PI) for pay bases , implementation_dba_data: APPS.HR_H2PI_PAY_BASES_V ,
-
View: PER_PAY_PROPOSALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PAY_PROPOSALS_V, object_name:PER_PAY_PROPOSALS_V, status:VALID, product: PER - Human Resources , description: Employee salary proposal and performance review information. , implementation_dba_data: APPS.PER_PAY_PROPOSALS_V ,
-
View: HR_H2PI_PAY_BASES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_H2PI_PAY_BASES_V, object_name:HR_H2PI_PAY_BASES_V, status:VALID, product: PER - Human Resources , description: Contains data related to Oracle HR to Oracle Payroll Interface (H2PI) for pay bases , implementation_dba_data: APPS.HR_H2PI_PAY_BASES_V ,
-
View: PER_PEOPLE_V4
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V4, object_name:PER_PEOPLE_V4, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V4 ,
-
View: PER_PEOPLE_V4
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V4, object_name:PER_PEOPLE_V4, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V4 ,
-
View: PER_PAY_PROPOSALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PAY_PROPOSALS_V, object_name:PER_PAY_PROPOSALS_V, status:VALID, product: PER - Human Resources , description: Employee salary proposal and performance review information. , implementation_dba_data: APPS.PER_PAY_PROPOSALS_V ,
-
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_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_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_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_SALARIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARIES, object_name:HRFV_SALARIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARIES ,
-
View: HRFV_SALARIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARIES, object_name:HRFV_SALARIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARIES ,
-
View: HRFV_GRADE_RATES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADE_RATES, object_name:HRFV_GRADE_RATES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADE_RATES ,
-
View: HRFV_CURRENT_SALARIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_CURRENT_SALARIES, object_name:HRFV_CURRENT_SALARIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_CURRENT_SALARIES ,
-
View: HRFV_GRADE_RATES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADE_RATES, object_name:HRFV_GRADE_RATES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADE_RATES ,
-
View: HRFV_CURRENT_SALARIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_CURRENT_SALARIES, object_name:HRFV_CURRENT_SALARIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_CURRENT_SALARIES ,
-
View: PER_ALL_ASSIGNMENTS_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_D, object_name:PER_ALL_ASSIGNMENTS_D, status:VALID, product: PER - Human Resources , description: Used by Datetrack History , implementation_dba_data: APPS.PER_ALL_ASSIGNMENTS_D ,
-
View: PER_ALL_ASSIGNMENTS_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_D, object_name:PER_ALL_ASSIGNMENTS_D, status:VALID, product: PER - Human Resources , description: Used by Datetrack History , implementation_dba_data: APPS.PER_ALL_ASSIGNMENTS_D ,
-
View: HRFV_SALARY_PRO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARY_PRO, object_name:HRFV_SALARY_PRO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARY_PRO ,
-
View: HRFV_SALARY_PRO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARY_PRO, object_name:HRFV_SALARY_PRO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARY_PRO ,
-
View: HRFV_EMPLOYEE_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_EMPLOYEE_ASSIGNMENTS, object_name:HRFV_EMPLOYEE_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_EMPLOYEE_ASSIGNMENTS ,
-
View: HRFV_EMPLOYEE_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_EMPLOYEE_ASSIGNMENTS, object_name:HRFV_EMPLOYEE_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_EMPLOYEE_ASSIGNMENTS ,
-
View: HR_CERIDIAN_ASSIGNMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_ASSIGNMENT_V, object_name:HR_CERIDIAN_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_ASSIGNMENT_V ,
-
View: HR_CERIDIAN_ASSIGNMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_ASSIGNMENT_V, object_name:HR_CERIDIAN_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_ASSIGNMENT_V ,
-
View: PER_KR_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_KR_ASSIGNMENTS_V, object_name:PER_KR_ASSIGNMENTS_V, status:VALID, product: PER - Human Resources , description: KR specific , implementation_dba_data: APPS.PER_KR_ASSIGNMENTS_V ,
-
View: PER_KR_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_KR_ASSIGNMENTS_V, object_name:PER_KR_ASSIGNMENTS_V, status:VALID, product: PER - Human Resources , description: KR specific , implementation_dba_data: APPS.PER_KR_ASSIGNMENTS_V ,
-
View: HR_ADP_ASSIGNMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_ASSIGNMENT_V, object_name:HR_ADP_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_ASSIGNMENT_V ,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: PER_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V, object_name:PER_ASSIGNMENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V ,
-
View: PER_ASSIGNMENTS_V13
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V13, object_name:PER_ASSIGNMENTS_V13, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V13 ,
-
View: HR_ADP_ASSIGNMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_ASSIGNMENT_V, object_name:HR_ADP_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_ASSIGNMENT_V ,
-
View: PER_ASSIGNMENTS_V13
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V13, object_name:PER_ASSIGNMENTS_V13, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V13 ,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: PER_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V, object_name:PER_ASSIGNMENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V ,
-
View: HRU_SALARY_PROPOSALS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRU_SALARY_PROPOSALS, object_name:HRU_SALARY_PROPOSALS, status:VALID, product: PER - Human Resources , description: Lists salary proposals including their components, also used to upload slary proposals via ADE. , implementation_dba_data: APPS.HRU_SALARY_PROPOSALS ,
-
View: PER_ASSIGNMENTS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V2, object_name:PER_ASSIGNMENTS_V2, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V2 ,
-
View: HRU_SALARY_PROPOSALS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRU_SALARY_PROPOSALS, object_name:HRU_SALARY_PROPOSALS, status:VALID, product: PER - Human Resources , description: Lists salary proposals including their components, also used to upload slary proposals via ADE. , implementation_dba_data: APPS.HRU_SALARY_PROPOSALS ,
-
View: PER_ASSIGNMENTS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V2, object_name:PER_ASSIGNMENTS_V2, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V2 ,
-
View: HR_CERIDIAN_500_ASSIGNMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_ASSIGNMENT_V, object_name:HR_CERIDIAN_500_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_ASSIGNMENT_V ,
-
View: HR_CERIDIAN_500_ASSIGNMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_ASSIGNMENT_V, object_name:HR_CERIDIAN_500_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_ASSIGNMENT_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 ,