Search Results document_source




Overview

FV_FACTS_TRX_V is a read-only database view owned by the APPS schema within the FV – Federal Financials product family of Oracle E-Business Suite. Its documented purpose is to publish FACTS (Financial Accounting and Cost Tracking System) transaction register information to RXi, the reporting and extract layer used by federal agencies for external reporting. The view is classified as VALID, meaning it is compiled and available at runtime in both EBS 12.1.1 and 12.2.2 environments where Federal Financials has been implemented.

The view serves as a reporting-facing projection over the staging table FV_FACTS_TRX_TEMP. Rather than exposing raw staging rows, it joins the temporary transaction register to General Ledger code combinations, Treasury symbol definitions, and flexfield value descriptions, producing an enriched, human-readable transaction register suitable for downstream federal reporting and reconciliation. Because it is a view rather than a table, it introduces no additional storage and reflects the current contents of its base objects at query time.

Underlying Base Objects

The view is defined over the following documented base objects:

The join structure is driven from FV_FACTS_TRX_TEMP through CODE_COMBINATION_ID and TREASURY_SYMBOL_ID, with the remaining objects enriching the result set and enforcing access control.

Key Columns

The view exposes a broad set of transaction and accounting attributes. Principal columns include:

Common Use Cases and Queries

Typical uses include FACTS transaction register extracts, RXi report sourcing, and reconciliation of staged federal transactions against General Ledger balances. A simple retrieval by ledger and period:

  • SELECT document_number, transaction_date, account_number, debit, credit, treasury_symbol FROM apps.fv_facts_trx_v WHERE set_of_books_id = :p_sob AND period_name = :p_period;
  • SELECT fed_non_fed, SUM(debit - credit) FROM apps.fv_facts_trx_v GROUP BY fed_non_fed;
  • SELECT segment1, segment2, account_number, orig_docno FROM apps.fv_facts_trx_v WHERE journal_creation_date >= :p_from_date AND journal_creation_date < :p_to_date;

Because access is governed in part through GL_ACCESS_SET_LEDGERS, queries return only the ledgers the executing responsibility is authorized to view. Reports should therefore pass the appropriate ledger and period filters rather than scanning the view unfiltered.

  • View: FV_FACTS_TRX_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:FV.FV_FACTS_TRX_V,  object_name:FV_FACTS_TRX_V,  status:VALID,  product: FV - Federal Financialsdescription: This view is used to publish FACTS transactrion register information in Rxi ,  implementation_dba_data: APPS.FV_FACTS_TRX_V

  • View: FV_FACTS_TRX_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:FV.FV_FACTS_TRX_V,  object_name:FV_FACTS_TRX_V,  status:VALID,  product: FV - Federal Financialsdescription: This view is used to publish FACTS transactrion register information in Rxi ,  implementation_dba_data: APPS.FV_FACTS_TRX_V