Search Results fa_balances_rep_itf
Overview
The FA_BALANCES_REP_ITF table is a report interface (staging) table owned by the FA schema within the Oracle Assets (OFA) module of Oracle E-Business Suite. Its documented description — "Interface table for Report eXchange reports" — identifies it as a transient data repository that holds pre-computed asset balance information in a flattened structure suitable for consumption by Oracle Report eXchange (RX) reporting extracts. Rather than serving as a transactional base table like FA_ADDITIONS_B or FA_BOOKS, this object is populated and subsequently read by reporting programs, then typically purged or reused between runs.
Under a heuristic Data Vault classification mined from its foreign-key structure, the table is assessed as satellite-leaning. This is a modeling suggestion: the table stores descriptive and quantitative attributes that describe asset balances at a point in time, with a single foreign-key relationship anchoring it to a parent hub. It does not function as a link table resolving many-to-many relationships, nor does it own independently-tracked business keys across multiple hubs.
Key Information Stored
The table exposes 42 documented columns in the 12.2.2 schema. The most operationally significant are:
- REQUEST_ID — Concatenated request identifier that ties a row to a specific concurrent program run, enabling per-run partitioning and cleanup.
- COMPANY, COST_CENTER, ACCOUNT, COST_ACCOUNT — Accounting flexfield segments used to group asset balance roll-ups by organization and cost centre.
- ASSET_NUMBER, TAG_NUMBER, ASSET_KEY, SERIAL_NUMBER — Asset identification attributes, with
ASSET_KEYacting as the natural business key linking back to the asset definition. - BOOK_TYPE_CODE — The depreciation book under which the balances are reported.
- BEGIN_BALANCE, ADDITIONS, ADJUSTMENTS, RETIREMENTS, REVALUATIONS, RECLASSES, CAPITALIZATIONS, TRANSFERS, DEPRECIATION, AMORTIZATION, END_BALANCE — The full movement schedule reconciling opening to closing cost balances.
- OUT_OF_BALANCE_FLAG — A control flag indicating rows where
BEGIN_BALANCEplus movements does not equalEND_BALANCE. - GROUP_ASSET_NUMBER — The foreign-key column referencing
FA_ADDITIONS_B.
The table does not expose a documented surrogate single-column primary key; REQUEST_ID combined with asset and book identifiers forms the practical business-key candidate for row uniqueness within a run.
Common Use Cases and Queries
The principal use case is delivering reconciled asset movement reports through Report eXchange. A typical extract filters by concurrent request:
SELECT asset_number, book_type_code, begin_balance, additions, retirements, depreciation, end_balance FROM fa_balances_rep_itf WHERE request_id = :p_request_id;- Balance integrity checks:
SELECT * FROM fa_balances_rep_itf WHERE out_of_balance_flag = 'Y'; - Cost-centre roll-ups for management reporting:
SELECT cost_center, SUM(begin_balance), SUM(end_balance) FROM fa_balances_rep_itf WHERE request_id = :p_request_id GROUP BY cost_center; - Reconciliation against the asset master using the FK join:
... FROM fa_balances_rep_itf i, fa_additions_b a WHERE i.group_asset_number = a.asset_number;
Because rows are request-scoped, queries should always constrain on REQUEST_ID to avoid returning data from prior runs.
Related Objects
The documented foreign-key relationship anchors this table to the asset master, and several surrounding objects participate in the same reporting flow:
- FA_ADDITIONS_B — joined via
FA_BALANCES_REP_ITF.GROUP_ASSET_NUMBER = FA_ADDITIONS_B.ASSET_NUMBER; the parent hub for asset identification. - FA_BOOKS — source of depreciation and book-type balance movements.
- FA_BALANCES — the underlying balance table from which interface rows are derived.
- FA_ASSET_HISTORY — transaction detail supporting the movement columns.
- FA_DEPRN_SUMMARY — depreciation figures feeding the
DEPRECIATIONandAMORTIZATIONcolumns. - FND_CONCURRENT_REQUESTS — correlates
REQUEST_IDwith the invoking program.
-
Table: FA_BALANCES_REP_ITF
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BALANCES_REP_ITF, object_name:FA_BALANCES_REP_ITF, status:VALID, product: OFA - Assets , description: Interface table for Report eXchange reports , implementation_dba_data: FA.FA_BALANCES_REP_ITF ,
-
Table: FA_BALANCES_REP_ITF
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BALANCES_REP_ITF, object_name:FA_BALANCES_REP_ITF, status:VALID, product: OFA - Assets , description: Interface table for Report eXchange reports , implementation_dba_data: FA.FA_BALANCES_REP_ITF ,
-
SYNONYM: APPS.FA_BALANCES_REP_ITF
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_BALANCES_REP_ITF, status:VALID,
-
VIEW: FA.FA_BALANCES_REP_ITF#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_BALANCES_REP_ITF#, status:VALID,
-
SYNONYM: APPS.FA_BALANCES_REP_ITF
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_BALANCES_REP_ITF, status:VALID,
-
VIEW: FA.FA_BALANCES_REP_ITF#
12.2.2
-
TABLE: FA.FA_BALANCES_REP_ITF
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BALANCES_REP_ITF, object_name:FA_BALANCES_REP_ITF, status:VALID,
-
TABLE: FA.FA_BALANCES_REP_ITF
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BALANCES_REP_ITF, object_name:FA_BALANCES_REP_ITF, status:VALID,
-
PACKAGE BODY: APPS.FARX_BL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FARX_BL, status:VALID,
-
PACKAGE BODY: APPS.FARX_BL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FARX_BL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: FA_ADDITIONS_B
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ADDITIONS_B, object_name:FA_ADDITIONS_B, status:VALID, product: OFA - Assets , description: Descriptive information about assets (base MLS table) , implementation_dba_data: FA.FA_ADDITIONS_B ,
-
Table: FA_ADDITIONS_B
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ADDITIONS_B, object_name:FA_ADDITIONS_B, status:VALID, product: OFA - Assets , description: Descriptive information about assets (base MLS table) , implementation_dba_data: FA.FA_ADDITIONS_B ,
-
APPS.FARX_BL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FARX_BL
12.1.1
-
APPS.FARX_BL SQL Statements
12.2.2
-
APPS.FARX_BL dependencies on FA_BALANCES_REP_ITF
12.2.2
-
APPS.FARX_BL dependencies on FA_BALANCES_REP_ITF
12.1.1
-
PACKAGE BODY: APPS.FARX_BL
12.2.2
-
APPS.FARX_BL dependencies on FA_ADDITIONS
12.1.1
-
APPS.FARX_BL dependencies on FA_ADDITIONS
12.2.2
-
eTRM - OFA Tables and Views
12.2.2
-
eTRM - OFA Tables and Views
12.1.1
-
eTRM - OFA Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - OFA Tables and Views
12.2.2