Search Results dimension_short_name
Overview
The view APPS.EDW_FACT_FLEX_FK_MAPS_V is a dictionary-style object owned by the APPS schema and registered under the BIS (Applications BIS / Business Intelligence System) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes metadata that maps key flexfield foreign-key assignments to the fact tables used by the Oracle E-Business Suite data warehouse and ETRM (Enterprise Territory and Resource Management) reporting layers. In practical terms, the view answers the question: "for a given fact, which physical foreign-key column carries the key flexfield value for a given dimension, and is that mapping currently enabled?"
Its role is configuration discovery. The Oracle Daily Business Intelligence and related BIS/ETRM warehouse components resolve segment-level aggregation by consulting mapping metadata at runtime. Analysts, data modelers, and integration developers query this view to confirm that a fact's foreign-key column aligns with the intended dimension before writing extraction, drill-down, or ETL logic.
Underlying Base Objects
The documented ETRM metadata for this object records no referenced base objects; the view text itself is a straightforward projection:
- The view is defined as a simple
SELECTover a single underlying mapping table (not documented in the ETRM excerpt) exposing nine columns verbatim. - It carries no joins, filters, or aggregation in its documented definition — every column is passed through unchanged.
- Because it is a pass-through view, the effective base object is the table holding fact-to-dimension flexfield foreign-key mappings, and row-level security or filtering (if any) is applied by that table, not the view.
- The view is
VALIDin the APPS schema, confirming the base object exists and compiles in both 12.1.1 and 12.2.2 environments.
Key Columns
- FACT_SHORT_NAME — The short identifier of the fact to which the mapping applies (for example, a fact identifier such as AP_INVOICES or GL_BALANCES).
- FK_PHYSICAL_NAME — The physical column name in the fact table that stores the foreign-key value resolving to the dimension.
- DIMENSION_SHORT_NAME — The short name of the dimension being referenced. This is the column most commonly searched, since it lets users enumerate every fact that references a given dimension.
- ENABLED_FLAG — Indicates whether the mapping is active (
Y) or inactive (N). Disabled mappings are retained for historical reference and are typically excluded by consumers. - LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE — Standard Oracle WHO columns recording audit and concurrent-manager context for each mapping row.
Common Use Cases and Queries
Typical use cases include verifying a fact-to-dimension join path before constructing a custom report, identifying all facts that reference a specific dimension, and auditing which mappings have been disabled during upgrades from 12.1.1 to 12.2.2.
List all enabled mappings for a dimension of interest:
SELECT fact_short_name,
fk_physical_name,
dimension_short_name
FROM apps.edw_fact_flex_fk_maps_v
WHERE enabled_flag = 'Y'
AND dimension_short_name = '&dimension_short_name'
ORDER BY fact_short_name;
Find every fact referencing a given fact's foreign keys:
SELECT fk_physical_name,
dimension_short_name,
enabled_flag
FROM apps.edw_fact_flex_fk_maps_v
WHERE fact_short_name = '&fact_short_name';
Audit recently modified mappings following an upgrade:
SELECT fact_short_name,
fk_physical_name,
dimension_short_name,
last_update_date,
last_updated_by
FROM apps.edw_fact_flex_fk_maps_v
WHERE last_update_date >= SYSDATE - 30
ORDER BY last_update_date DESC;
Because the view performs no filtering, queries against it should always constrain on ENABLED_FLAG where active mappings are required, and should be executed against the APPS schema or a synonym granted to the reporting user.
-
View: EDW_FACT_FLEX_FK_MAPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_FACT_FLEX_FK_MAPS_V, object_name:EDW_FACT_FLEX_FK_MAPS_V, status:VALID, product: BIS - Applications BIS , description: EDW_FACT_FLEX_FK_MAPS_V , implementation_dba_data: APPS.EDW_FACT_FLEX_FK_MAPS_V ,
-
VIEW: APPS.EDW_LOCAL_FACT_FLEX_FK_MAPS_V
12.1.1
-
View: EDW_LOCAL_FACT_FLEX_FK_MAPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_LOCAL_FACT_FLEX_FK_MAPS_V, object_name:EDW_LOCAL_FACT_FLEX_FK_MAPS_V, status:VALID, product: BIS - Applications BIS , description: EDW_LOCAL_FACT_FLEX_FK_MAPS_V , implementation_dba_data: APPS.EDW_LOCAL_FACT_FLEX_FK_MAPS_V ,
-
VIEW: APPS.EDW_FLEX_SEG_MAPPINGS_V
12.1.1
-
VIEW: APPS.FII_ALL_FIN_ITEMS_V
12.1.1
-
View: EDW_FACT_FLEX_FK_MAPS_V
12.2.2
product: BIS - Applications BIS , description: EDW_FACT_FLEX_FK_MAPS_V , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EDW_LOCAL_FLEX_SEG_MAPPINGS_V
12.1.1
-
View: EDW_LOCAL_FLEX_SEG_MAPPINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_LOCAL_FLEX_SEG_MAPPINGS_V, object_name:EDW_LOCAL_FLEX_SEG_MAPPINGS_V, status:VALID, product: BIS - Applications BIS , description: EDW_LOCAL_FLEX_SEG_MAPPINGS_V , implementation_dba_data: APPS.EDW_LOCAL_FLEX_SEG_MAPPINGS_V ,
-
VIEW: APPS.EDW_FACT_FLEX_FK_MAPS_V
12.1.1
-
View: EDW_LOCAL_FLEX_SEG_MAPPINGS_V
12.2.2
product: BIS - Applications BIS , description: EDW_LOCAL_FLEX_SEG_MAPPINGS_V , implementation_dba_data: Not implemented in this database ,
-
APPS.FII_FINANCIAL_DIMENSION_PKG SQL Statements
12.1.1
-
View: EDW_LOCAL_FACT_FLEX_FK_MAPS_V
12.2.2
product: BIS - Applications BIS , description: EDW_LOCAL_FACT_FLEX_FK_MAPS_V , implementation_dba_data: Not implemented in this database ,
-
View: EDW_FLEX_SEG_MAPPINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_FLEX_SEG_MAPPINGS_V, object_name:EDW_FLEX_SEG_MAPPINGS_V, status:VALID, product: BIS - Applications BIS , description: EDW_FLEX_SEG_MAPPINGS_V , implementation_dba_data: APPS.EDW_FLEX_SEG_MAPPINGS_V ,
-
View: EDW_FLEX_SEG_MAPPINGS_V
12.2.2
product: BIS - Applications BIS , description: EDW_FLEX_SEG_MAPPINGS_V , implementation_dba_data: Not implemented in this database ,
-
TABLE: FII.FII_FINANCIAL_DIMENSIONS
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_FINANCIAL_DIMENSIONS, object_name:FII_FINANCIAL_DIMENSIONS, status:VALID,
-
VIEW: APPS.EDW_FACT_FLEX_FK_MAPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_FACT_FLEX_FK_MAPS_V, object_name:EDW_FACT_FLEX_FK_MAPS_V, status:VALID,
-
TABLE: FII.FII_DIM_MAPPING_RULES
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_DIM_MAPPING_RULES, object_name:FII_DIM_MAPPING_RULES, status:VALID,
-
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 ,
-
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 ,
-
TABLE: BIS.EDW_FACT_FLEX_FK_MAPS
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.EDW_FACT_FLEX_FK_MAPS, object_name:EDW_FACT_FLEX_FK_MAPS, status:VALID,
-
TABLE: BIS.EDW_LOCAL_FACT_FLEX_FK_MAPS
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.EDW_LOCAL_FACT_FLEX_FK_MAPS, object_name:EDW_LOCAL_FACT_FLEX_FK_MAPS, status:VALID,
-
APPS.FII_PSI_BUD_ENC_DETAIL_PKG SQL Statements
12.1.1
-
View: BISBV_DIMENSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISBV_DIMENSIONS, object_name:BISBV_DIMENSIONS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BISBV_DIMENSIONS ,
-
APPS.BIS_DIMENSION_LEVEL_PVT SQL Statements
12.1.1
-
APPS.FII_SETUP_VAL_C SQL Statements
12.1.1
-
VIEW: APPS.EDW_LOCAL_FLEX_SEG_MAPPINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_LOCAL_FLEX_SEG_MAPPINGS_V, object_name:EDW_LOCAL_FLEX_SEG_MAPPINGS_V, status:VALID,
-
VIEW: APPS.EDW_LOCAL_FACT_FLEX_FK_MAPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_LOCAL_FACT_FLEX_FK_MAPS_V, object_name:EDW_LOCAL_FACT_FLEX_FK_MAPS_V, status:VALID,
-
TABLE: BIS.EDW_LOCAL_FLEX_SEG_MAPPINGS
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.EDW_LOCAL_FLEX_SEG_MAPPINGS, object_name:EDW_LOCAL_FLEX_SEG_MAPPINGS, status:VALID,
-
VIEW: APPS.BISBV_DIMENSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISBV_DIMENSIONS, object_name:BISBV_DIMENSIONS, status:VALID,
-
TABLE: BIS.EDW_FLEX_SEG_MAPPINGS
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.EDW_FLEX_SEG_MAPPINGS, object_name:EDW_FLEX_SEG_MAPPINGS, status:VALID,
-
Table: FII_FINANCIAL_DIMENSIONS
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: This table contains Financials Intelligence specific information for financial dimensions. Each record corresponds to a financial dimension with some system level setting information. It also identifies the value set that contains all dim , implementation_dba_data: Not implemented in this database ,
-
View: FII_ALL_FIN_ITEMS_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: For Web ADI component , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EDW_FLEX_SEG_MAPPINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_FLEX_SEG_MAPPINGS_V, object_name:EDW_FLEX_SEG_MAPPINGS_V, status:VALID,
-
VIEW: APPS.BISFV_DIMENSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISFV_DIMENSIONS, object_name:BISFV_DIMENSIONS, status:VALID,
-
APPS.EDW_DIM_SV SQL Statements
12.1.1
-
Table: FII_DIM_MAPPING_RULES
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_DIM_MAPPING_RULES, object_name:FII_DIM_MAPPING_RULES, status:VALID, product: FII - Financial Intelligence , description: This table contains associations between financial dimensions and chart of accounts segments. Each record includes a dimension identifier, a chart of accounts identifier, the status of the dimension mapping rule, a code to determine how th , implementation_dba_data: FII.FII_DIM_MAPPING_RULES ,
-
View: BISFV_DIMENSIONS
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.FII_FINANCIAL_DIMENSIONS_V
12.1.1
-
APPS.BIS_INTERMEDIATE_LOV_PVT SQL Statements
12.1.1
-
Table: FII_DIM_MAPPING_RULES
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: This table contains associations between financial dimensions and chart of accounts segments. Each record includes a dimension identifier, a chart of accounts identifier, the status of the dimension mapping rule, a code to determine how th , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.FII_FINANCIAL_DIMENSION_PKG
12.1.1
-
VIEW: APPS.BISFV_LEVELS_CUSTOMIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:BISFV_LEVELS_CUSTOMIZATIONS_V, status:VALID,
-
Table: FII_FINANCIAL_DIMENSIONS
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_FINANCIAL_DIMENSIONS, object_name:FII_FINANCIAL_DIMENSIONS, status:VALID, product: FII - Financial Intelligence , description: This table contains Financials Intelligence specific information for financial dimensions. Each record corresponds to a financial dimension with some system level setting information. It also identifies the value set that contains all dim , implementation_dba_data: FII.FII_FINANCIAL_DIMENSIONS ,
-
View: BISFV_DIMENSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISFV_DIMENSIONS, object_name:BISFV_DIMENSIONS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BISFV_DIMENSIONS ,
-
View: FII_ALL_FIN_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_ALL_FIN_ITEMS_V, object_name:FII_ALL_FIN_ITEMS_V, status:VALID, product: FII - Financial Intelligence , description: For Web ADI component , implementation_dba_data: APPS.FII_ALL_FIN_ITEMS_V ,
-
APPS.FII_COM_CC_DIM_MAPS_PKG SQL Statements
12.1.1
-
View: BISBV_DIMENSIONS
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
APPS.FII_USER_SEC_OPTIMIZER SQL Statements
12.1.1
-
View: BISFV_DIMENSION_LEVELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISFV_DIMENSION_LEVELS, object_name:BISFV_DIMENSION_LEVELS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BISFV_DIMENSION_LEVELS ,