Search Results reported_new




Overview

APPS.FV_FACTS_TB_V is a reporting view in Oracle EBS Financials that surfaces trial balance (TB) fact records captured by the Treasury/funds management (FV) subsystem. It is one of the ETRM (Enterprise Treasury/Funds) integration views used to expose accounting facts staged in FV_FACTS_TEMP to downstream reporting, reconciliation, and GL integration processes. The view is defined specifically for records whose integration record category is REPORTED_NEW and whose integration record type is TB, meaning it presents only newly reported trial balance facts — the freshly captured fact rows that have not yet been superseded by other categories.

Because the view joins to GL_ACCESS_SET_LEDGERS and filters by GL_ACCESS_SET_ID via FND_PROFILE.VALUE, it is access-set aware: users see only the ledgers their responsibility is authorized to access. This makes it suitable for embedded reporting, dashboard queries, and integration extracts that must respect Oracle EBS data security.

Underlying Base Objects

Key Columns

Common Use Cases and Queries

Typical uses include reconciliation of reported Treasury trial balances against GL balances, extraction feeds to federal reporting, and validation of appropriation category attributes on newly reported facts.

SELECT sgl_acct_number, treasury_symbol, currency_code,
       begin_amt, period_activity, end_amt
FROM   apps.fv_facts_tb_v
WHERE  treasury_symbol = :p_symbol;

Filtering for funds control exceptions:

SELECT code_combination_id, deficiency_flag, pya_flag, dr_amount, cr_amount
FROM   apps.fv_facts_tb_v
WHERE  deficiency_flag = 'Y'
   OR  pya_flag = 'Y';

Because the view already enforces REPORTED_NEW and TB selection plus access-set security, queries can be issued directly without additional ledger predicates, though adding TREASURY_SYMBOL_ID or CODE_COMBINATION_ID filters improves performance on large fact volumes.