Search Results fv_xla_po_ref_v
Overview
FV_XLA_PO_REF_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the FV – Federal Financials product. Its purpose is to expose the purchase order and prior-year adjustment reference attributes required by the Subledger Accounting (XLA) and federal funds control processes. The view projects selected columns from the global temporary table FV_EXTRACT_DETAIL_GT, filtered to a single application context, and renames each column with a FEDERAL_ prefix so that the Subledger Accounting extraction logic can consume a stable, semantically explicit interface.
The name itself reflects this role: the XLA segment indicates the subledger accounting integration point, PO indicates the purchasing-related extraction that seeds the data, and REF indicates a reference or lookup view. In effect, FV_XLA_PO_REF_V presents an accounting-ready projection of federal extract detail — fund value, fund category, prior-year amounts, and Treasury Coefficient (TCF) adjustments — without requiring downstream code to reference the temporary table directly.
Underlying Base Objects
ETRM documentation identifies exactly one referenced base object: FV_EXTRACT_DETAIL_GT (TABLE), a global temporary table. This view is therefore a thin, single-table projection rather than a join or aggregate. The crucial behaviour lies in the WHERE clause, which restricts rows to APPLICATION_ID = 201. Application ID 201 corresponds to the Federal Financials application within the EBS application registry, so the view exposes only the FV-owned extract rows that have been populated into the shared temporary table by the federal extraction program.
Because FV_EXTRACT_DETAIL_GT is a global temporary table, the data visible through this view is session-scoped and transient. Rows persist only for the duration of the session or transaction that populated them, typically during the execution of the subledger accounting extract or funds availability process. Consumers must therefore call the view within the context of the same concurrent request or session that performed the extraction; querying it at an arbitrary time from another session will generally return no rows.
Key Columns
- FEDERAL_EVENT_ID — The XLA accounting event identifier, mapping the extract row back to the subledger event that generated it.
- FEDERAL_LINE_NUMBER — The line-level reference within the originating event.
- FEDERAL_FUND_VALUE and FEDERAL_FUND_CATEGORY — The Treasury Account Symbol fund components used for federal funds control and reporting.
- FEDERAL_FUND_EXPIRED_STATUS — Indicates whether the associated fund is expired, which drives appropriation-law validation.
- FEDERAL_PRIOR_YEAR_FLAG, FEDERAL_PYA_AMT, and FEDERAL_PYA_DIFF_AMT — Prior-year adjustment indicators and monetary values, including the difference between entered and system-calculated prior-year amounts.
- FEDERAL_ADJUSTMENT_TYPE and FEDERAL_NET_PYA_ADJ_AMT — The classification and net value of prior-year adjustments.
- FEDERAL_ANTICIPATION, FEDERAL_ANTICIPATED_AMT, and FEDERAL_UNANTICIPATED_AMT — Anticipation status and the split of amounts between anticipated and unanticipated authority.
- FEDERAL_TCF_AMT — The Treasury Coefficient amount applied to the line.
Common Use Cases and Queries
The principal use case is diagnostic: confirming that the federal extraction populated correctly before subledger accounting creates the final journal entries, and tracing a specific XLA event back to its fund, prior-year, and anticipation attributes. For example, to inspect the federal attributes of a particular event:
SELECT federal_event_id, federal_line_number, federal_fund_value, federal_fund_category, federal_pya_amt, federal_tcf_amt FROM fv_xla_po_ref_v WHERE federal_event_id = :event_id;SELECT federal_fund_category, federal_prior_year_flag, SUM(federal_pya_amt), SUM(federal_tcf_amt) FROM fv_xla_po_ref_v GROUP BY federal_fund_category, federal_prior_year_flag;SELECT COUNT(*) FROM fv_xla_po_ref_v WHERE federal_fund_expired_status = 'Y' AND federal_pya_amt <> 0;
These queries return data only when executed in a session where the federal extract has already been run, reflecting the temporary-table origin of the underlying rows.
-
View: FV_XLA_PO_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_XLA_PO_REF_V, object_name:FV_XLA_PO_REF_V, status:VALID, product: FV - Federal Financials , implementation_dba_data: APPS.FV_XLA_PO_REF_V ,
-
View: FV_XLA_PO_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_XLA_PO_REF_V, object_name:FV_XLA_PO_REF_V, status:VALID, product: FV - Federal Financials , implementation_dba_data: APPS.FV_XLA_PO_REF_V ,
-
APPS.XLA_00201_AAD_S_000004_BC_PKG SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.XLA_00201_AAD_S_000004_BC_PKG SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.XLA_00201_AAD_S_000004_BC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_00201_AAD_S_000004_BC_PKG, status:VALID,
-
PACKAGE BODY: APPS.XLA_00201_AAD_S_000004_BC_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_00201_AAD_S_000004_BC_PKG, status:VALID,
-
VIEW: APPS.FV_XLA_PO_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_XLA_PO_REF_V, object_name:FV_XLA_PO_REF_V, status:VALID,
-
VIEW: APPS.FV_XLA_PO_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_XLA_PO_REF_V, object_name:FV_XLA_PO_REF_V, status:VALID,
-
TABLE: APPS.FV_EXTRACT_DETAIL_GT
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.FV_EXTRACT_DETAIL_GT FV.FV_EXTRACT_DETAIL_GT, object_name:FV_EXTRACT_DETAIL_GT, status:VALID,
-
TABLE: APPS.FV_EXTRACT_DETAIL_GT
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:FND.FV_EXTRACT_DETAIL_GT FV.FV_EXTRACT_DETAIL_GT, object_name:FV_EXTRACT_DETAIL_GT, status:VALID,
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on FV_XLA_PO_REF_V
12.1.1
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on FV_XLA_PO_REF_V
12.2.2
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on PO_DISTS_REF_V
12.1.1
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on PO_DISTS_REF_V
12.2.2
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on XLA_EVENTS_GT
12.2.2
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on XLA_EVENTS_GT
12.1.1
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on PO_EXTRACT_DETAIL_V
12.1.1
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on PO_EXTRACT_DETAIL_V
12.2.2
-
eTRM - FV Tables and Views
12.2.2
description: Temporary table populated during the Year End Closing process ,
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on ALL_OBJECTS
12.2.2
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on ALL_OBJECTS
12.1.1
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on PO_REQ_EXTRACT_DETAIL_V
12.1.1
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on PO_REQ_EXTRACT_DETAIL_V
12.2.2
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on PO_REQ_LINES_REF_V
12.1.1
-
APPS.XLA_00201_AAD_S_000004_BC_PKG dependencies on PO_REQ_LINES_REF_V
12.2.2
-
eTRM - FV Tables and Views
12.1.1
description: Temporary table populated during the Year End Closing process ,
-
PACKAGE BODY: APPS.XLA_00201_AAD_S_000004_BC_PKG
12.1.1
-
PACKAGE BODY: APPS.XLA_00201_AAD_S_000004_BC_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - FV Tables and Views
12.2.2
description: Temporary table populated during the Year End Closing process ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FV Tables and Views
12.1.1
description: Temporary table populated during the Year End Closing process ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,