Search Results gl_rx_trial_balance_itf
Overview
GL_RX_TRIAL_BALANCE_ITF is an interface table owned by the GL schema in Oracle E-Business Suite General Ledger. Its documented purpose is to serve as the staging interface for country-specific trial balance reports delivered through the GL (General Ledger) "RX" reporting framework. Rather than storing live subledger or journal activity directly, the table is populated by a concurrent program and consumed by report-generation logic that formats the balances according to localized statutory requirements.
From a Data Vault modeling perspective (heuristic, derived from the foreign-key structure), this table is best classified as a link object. It does not carry the enduring, slowly-changing descriptive attributes of a hub, nor the type-2 historical tracking of a satellite; instead it records the association between a concurrent-request execution, an accounting ledger, a chart of accounts, and a reporting currency, together with the resolved period balances for a single run.
Key Information Stored
The table contains 25 documented columns. The most significant are as follows:
- REQUEST_ID — identifier of the concurrent request that populated the row; it is the FK to FND_CONCURRENT_REQUESTS and effectively the run-level grouping key.
- PERIOD_NAME — the accounting period for which the trial balance is reported.
- LEDGER_ID — FK to GL_SETS_OF_BOOKS_11I, identifying the ledger whose balances are being extracted.
- LEDGER_NAME — denormalized ledger description for report display.
- CHART_OF_ACCOUNTS_ID — FK to GL_MGT_SEG_UPGRADE_H, tying the row to the appropriate account structure.
- CURRENCY_CODE — FK to FND_CURRENCIES, the currency in which amounts are presented.
- BALANCING_SEGMENT / BALANCING_DESCRIPTION — the balancing (company) segment value and its description.
- ACCOUNT_SEGMENT / ACCOUNT_DESCRIPTION — the natural-account segment value and its description.
- SUMMARY_FLAG — indicates whether the row is a summary (parent) or detail account line.
- BEGIN_YEAR_BALANCE_DR / _CR — opening balance brought forward at the start of the fiscal year.
- BEGIN_PERIOD_BALANCE_DR / _CR — balance at the beginning of the selected period.
- PERIOD_NET_DR / _CR — net activity posted within the period, split by debit and credit.
- YEAR_TO_DATE_BALANCE_DR / _CR — cumulative year-to-date balances.
- YEAR_TO_DATE_NET_DIFFERENCE_DR / _CR — the YTD net difference columns used to validate the balance presentation.
The metadata does not document a dedicated surrogate primary key or a unique index; the table is effectively keyed by the combination of REQUEST_ID, PERIOD_NAME, LEDGER_ID, CURRENCY_CODE, and the balancing/account segment pair for a given run.
Common Use Cases and Queries
The principal use case is post-run inspection and reconciliation of a country-specific trial balance report. A typical query retrieves all lines for the latest request run:
SELECT request_id, period_name, ledger_id, currency_code,
balancing_segment, account_segment,
period_net_dr, period_net_cr,
year_to_date_balance_dr, year_to_date_balance_cr
FROM gl.gl_rx_trial_balance_itf
WHERE request_id = :p_request_id
ORDER BY balancing_segment, account_segment;
Supporting scenarios include verifying that debit and credit totals tie out by period, comparing YTD balances across ledgers, extracting a run's data into a spreadsheet for statutory filing, and diagnosing why a report produced no output (an empty REQUEST_ID indicates the concurrent program failed to populate the interface).
Related Objects
The following objects are directly referenced through the documented foreign keys:
- FND_CONCURRENT_REQUESTS — joined on GL_RX_TRIAL_BALANCE_ITF.REQUEST_ID; provides run timing, status, and parameters.
- GL_SETS_OF_BOOKS_11I — joined on LEDGER_ID; supplies ledger and accounting-period-setup context.
- FND_CURRENCIES — joined on CURRENCY_CODE; supplies currency name and precision.
- GL_MGT_SEG_UPGRADE_H — joined on CHART_OF_ACCOUNTS_ID; relates the row to the management segment upgrade history.
The concurrent program that loads the table, together with the reporting template that consumes it, are the primary functional dependencies and should be reviewed alongside the table when troubleshooting country-specific trial balance output.
-
Table: GL_RX_TRIAL_BALANCE_ITF
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_RX_TRIAL_BALANCE_ITF, object_name:GL_RX_TRIAL_BALANCE_ITF, status:VALID, product: GL - General Ledger , description: Interface table for country-specific trial balance reports , implementation_dba_data: GL.GL_RX_TRIAL_BALANCE_ITF ,
-
Table: GL_RX_TRIAL_BALANCE_ITF
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_RX_TRIAL_BALANCE_ITF, object_name:GL_RX_TRIAL_BALANCE_ITF, status:VALID, product: GL - General Ledger , description: Interface table for country-specific trial balance reports , implementation_dba_data: GL.GL_RX_TRIAL_BALANCE_ITF ,
-
VIEW: GL.GL_RX_TRIAL_BALANCE_ITF#
12.2.2
owner:GL, object_type:VIEW, object_name:GL_RX_TRIAL_BALANCE_ITF#, status:VALID,
-
SYNONYM: APPS.GL_RX_TRIAL_BALANCE_ITF
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_RX_TRIAL_BALANCE_ITF, status:VALID,
-
SYNONYM: APPS.GL_RX_TRIAL_BALANCE_ITF
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_RX_TRIAL_BALANCE_ITF, status:VALID,
-
APPS.GL_RX_TRIAL_BALANCE_PKG SQL Statements
12.2.2
-
APPS.GL_RX_TRIAL_BALANCE_PKG SQL Statements
12.1.1
-
VIEW: GL.GL_RX_TRIAL_BALANCE_ITF#
12.2.2
-
PACKAGE BODY: APPS.JE_GR_TRIAL_BALANCE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JE_GR_TRIAL_BALANCE, status:VALID,
-
PACKAGE BODY: APPS.GL_RX_TRIAL_BALANCE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_RX_TRIAL_BALANCE_PKG, status:VALID,
-
PACKAGE BODY: APPS.JE_GR_TRIAL_BALANCE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JE_GR_TRIAL_BALANCE, status:VALID,
-
TABLE: GL.GL_RX_TRIAL_BALANCE_ITF
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_RX_TRIAL_BALANCE_ITF, object_name:GL_RX_TRIAL_BALANCE_ITF, status:VALID,
-
TABLE: GL.GL_RX_TRIAL_BALANCE_ITF
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_RX_TRIAL_BALANCE_ITF, object_name:GL_RX_TRIAL_BALANCE_ITF, status:VALID,
-
PACKAGE BODY: APPS.GL_RX_TRIAL_BALANCE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_RX_TRIAL_BALANCE_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.GL_RX_TRIAL_BALANCE_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GL_RX_TRIAL_BALANCE_PKG
12.1.1
-
APPS.JE_GR_TRIAL_BALANCE SQL Statements
12.1.1
-
APPS.JE_GR_TRIAL_BALANCE SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
Table: FND_CONCURRENT_REQUESTS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CONCURRENT_REQUESTS, object_name:FND_CONCURRENT_REQUESTS, status:VALID, product: FND - Application Object Library , description: Concurrent requests information , implementation_dba_data: APPLSYS.FND_CONCURRENT_REQUESTS ,
-
Table: GL_SETS_OF_BOOKS_11I
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS_11I, object_name:GL_SETS_OF_BOOKS_11I, status:VALID, product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: GL.GL_SETS_OF_BOOKS_11I ,
-
Table: FND_CONCURRENT_REQUESTS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CONCURRENT_REQUESTS, object_name:FND_CONCURRENT_REQUESTS, status:VALID, product: FND - Application Object Library , description: Concurrent requests information , implementation_dba_data: APPLSYS.FND_CONCURRENT_REQUESTS ,
-
Table: GL_SETS_OF_BOOKS_11I
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS_11I, object_name:GL_SETS_OF_BOOKS_11I, status:VALID, product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: GL.GL_SETS_OF_BOOKS_11I ,
-
Table: FND_CURRENCIES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
Table: FND_CURRENCIES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
APPS.JE_GR_TRIAL_BALANCE dependencies on GL_RX_TRIAL_BALANCE_ITF
12.2.2
-
APPS.GL_RX_TRIAL_BALANCE_PKG dependencies on GL_RX_TRIAL_BALANCE_ITF
12.1.1
-
APPS.GL_RX_TRIAL_BALANCE_PKG dependencies on GL_RX_TRIAL_BALANCE_ITF
12.2.2
-
APPS.JE_GR_TRIAL_BALANCE dependencies on GL_RX_TRIAL_BALANCE_ITF
12.1.1
-
APPS.GL_RX_TRIAL_BALANCE_PKG dependencies on FA_RX_SHARED_PKG
12.1.1
-
APPS.GL_RX_TRIAL_BALANCE_PKG dependencies on FA_RX_SHARED_PKG
12.2.2
-
PACKAGE BODY: APPS.JE_GR_TRIAL_BALANCE
12.2.2
-
PACKAGE BODY: APPS.JE_GR_TRIAL_BALANCE
12.1.1
-
eTRM - SQLGL Tables and Views
12.2.2
description: This table contains the tracking information that Golden Gate will use to launch Journal Import. ,
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - SQLGL Tables and Views
12.2.2
description: This table contains the tracking information that Golden Gate will use to launch Journal Import. ,
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,