Search Results treasury_symbol
Overview
FV_FUND_PARAMETERS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Treasury (ETRM) product family. It exposes a de-duplicated list of treasury symbols together with the set of books under which they are defined. The view is intentionally narrow: its projection consists of exactly two columns, TREASURY_SYMBOL and SET_OF_BOOKS_ID, derived by applying a DISTINCT operator to the underlying fund parameters table. This design makes the view a canonical lookup source for valid treasury symbols rather than a transactional reporting object.
Because the view is defined with DISTINCT and contains no joins, it is inexpensive to query and suitable for use as a value-set source, an LOV query, or a reference in custom concurrent programs and reports. In an EBS 12.1.1 or 12.2.2 environment, it supports both the multi-org accounting model (by exposing SET_OF_BOOKS_ID) and treasury instrument identification (by exposing TREASURY_SYMBOL).
Underlying Base Objects
The documented metadata identifies a single referenced base object: FV_FUND_PARAMETERS, accessed through a synonym in the APPS schema. The view text is:
SELECT DISTINCT(TREASURY_SYMBOL) TREASURY_SYMBOL, SET_OF_BOOKS_ID FROM FV_FUND_PARAMETERS
FV_FUND_PARAMETERS stores the parameter rows that configure treasury funds and instruments. Each row carries a treasury symbol and an associated set of books identifier. By collapsing those rows with DISTINCT, the view answers a single question: which combinations of treasury symbol and set of books exist. No filtering predicate, hint, or outer join appears in the view text, so the view inherits the base table's data visibility and any row-level security applied through the synonym.
Key Columns
- TREASURY_SYMBOL — The identifying code for a treasury instrument or fund as configured in ETRM. Because the DISTINCT applies specifically to this column in combination with SET_OF_BOOKS_ID, values recur across sets of books but are unique within each combination.
- SET_OF_BOOKS_ID — The internal identifier of the accounting set of books (ledger) to which the treasury symbol belongs. This column is the multi-org discriminator and should almost always be constrained in queries to avoid returning data across unrelated ledgers.
No descriptive columns such as names, descriptions, or enable flags are exposed. Consumers requiring those attributes must join back to FV_FUND_PARAMETERS or to related ETRM configuration tables.
Common Use Cases and Queries
The primary use case is populating selection lists and validating treasury symbols before they are entered into transactions or stored in custom staging tables. A typical parameter-driven query is:
SELECT treasury_symbol, set_of_books_id
FROM apps.fv_fund_parameters_v
WHERE set_of_books_id = :p_set_of_books_id
ORDER BY treasury_symbol;
A second common pattern verifies whether a specific symbol is valid for a ledger:
SELECT COUNT(*)
FROM apps.fv_fund_parameters_v
WHERE treasury_symbol = :p_symbol
AND set_of_books_id = :p_set_of_books_id;
The view is also useful as a source for LOV definitions in Oracle Forms personalizations and in Oracle Application Framework value sets, and for reconciliation queries that compare the symbols present in FV_FUND_PARAMETERS_V against those referenced in downstream treasury transactions. Because the view exposes only the symbol and the set of books, any report requiring fund names, maturity dates, or instrument type details must join to FV_FUND_PARAMETERS or the appropriate ETRM instrument tables on TREASURY_SYMBOL and SET_OF_BOOKS_ID. Query analysts should also note that the DISTINCT is computed over both columns, so a symbol assigned to three sets of books produces three rows.
-
VIEW: APPS.FV_FUND_PARAMETERS_V
12.1.1
-
VIEW: FV.FV_TP_TS_AMT_DATA#
12.2.2
-
VIEW: FV.FV_YE_CLOSED_TREASURY_SYMBOLS#
12.2.2
-
VIEW: FV.FV_FACTS_RUN#
12.2.2
-
VIEW: APPS.FV_FUND_PARAMETERS_V
12.2.2
-
VIEW: FV.FV_SF1219_AUDITS#
12.2.2
-
View: FV_FUND_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_FUND_PARAMETERS_V, object_name:FV_FUND_PARAMETERS_V, status:VALID, product: FV - Federal Financials , description: Stores information about treasury symbol and fund value per set of books , implementation_dba_data: APPS.FV_FUND_PARAMETERS_V ,
-
View: FV_FUND_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_FUND_PARAMETERS_V, object_name:FV_FUND_PARAMETERS_V, status:VALID, product: FV - Federal Financials , description: Stores information about treasury symbol and fund value per set of books , implementation_dba_data: APPS.FV_FUND_PARAMETERS_V ,
-
VIEW: FV.FV_STATUS_FUNDS_FINAL#
12.2.2
-
VIEW: FV.FV_SF224_AUDITS#
12.2.2
-
VIEW: FV.FV_CGAC_CRT_TAS_TEMP#
12.2.2
-
VIEW: FV.FV_SF1081_TEMP#
12.2.2
-
VIEW: FV.FV_BUDGET_DISTRIBUTION_HDR#
12.2.2
-
VIEW: FV.FV_YE_GROUPS#
12.2.2
-
VIEW: FV.FV_TP_TAS_BETC_MAP#
12.2.2
-
VIEW: FV.FV_SF1219_TEMP#
12.2.2
-
VIEW: FV.FV_TP_TREASURY_SYMBOLS#
12.2.2
-
VIEW: FV.FV_FACTS_PRC_HDR#
12.2.2
-
Table: FV_TREASURY_SYMBOLS_HISTORY
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_TREASURY_SYMBOLS_HISTORY, object_name:FV_TREASURY_SYMBOLS_HISTORY, status:VALID, product: FV - Federal Financials , description: New base table for the Purge Treasury Symbols process , implementation_dba_data: FV.FV_TREASURY_SYMBOLS_HISTORY ,
-
Table: FV_TREASURY_SYMBOLS
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_TREASURY_SYMBOLS, object_name:FV_TREASURY_SYMBOLS, status:VALID, product: FV - Federal Financials , description: New base table for the Define Appropriation Parameters form , implementation_dba_data: FV.FV_TREASURY_SYMBOLS ,
-
APPS.FV_PURGED_TREASURY_SYMBOLS SQL Statements
12.1.1
-
VIEW: FV.FV_TREASURY_SYMBOLS#
12.2.2
-
VIEW: FV.FV_TREASURY_SYMBOLS_HISTORY#
12.2.2
-
Table: FV_TREASURY_SYMBOLS_HISTORY
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_TREASURY_SYMBOLS_HISTORY, object_name:FV_TREASURY_SYMBOLS_HISTORY, status:VALID, product: FV - Federal Financials , description: New base table for the Purge Treasury Symbols process , implementation_dba_data: FV.FV_TREASURY_SYMBOLS_HISTORY ,
-
Table: FV_TREASURY_SYMBOLS
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_TREASURY_SYMBOLS, object_name:FV_TREASURY_SYMBOLS, status:VALID, product: FV - Federal Financials , description: New base table for the Define Appropriation Parameters form , implementation_dba_data: FV.FV_TREASURY_SYMBOLS ,
-
APPS.FV_PURGED_TREASURY_SYMBOLS SQL Statements
12.2.2
-
VIEW: FV.FV_FUND_PARAMETERS#
12.2.2
-
VIEW: FV.FV_FUND_PARAMETERS_HISTORY#
12.2.2
-
VIEW: FV.FV_SF224_TEMP#
12.2.2
-
VIEW: FV.FV_YE_CLOSED_TREASURY_SYMBOLS#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_YE_CLOSED_TREASURY_SYMBOLS#, status:VALID,
-
VIEW: FV.FV_TP_TS_AMT_DATA#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_TP_TS_AMT_DATA#, status:VALID,
-
VIEW: APPS.FV_FUND_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_FUND_PARAMETERS_V, object_name:FV_FUND_PARAMETERS_V, status:VALID,
-
TABLE: FV.FV_TP_TS_AMT_DATA
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_TP_TS_AMT_DATA, object_name:FV_TP_TS_AMT_DATA, status:VALID,
-
VIEW: FV.FV_FACTS_RUN#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_FACTS_RUN#, status:VALID,
-
VIEW: FV.FV_STATUS_FUNDS_FINAL#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_STATUS_FUNDS_FINAL#, status:VALID,
-
VIEW: APPS.FV_FUND_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_FUND_PARAMETERS_V, object_name:FV_FUND_PARAMETERS_V, status:VALID,
-
VIEW: FV.FV_SF1081_TEMP#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_SF1081_TEMP#, status:VALID,
-
APPS.FV_CGAC_CRT_TAS SQL Statements
12.2.2
-
TABLE: FV.FV_TP_TAS_BETC_MAP
12.2.2
owner:FV, object_type:TABLE, object_name:FV_TP_TAS_BETC_MAP, status:VALID,
-
TABLE: FV.FV_YE_CLOSED_TREASURY_SYMBOLS
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_YE_CLOSED_TREASURY_SYMBOLS, object_name:FV_YE_CLOSED_TREASURY_SYMBOLS, status:VALID,
-
TABLE: FV.FV_YE_CLOSED_TREASURY_SYMBOLS
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_YE_CLOSED_TREASURY_SYMBOLS, object_name:FV_YE_CLOSED_TREASURY_SYMBOLS, status:VALID,
-
VIEW: FV.FV_TP_TAS_BETC_MAP#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_TP_TAS_BETC_MAP#, status:VALID,
-
TABLE: FV.FV_TP_TS_AMT_DATA
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_TP_TS_AMT_DATA, object_name:FV_TP_TS_AMT_DATA, status:VALID,
-
TABLE: FV.FV_FACTS_RUN
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_FACTS_RUN, object_name:FV_FACTS_RUN, status:VALID,
-
VIEW: FV.FV_SF224_AUDITS#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_SF224_AUDITS#, status:VALID,
-
VIEW: FV.FV_CGAC_CRT_TAS_TEMP#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_CGAC_CRT_TAS_TEMP#, status:VALID,
-
VIEW: FV.FV_SF1219_AUDITS#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_SF1219_AUDITS#, status:VALID,
-
VIEW: FV.FV_YE_GROUPS#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_YE_GROUPS#, status:VALID,
-
VIEW: FV.FV_FACTS_PRC_HDR#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_FACTS_PRC_HDR#, status:VALID,
-
VIEW: APPS.FV_BE_XLA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_BE_XLA_V, object_name:FV_BE_XLA_V, status:VALID,