Search Results ax_balances_pk
Overview
The AX_BALANCES table is a core data structure within the Oracle E-Business Suite Global Accounting Engine (AX) module. It serves as the central repository for storing subledger accounting balance information specifically for control accounts. In the architectural framework of Oracle EBS Release 12.1.1 and 12.2.2, this table is critical for the Subledger Accounting (SLA) process, which governs the creation of accounting entries from subledger transactions. Its primary role is to maintain aggregated, period-level balances by key accounting dimensions, enabling reconciliation between subledger detail and the general ledger (GL) and supporting financial reporting integrity.
Key Information Stored
The table's structure is designed to uniquely identify a balance record through its primary key columns, which also define the fundamental dimensions of the stored data. The critical columns include:
- SET_OF_BOOKS_ID: Identifies the ledger for which the balance is maintained.
- APPLICATION_ID: Specifies the source subledger application (e.g., Payables, Receivables).
- CODE_COMBINATION_ID: References the specific control account from GL_CODE_COMBINATIONS.
- PERIOD_NAME: The accounting period for the balance, linked to GL_PERIOD_STATUSES.
- THIRD_PARTY_ID: Identifies the trading partner (customer, supplier) associated with the balance.
- SUB_ID: Provides further granularity, often representing a sub-identifier within the third party or application context.
Alongside these key columns, the table stores balance amounts (typically columns like OPEN_BALANCE_DR, OPEN_BALANCE_CR, PERIOD_NET_DR, PERIOD_NET_CR, CLOSING_BALANCE), which hold the aggregated monetary values for the defined dimension combination.
Common Use Cases and Queries
This table is essential for reconciliation and audit processes. A primary use case is verifying that the sum of subledger balances for a control account matches the corresponding balance in the general ledger. Financial analysts use it to generate detailed subledger trial balances or aging reports by third party. Common SQL queries involve joining to related descriptive tables. For example, to retrieve subledger balances for a specific period and account:
SELECT ab.PERIOD_NAME, gcc.SEGMENT1, ab.THIRD_PARTY_ID, ab.CLOSING_BALANCE
FROM AX.AX_BALANCES ab,
GL.GL_CODE_COMBINATIONS gcc
WHERE ab.CODE_COMBINATION_ID = gcc.CODE_COMBINATION_ID
AND ab.SET_OF_BOOKS_ID = 1234
AND ab.PERIOD_NAME = 'JAN-2024'
AND ab.APPLICATION_ID = 222; -- e.g., AP
Another critical pattern is period-closing reconciliation, comparing AX_BALANCES totals to GL_BALANCES for a given code combination and period.
Related Objects
As indicated by its foreign keys, AX_BALANCES has direct dependencies on several fundamental General Ledger tables. The primary related objects are:
- GL_CODE_COMBINATIONS: Provides the account segment values and descriptive information for the CODE_COMBINATION_ID.
- GL_PERIOD_STATUSES: Validates the accounting period and its status (Open, Closed) for the given ledger and application.
- GL_BALANCES: The target table for reconciliation; the aggregated balances in AX_BALANCES for control accounts should reconcile to corresponding sums in GL_BALANCES.
- AX_BALANCES_PK: The primary key constraint enforcing uniqueness on the core dimension columns.
This table is also a likely source for various SLA reconciliation reports and custom data extracts supporting subledger-to-GL integrity checks.
-
Table: AX_BALANCES
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_BALANCES, object_name:AX_BALANCES, status:VALID, product: AX - Global Accounting Engine , description: Subledger accounting balance information for control accounts , implementation_dba_data: AX.AX_BALANCES ,
-
Table: AX_BALANCES
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_BALANCES, object_name:AX_BALANCES, status:VALID, product: AX - Global Accounting Engine , description: Subledger accounting balance information for control accounts , implementation_dba_data: AX.AX_BALANCES ,
-
TABLE: AX.AX_BALANCES
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_BALANCES, object_name:AX_BALANCES, status:VALID,
-
TABLE: AX.AX_BALANCES
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_BALANCES, object_name:AX_BALANCES, status:VALID,
-
eTRM - AX Tables and Views
12.2.2
description: Absorption information ,
-
eTRM - AX Tables and Views
12.1.1
description: Absorption information ,
-
eTRM - AX Tables and Views
12.1.1
description: Absorption information ,
-
eTRM - AX Tables and Views
12.2.2
description: Absorption information ,