Search Results fii_companies
Overview
APPS.FII_FINANCIAL_DIMENSIONS_V is a reporting and integration view in Oracle E-Business Suite (12.1.1 and 12.2.2) that exposes the configuration of the financial dimensions used by Oracle Financials Intelligence / Enterprise Performance Foundation (FII) and related analytical engines. Rather than querying the base configuration table directly, the view consolidates the dimension registration metadata with level customizations, flex value set definitions, and lookup translations into a single, presentation-ready result set. Each row describes one financial dimension—such as company, chart of accounts organization, line of business, financial item, and user-defined dimensions—together with its sequence, display name, value set binding, and enablement flags.
The view plays a central role wherever the application must enumerate the available financial dimensions in a stable, ordered manner, for example when populating dimension pickers, driving data-loading routines, or generating hierarchy and mapping setups. The search term "fii_lob" corresponds to the FII_LOB dimension, which is assigned line number 3 in this view's decode logic.
Underlying Base Objects
The view is defined over four referenced objects:
- FII_FINANCIAL_DIMENSIONS (aliased
frd) — the primary driver table holding each registered dimension, its short name, system-enabled flag, DBI-enabled flag, master value set identifier, DBI hierarchy top node and node identifier, and the include-master-versus-leaf-nodes flag. - BISFV_LEVELS_CUSTOMIZATIONS_V (aliased
bd) — a customization view supplying the dimension level name, short name, description, and enabled indicator, joined onfrd.dimension_short_name = bd.dimension_level_short_name. - FND_FLEX_VALUE_SETS (aliased
ffvs) — the key flexfield value set definition, outer-joined to resolve the master value set name. - FND_LOOKUP_VALUES_VL (aliased
look2) — the lookup view, constrained tolookup_type = 'FII_LITERAL'andlookup_code = 'N/A'to supply a literal "N/A" meaning when no value set name is available.
The view restricts output to seven recognized dimension short names: FII_COMPANIES, HRI_CL_ORGCC, FII_LOB, GL_FII_FIN_ITEM, ENI_ITEM_VBH_CAT, FII_USER_DEFINED_1, and FII_USER_DEFINED_2.
Key Columns
- LINE_NUMBER — ordinal position derived from DECODE on
dimension_short_name; FII_LOB yields 3. - DIMENSION_NAME / DIMENSION_DISPLAY_NAME — the level name from the customization view, used for display.
- DIMENSION_SHORT_NAME — internal identifier used throughout FII processing.
- DESCRIPTION — descriptive text for the dimension.
- SYSTEM_ENABLED_FLAG — indicates whether the dimension is enabled at system level.
- DBI_ENABLED_FLAG — enablement for DBI processing; for ENI_ITEM_VBH_CAT it is taken directly from
frd.dbi_enabled_flag, otherwise derived frombd.enabled('T' becomes 'Y'). - MASTER_VALUE_SET_ID / MASTER_VALUE_SET_NAME — the value set bound to the dimension, with special handling for ENI_ITEM_VBH_CAT via ENI_VALUESET_CATEGORY.GET_FLEX_VALUE_SET_ID.
- DBI_HIER_TOP_NODE / DBI_HIER_TOP_NODE_ID — the top node of the DBI hierarchy for the dimension.
- ALLOW_UPDATE_MAPPING_FLAG — 'N' for GL_FII_FIN_ITEM, otherwise 'Y'.
- INCL_MASTER_VS_LEAF_NODES_FLAG — controls whether master or leaf nodes are included.
Common Use Cases and Queries
Typical usage includes verifying dimension registration, auditing value set assignments, and retrieving the ordered dimension list for a given implementation. To locate the line of business dimension specifically:
SELECT line_number, dimension_name, dimension_short_name, dbi_enabled_flag, master_value_set_name
FROM apps.fii_financial_dimensions_v
WHERE dimension_short_name = 'FII_LOB';
To list all enabled dimensions in display order:
SELECT line_number, dimension_display_name, master_value_set_name
FROM apps.fii_financial_dimensions_v
WHERE system_enabled_flag = 'Y'
ORDER BY line_number;
Because the view already resolves value set names and enablement flags, it is preferred over direct queries against FII_FINANCIAL_DIMENSIONS for reporting and integration purposes.
-
APPS.FII_EA_DPRN_EXP_PKG SQL Statements
12.1.1
-
VIEW: APPS.FII_FINANCIAL_DIMENSIONS_V
12.1.1
-
VIEW: APPS.FII_CCC_VALUES_V
12.1.1
-
VIEW: APPS.FII_COMPANY_VALUES_V
12.1.1
-
View: FII_CCC_VALUES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_CCC_VALUES_V, object_name:FII_CCC_VALUES_V, status:VALID, product: FII - Financial Intelligence , description: View to get company cost center values for webadi upload , implementation_dba_data: APPS.FII_CCC_VALUES_V ,
-
APPS.FII_EA_SOURCE_PKG SQL Statements
12.1.1
-
View: FII_FINANCIAL_DIMENSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_FINANCIAL_DIMENSIONS_V, object_name:FII_FINANCIAL_DIMENSIONS_V, status:VALID, product: FII - Financial Intelligence , description: This view is based on the view BISBV_DIMENSIONS and the table FII_FINANCIAL_DIMENSIONS. It will contain information about the Financial Dimensions. , implementation_dba_data: APPS.FII_FINANCIAL_DIMENSIONS_V ,
-
View: FII_CCC_VALUES_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: View to get company cost center values for webadi upload , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: FII_CCC_SEC_DIMENSION
12.2.2
product: FII - Financial Intelligence (Obsolete) , meaning: Dimension for Company and Cost Center , description: Dimension for Company and Cost Center ,
-
View: FII_FINANCIAL_DIMENSIONS_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: This view is based on the view BISBV_DIMENSIONS and the table FII_FINANCIAL_DIMENSIONS. It will contain information about the Financial Dimensions. , implementation_dba_data: Not implemented in this database ,
-
APPS.FII_EA_AP_TRAN_PKG SQL Statements
12.1.1
-
View: FII_COMPANY_VALUES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_COMPANY_VALUES_V, object_name:FII_COMPANY_VALUES_V, status:VALID, product: FII - Financial Intelligence , description: This view is for the Company Dimension master value set node names and description. , implementation_dba_data: APPS.FII_COMPANY_VALUES_V ,
-
View: FII_COMPANY_VALUES_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: This view is for the Company Dimension master value set node names and description. , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: FII_CCC_SEC_DIMENSION
12.1.1
product: FII - Financial Intelligence , meaning: Dimension for Company and Cost Center , description: Dimension for Company and Cost Center ,
-
APPS.FII_USER_SEC_OPTIMIZER SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_EA_DPRN_EXP_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_EA_JE_TRAN_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_PSI_JE_DTL_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_EA_AP_TRAN_PKG
12.1.1
-
APPS.FII_PSI_BUD_ENC_DETAIL_PKG SQL Statements
12.1.1
-
APPS.FII_PSI_BUD_SUM_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_PSI_MON_CUMUL_TREND_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_EA_SOURCE_PKG
12.1.1
-
APPS.FII_CCC_SEC_UPL_PKG SQL Statements
12.1.1
-
APPS.FII_PSI_FUNDS_AVAIL_SUM_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_EA_UTIL_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_USER_SEC_OPTIMIZER
12.1.1
-
APPS.FII_COM_CC_DIM_MAPS_PKG SQL Statements
12.1.1
-
APPS.FII_PSI_ENCUM_SUM_PKG SQL Statements
12.1.1
-
APPS.FII_COM_MAINTAIN_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_PMV_HELPER_TABLES_C
12.1.1
-
PACKAGE BODY: APPS.POA_DBI_SUTIL_PKG
12.1.1
-
APPS.FII_EA_ACCT_DETAIL_PKG SQL Statements
12.1.1
-
APPS.FII_PMV_HELPER_TABLES_C SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_EA_ACCT_DETAIL_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_PSI_BUD_SUM_PKG
12.1.1
-
APPS.POA_DBI_SUTIL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_PSI_ENCUM_SUM_PKG
12.1.1
-
APPS.FII_SETUP_VAL_C SQL Statements
12.1.1
-
PACKAGE BODY: APPS.POA_DBI_APL_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_CCC_SEC_UPL_PKG
12.1.1
-
PACKAGE BODY: APPS.POA_DBI_CUT_PKG
12.1.1
-
PACKAGE BODY: APPS.POA_DBI_INV_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_PSI_BUD_ENC_DETAIL_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_COM_MAINTAIN_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_PSI_FUNDS_AVAIL_SUM_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_COM_CC_DIM_MAPS_PKG
12.1.1
-
APPS.FII_BUDGET_FORECAST_C SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_SETUP_VAL_C
12.1.1
-
APPS.FII_EA_UTIL_PKG dependencies on FII_COM_PMV_AGRT_NODES
12.1.1