Search Results currency_flag
Overview
APPS.BEN_CWB_CURRENCY_LOV_V is a lightweight Oracle EBS database view whose sole purpose is to supply a filtered list of currencies for a List of Values (LOV). It is delivered in the APPS schema and is documented as part of the Compensation Workbench (CWB) functional area, a component of the Advanced Benefits (BEN) product family. The view does not store data; it derives a two-column result set from the currencies master and exposes it in the "ID / Value" shape that Oracle Forms and OAF-based LOV components expect. Because the view is a simple projection, it imposes almost no parsing or execution overhead and can be safely queried from reports, concurrent programs, and integrations that need a validated currency pick list.
Underlying Base Objects
The view is defined over a single documented base object: FND_CURRENCIES_VL, itself a view in the FND (Application Object Library) schema. FND_CURRENCIES_VL is the translation-enabled ("_VL") view that joins the base currency table FND_CURRENCIES with its translation table FND_CURRENCIES_TL, returning the language-appropriate currency name. BEN_CWB_CURRENCY_LOV_V therefore does not reference the translation tables directly; it inherits multilingual behavior from the _VL layer. The ETRM metadata identifies only FND_CURRENCIES_VL as a referenced base object, so any dependency analysis for the LOV view should treat FND_CURRENCIES and FND_CURRENCIES_TL as transitive dependencies.
Key Columns
- ID — The
CURRENCY_CODEvalue (for example, "USD" or "EUR"). It is the returned identifier used by the LOV and is the value typically written into a foreign key column by the calling form. - VALUE — A concatenation of the currency code, a hyphen separator, and the translated currency name (for example, "USD - US Dollar"). This is the display string presented to the user in the LOV poplist.
The view exposes no other columns. Filtering is applied internally against four FND_CURRENCIES_VL attributes: ENABLED_FLAG, START_DATE_ACTIVE, END_DATE_ACTIVE, and CURRENCY_FLAG. Because the filters live inside the view definition, consumers cannot widen or narrow the returned set without creating a wrapper query.
Common Use Cases and Queries
The view is most often used to populate a currency LOV in a Compensation Workbench setup or eligibility screen, and to validate a currency value supplied by an external interface before it is committed. The CURRENCY_FLAG = 'Y' predicate is significant: it restricts the list to currencies that are permitted to be used in a given context, and it is this predicate that distinguishes the view from a simple "all enabled currencies" query. The date predicates limit results to the currency's active window, defaulting to the current date when the start or end date is null. A typical query is:
SELECT id, value FROM apps.ben_cwb_currency_lov_v ORDER BY value;
A validation-friendly variant that confirms a specific code is selectable:
SELECT id FROM apps.ben_cwb_currency_lov_v WHERE id = :p_currency_code;
Because the view returns the same shape regardless of caller, it is suitable for reuse in BI Publisher data templates, Oracle Reports, and custom PL/SQL validation packages that must enforce the same currency eligibility rules applied by the standard forms.
-
VIEW: APPS.BEN_CWB_CURRENCY_LOV_V
12.1.1
-
VIEW: APPLSYS.FND_CURRENCIES#
12.2.2
-
VIEW: JA.JAI_CMN_TAXES_ALL#
12.2.2
-
VIEW: APPS.FII_CURR_CURRENCY_LCV
12.1.1
-
VIEW: APPS.BEN_CWB_CURRENCY_LOV_V
12.2.2
-
View: FII_CURR_CURRENCY_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_CURR_CURRENCY_LCV, object_name:FII_CURR_CURRENCY_LCV, status:VALID, product: FII - Financial Intelligence , description: FII_CURR_CURRENCY_LCV is the collection view for currency level of currency dimension , implementation_dba_data: APPS.FII_CURR_CURRENCY_LCV ,
-
View: FII_CURR_CURRENCY_LCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_CURR_CURRENCY_LCV is the collection view for currency level of currency dimension , implementation_dba_data: Not implemented in this database ,
-
View: FIIBV_CURR_CURRENCY_LCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FIIBV_CURR_CURRENCY_LCV is the base view for currency level of currency dimension , implementation_dba_data: Not implemented in this database ,
-
View: FIIBV_CURR_CURRENCY_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_CURR_CURRENCY_LCV, object_name:FIIBV_CURR_CURRENCY_LCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_CURR_CURRENCY_LCV is the base view for currency level of currency dimension , implementation_dba_data: APPS.FIIBV_CURR_CURRENCY_LCV ,
-
APPS.FII_CURRENCY_M_C SQL Statements
12.1.1
-
VIEW: APPS.FIIBV_CURR_CURRENCY_LCV
12.1.1
-
VIEW: APPS.OE_FND_CURRENCIES_V
12.2.2
-
VIEW: APPS.OE_FND_CURRENCIES_V
12.1.1
-
View: OE_FND_CURRENCIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_FND_CURRENCIES_V, object_name:OE_FND_CURRENCIES_V, status:VALID, product: ONT - Order Management , description: This view is based on fnd_currencies. , implementation_dba_data: APPS.OE_FND_CURRENCIES_V ,
-
VIEW: APPS.PSB_WS_QUERY_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WS_QUERY_PROFILES_V, object_name:PSB_WS_QUERY_PROFILES_V, status:VALID,
-
View: OE_FND_CURRENCIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_FND_CURRENCIES_V, object_name:OE_FND_CURRENCIES_V, status:VALID, product: ONT - Order Management , description: This view is based on fnd_currencies. , implementation_dba_data: APPS.OE_FND_CURRENCIES_V ,
-
VIEW: APPS.FII_CURR_CURRENCY_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_CURR_CURRENCY_LCV, object_name:FII_CURR_CURRENCY_LCV, status:VALID,
-
VIEW: APPS.CSF_M_CURRENCIES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSF_M_CURRENCIES_V, status:VALID,
-
VIEW: APPS.CSF_M_CURRENCIES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSF_M_CURRENCIES_V, status:VALID,
-
View: BEN_CWB_CURRENCY_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CWB_CURRENCY_LOV_V, object_name:BEN_CWB_CURRENCY_LOV_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_CWB_CURRENCY_LOV_V ,
-
View: BEN_CWB_CURRENCY_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CWB_CURRENCY_LOV_V, object_name:BEN_CWB_CURRENCY_LOV_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_CWB_CURRENCY_LOV_V ,
-
APPS.FTE_UTIL_PKG SQL Statements
12.1.1
-
VIEW: JA.JAI_CMN_TAXES_ALL#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_CMN_TAXES_ALL#, status:VALID,
-
VIEW: APPLSYS.FND_CURRENCIES#
12.2.2
owner:APPLSYS, object_type:VIEW, object_name:FND_CURRENCIES#, status:VALID,
-
View: PSB_WS_QUERY_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WS_QUERY_PROFILES_V, object_name:PSB_WS_QUERY_PROFILES_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_WS_QUERY_PROFILES_V ,
-
APPS.FTE_UTIL_PKG SQL Statements
12.2.2
-
View: PSB_WS_QUERY_PROFILES_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.JTM_FND_CURRENCIES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:JTM_FND_CURRENCIES_V, status:VALID,
-
VIEW: APPS.JTM_FND_CURRENCIES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:JTM_FND_CURRENCIES_V, status:VALID,
-
TABLE: PSB.PSB_WORKSHEETS_I
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WORKSHEETS_I, object_name:PSB_WORKSHEETS_I, status:VALID,
-
VIEW: APPS.FIIBV_CURR_CURRENCY_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_CURR_CURRENCY_LCV, object_name:FIIBV_CURR_CURRENCY_LCV, status:VALID,
-
TABLE: FII.EDW_CURR_CURRENCY_LTC
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.EDW_CURR_CURRENCY_LTC, object_name:EDW_CURR_CURRENCY_LTC, status:VALID,
-
VIEW: APPS.FEM_CURRENCIES_VL
12.1.1
owner:APPS, object_type:VIEW, object_name:FEM_CURRENCIES_VL, status:VALID,
-
APPS.PAY_BLT_BUS SQL Statements
12.2.2
-
View: FND_CURRENCIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_CURRENCIES_VL, object_name:FND_CURRENCIES_VL, status:VALID, product: FND - Application Object Library , description: View of FND_CURRENCIES and FND_CURRENCIES_TL , implementation_dba_data: APPS.FND_CURRENCIES_VL ,
-
View: FND_CURRENCIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_CURRENCIES_VL, object_name:FND_CURRENCIES_VL, status:VALID, product: FND - Application Object Library , description: View of FND_CURRENCIES and FND_CURRENCIES_TL , implementation_dba_data: APPS.FND_CURRENCIES_VL ,
-
TABLE: JA.JAI_CMN_TAXES_ALL
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAXES_ALL, object_name:JAI_CMN_TAXES_ALL, status:VALID,
-
TABLE: FII.EDW_CURR_CURRENCY_LSTG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.EDW_CURR_CURRENCY_LSTG, object_name:EDW_CURR_CURRENCY_LSTG, status:VALID,
-
APPS.ITG_SYNCEXCHINBOUND_PVT SQL Statements
12.1.1
-
APPS.ITG_SYNCEXCHINBOUND_PVT SQL Statements
12.2.2
-
TABLE: APPLSYS.FND_CURRENCIES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID,
-
TABLE: JA.JAI_CMN_TAXES_ALL
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAXES_ALL, object_name:JAI_CMN_TAXES_ALL, status:VALID,
-
PACKAGE BODY: APPS.FII_CURRENCY_M_C
12.1.1
-
APPS.ZPB_DC_DISTRIBUTE SQL Statements
12.1.1
-
TABLE: APPLSYS.FND_CURRENCIES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID,
-
APPS.QP_VALIDATE_MODIFIER_LIST SQL Statements
12.2.2
-
TABLE: PSB.PSB_WS_USER_PROFILES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WS_USER_PROFILES, object_name:PSB_WS_USER_PROFILES, status:VALID,
-
TABLE: ABM.ABM_CURRS
12.1.1
owner:ABM, object_type:TABLE, object_name:ABM_CURRS, status:VALID,
-
APPS.ZPB_DC_OBJECTS_PVT SQL Statements
12.1.1
-
APPS.QP_VALIDATE_MODIFIER_LIST SQL Statements
12.1.1