Search Results pay_person_latest_balances
Overview
The PAY_PERSON_LATEST_BALANCES table is a core data object within the Oracle E-Business Suite Payroll module (versions 12.1.1 and 12.2.2). It serves as a critical performance and reporting table by storing the most current, or "latest," calculated balance values for employees. Its primary role is to provide instantaneous access to key payroll figures—such as year-to-date earnings, tax withholdings, or deduction totals—without requiring the system to recalculate historical payroll runs. This design is essential for efficient payroll processing, real-time inquiries, and the generation of accurate payslips and regulatory reports.
Key Information Stored
The table's structure is centered on linking an employee (person) with a specific balance and its current value. While the full column list is not detailed in the provided metadata, the documented primary and foreign keys reveal its essential components. The LATEST_BALANCE_ID column is the table's unique primary key. The DEFINED_BALANCE_ID is a foreign key that links to the PAY_DEFINED_BALANCES table, identifying the specific balance type (e.g., "Regular Earnings YTD"). The table must also contain a column to identify the employee (commonly PERSON_ID or ASSIGNMENT_ID) and a column to store the numerical BALANCE_VALUE. Additional columns likely exist to track context values, such as the effective date of the latest balance or the business group.
Common Use Cases and Queries
This table is predominantly used for real-time payroll reporting and validation. A common use case is retrieving an employee's current gross-to-date or net-to-date pay for an earnings statement. Another is verifying that deduction limits (e.g., for a 401(k) plan) have not been exceeded before processing a new payroll run. A typical query pattern involves joining to person and balance definition tables:
- SELECT ppb.name balance_name, pplb.balance_value
- FROM pay_person_latest_balances pplb,
- pay_defined_balances pdb,
- pay_balance_types ppb
- WHERE pplb.defined_balance_id = pdb.defined_balance_id
- AND pdb.balance_type_id = ppb.balance_type_id
- AND pplb.person_id = :p_person_id;
Direct manipulation of this table via DML is strongly discouraged; balances are maintained by the payroll calculation engine.
Related Objects
As per the documented foreign key relationship, PAY_PERSON_LATEST_BALANCES has a direct and crucial dependency on the PAY_DEFINED_BALANCES table via the DEFINED_BALANCE_ID column. This relationship ensures that every stored balance value is linked to a valid, configured balance definition. The table is also intrinsically related to core payroll tables such as PAY_BALANCE_TYPES (which defines the balance category) and PAY_ASSIGNMENT_ACTIONS/PAY_RUN_RESULTS (which are the sources of the balance calculations). Inquiries and reports often join through PAY_DEFINED_BALANCES to these other tables to retrieve descriptive balance names and context.
-
Table: PAY_PERSON_LATEST_BALANCES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_PERSON_LATEST_BALANCES, object_name:PAY_PERSON_LATEST_BALANCES, status:VALID, product: PAY - Payroll , description: Latest balance values for a person. , implementation_dba_data: HR.PAY_PERSON_LATEST_BALANCES ,
-
Table: PAY_PERSON_LATEST_BALANCES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_PERSON_LATEST_BALANCES, object_name:PAY_PERSON_LATEST_BALANCES, status:VALID, product: PAY - Payroll , description: Latest balance values for a person. , implementation_dba_data: HR.PAY_PERSON_LATEST_BALANCES ,
-
APPS.PAY_BALANCE_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.HRASSACT dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.PAY_CORE_UPGRADE_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.PAY_DEFINED_BALANCES_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.PY_ROLLBACK_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.PAY_JP_DIMENSION_GENERATOR_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.PAY_DEFINED_BALANCES_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.BEN_DISTRIBUTE_RATES dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.PAY_PAYROLL_ACTIONS_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.PAY_US_GEO_UPD_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.HR_DELETE dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.HRASSACT dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.PAY_BALANCE_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.PAY_CORE_UPGRADE_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.HR_DELETE dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.BEN_DISTRIBUTE_RATES dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.PAY_US_GEO_UPD_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.PY_GB_ASG dependencies on PAY_PERSON_LATEST_BALANCES
12.1.1
-
APPS.PAY_PAYROLL_ACTIONS_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.PY_ROLLBACK_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.PAY_JP_DIMENSION_GENERATOR_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.PY_GB_ASG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
APPS.PAY_BALANCE_FEED_DEL_PKG dependencies on PAY_PERSON_LATEST_BALANCES
12.2.2
-
TABLE: HR.PAY_PERSON_LATEST_BALANCES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_PERSON_LATEST_BALANCES, object_name:PAY_PERSON_LATEST_BALANCES, status:VALID,
-
VIEW: HR.PAY_PERSON_LATEST_BALANCES#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_PERSON_LATEST_BALANCES#, status:VALID,
-
VIEW: HR.PAY_PERSON_LATEST_BALANCES#
12.2.2
-
APPS.PY_ROLLBACK_PKG dependencies on PAY_BALANCE_CONTEXT_VALUES
12.2.2
-
APPS.HRASSACT dependencies on PAY_BALANCE_CONTEXT_VALUES
12.1.1
-
SYNONYM: APPS.PAY_PERSON_LATEST_BALANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_PERSON_LATEST_BALANCES, status:VALID,
-
SYNONYM: PUBLIC.PAY_PERSON_LATEST_BALANCES
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAY_PERSON_LATEST_BALANCES, status:VALID,
-
APPS.PAY_BALANCE_FEED_DEL_PKG dependencies on PAY_BALANCE_CONTEXT_VALUES
12.2.2
-
VIEW: APPS.PAY_PER_LATEST_BALANCES_V1
12.2.2
-
SYNONYM: APPS.PAY_PERSON_LATEST_BALANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_PERSON_LATEST_BALANCES, status:VALID,
-
TABLE: HR.PAY_PERSON_LATEST_BALANCES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_PERSON_LATEST_BALANCES, object_name:PAY_PERSON_LATEST_BALANCES, status:VALID,
-
APPS.PY_GB_ASG dependencies on HR_UTILITY
12.2.2
-
APPS.HRASSACT dependencies on PAY_DEFINED_BALANCES
12.1.1
-
APPS.HRASSACT dependencies on PAY_BALANCE_CONTEXT_VALUES
12.2.2
-
APPS.PY_ROLLBACK_PKG dependencies on PAY_BALANCE_CONTEXT_VALUES
12.1.1
-
VIEW: APPS.PAY_PER_LATEST_BALANCES_V1
12.1.1
-
APPS.PY_GB_ASG dependencies on HR_UTILITY
12.1.1
-
APPS.PY_GB_ASG SQL Statements
12.2.2
-
APPS.PY_GB_ASG SQL Statements
12.1.1
-
APPS.HRASSACT dependencies on PAY_DEFINED_BALANCES
12.2.2
-
VIEW: APPS.PAY_BALANCE_DEFINED_DIMENSIONS
12.1.1
-
VIEW: APPS.PAY_BALANCE_DEFINED_DIMENSIONS
12.2.2
-
APPS.PAY_BALANCE_FEED_DEL_PKG dependencies on PAY_DEFINED_BALANCES
12.2.2
-
APPS.PAY_BALANCE_FEED_DEL_PKG SQL Statements
12.2.2
-
APPS.BEN_DISTRIBUTE_RATES dependencies on PAY_ASSIGNMENT_ACTIONS
12.1.1