Search Results dim_group_id
Overview
The BSC_KPI_DIM_GROUPS table is a core data structure within the Oracle E-Business Suite (EBS) Balanced Scorecard (BSC) application, versions 12.1.1 and 12.2.2. It functions as a junction or mapping table that defines the association between Key Performance Indicators (KPIs), dimension sets, and dimension groups. Its primary role is to organize and manage how analytical dimensions are grouped and applied to specific performance indicators, enabling structured multidimensional analysis and reporting within the BSC module. The table is essential for configuring the analytical framework that underpins scorecard dashboards and performance measurement systems.
Key Information Stored
The table stores a concise set of columns that establish critical relationships and ordering. The INDICATOR column stores the unique identifier for the Key Performance Indicator. The DIM_SET_ID is a foreign key referencing a defined set of dimensions (BSC_KPI_DIM_SETS_TL). The DIM_GROUP_ID is a foreign key referencing a specific logical grouping of dimensions (BSC_SYS_DIM_GROUPS_TL). The DIM_GROUP_INDEX column is significant as it stores a numerical value that dictates the display order or hierarchical sequence of the dimension group within the context of its associated indicator and dimension set. The primary key is a composite of INDICATOR, DIM_SET_ID, and DIM_GROUP_ID, ensuring a unique mapping for each combination.
Common Use Cases and Queries
A primary use case is auditing or reporting on the dimension group configuration for a specific KPI. For instance, to retrieve all dimension groups and their display order for a given indicator code (e.g., 1001), a developer or analyst would execute a query joining to the relevant translation tables for descriptive names. Another common scenario involves impact analysis before modifying a dimension group, requiring queries to identify all KPIs and dimension sets linked to a specific DIM_GROUP_ID.
- Query to list dimension group mappings for an indicator:
SELECT bkdg.INDICATOR, bkdg.DIM_SET_ID, bkdg.DIM_GROUP_ID, bkdg.DIM_GROUP_INDEX, ds.NAME DIM_SET_NAME, dg.NAME DIM_GROUP_NAME FROM BSC.BSC_KPI_DIM_GROUPS bkdg JOIN BSC_KPI_DIM_SETS_TL ds ON bkdg.DIM_SET_ID = ds.DIM_SET_ID JOIN BSC_SYS_DIM_GROUPS_TL dg ON bkdg.DIM_GROUP_ID = dg.DIM_GROUP_ID WHERE bkdg.INDICATOR = 1001 ORDER BY bkdg.DIM_GROUP_INDEX; - Query to find all references to a specific dimension group (ID 205):
SELECT INDICATOR, DIM_SET_ID, DIM_GROUP_INDEX FROM BSC.BSC_KPI_DIM_GROUPS WHERE DIM_GROUP_ID = 205;
Related Objects
The table maintains defined foreign key relationships that are central to data integrity within the BSC schema. It references two translation tables to resolve IDs to user-friendly names. Specifically, the DIM_SET_ID column references the BSC_KPI_DIM_SETS_TL table, which stores the translated names for dimension sets. The DIM_GROUP_ID column references the BSC_SYS_DIM_GROUPS_TL table, which stores the translated names for system dimension groups. The table itself is referenced by the APPS synonym BSC_KPI_DIM_GROUPS, which is the standard access point for all application code and queries. The unique index BSC_KPI_DIM_GROUPS_U1 enforces the primary key constraint on INDICATOR, DIM_SET_ID, and DIM_GROUP_ID.
-
APPS.BSC_DIMENSION_GROUPS_PVT SQL Statements
12.1.1
-
APPS.BSC_DIM_TPLATE dependencies on BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
-
APPS.BSC_DIMENSION_GROUPS_PVT dependencies on BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
-
APPS.BSC_DIMENSION_SETS_PVT dependencies on BSC_KPI_DIM_GROUPS
12.1.1
-
APPS.BSC_DIMENSION_GROUPS_PUB dependencies on BSC_SYS_DIM_GROUPS_VL
12.1.1
-
APPS.BSC_BIS_DIM_OBJ_PUB dependencies on BSC_SYS_DIM_GROUPS_VL
12.1.1
-
APPS.BSC_SYS_DIM_GROUPS_PKG SQL Statements
12.1.1
-
APPS.BSC_BIS_DIMENSION_PUB dependencies on BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
-
APPS.BSC_DIMENSION_GROUPS_PVT dependencies on BSC_SYS_DIM_GROUPS_TL
12.1.1
-
APPS.BSC_DIM_TPLATE dependencies on BSC_SYS_DIM_LEVELS_B
12.1.1
-
APPS.BSC_DIMENSION_GROUPS_PVT dependencies on BSC_SYS_DIM_GROUPS_VL
12.1.1
-
APPS.BSC_DIMENSION_GROUPS_PUB dependencies on BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
-
APPS.BSC_TAB_TPLATE dependencies on BSC_KPI_DIM_GROUPS
12.1.1
-
APPS.BSC_BIS_KPI_MEAS_PUB dependencies on BSC_SYS_DIM_GROUPS_VL
12.1.1
-
APPS.BSC_BIS_DIMENSION_PUB dependencies on BSC_SYS_DIM_GROUPS_VL
12.1.1
-
APPS.BSC_BIS_DIM_OBJ_PUB dependencies on BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
-
APPS.BSC_TEMPLATE dependencies on BSC_SYS_DIM_GROUPS_TL
12.1.1
-
APPS.BSC_BIS_KPI_CRUD_PUB dependencies on BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
-
APPS.BSC_DIMENSION_GROUPS_PUB dependencies on BSC_SYS_DIM_LEVELS_B
12.1.1
-
APPS.BSC_BIS_DIMENSION_PUB SQL Statements
12.1.1
-
APPS.BSC_DIMENSION_SETS_PUB dependencies on BSC_SYS_DIM_GROUPS_VL
12.1.1
-
APPS.BSC_UPGRADES dependencies on BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
-
APPS.BSC_BIS_DIMENSION_PUB dependencies on BIS_DIMENSIONS
12.1.1
-
TABLE: BSC.BSC_KPI_DIM_GROUPS
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_KPI_DIM_GROUPS, object_name:BSC_KPI_DIM_GROUPS, status:VALID,
-
VIEW: APPS.BSC_SYS_DIM_GROUPS_VL
12.1.1
-
APPS.BSC_TEMPLATE dependencies on BSC_KPI_DIM_GROUPS
12.1.1
-
PACKAGE BODY: APPS.BSC_SYS_DIM_GROUPS_PKG
12.1.1
-
APPS.BSC_UPGRADES dependencies on BSC_KPI_DIM_GROUPS
12.1.1
-
APPS.BSC_SYS_DIM_GROUPS_PKG dependencies on BSC_SYS_DIM_GROUPS_TL
12.1.1
-
View: BSC_SYS_DIM_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_SYS_DIM_GROUPS_VL, object_name:BSC_SYS_DIM_GROUPS_VL, status:VALID, product: BSC - Balanced Scorecard , description: View of BSC_SYS_DIM_GROUPS_TL. , implementation_dba_data: APPS.BSC_SYS_DIM_GROUPS_VL ,
-
APPS.BSC_BIS_DIMENSION_PUB dependencies on BSC_SYS_DIM_LEVELS_B
12.1.1
-
APPS.BSC_BIS_KPI_CRUD_PUB dependencies on BSC_SYS_DIM_GROUPS_VL
12.1.1
-
APPS.BSC_DIMENSION_SETS_PUB dependencies on BSC_BIS_DIMENSION_PUB
12.1.1
-
TABLE: BSC.BSC_SYS_DIM_GROUPS_TL
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_SYS_DIM_GROUPS_TL, object_name:BSC_SYS_DIM_GROUPS_TL, status:VALID,
-
APPS.BSC_TEMPLATE dependencies on BSC_KPI_DIM_LEVEL_PROPERTIES
12.1.1
-
APPS.BSC_DIM_TPLATE SQL Statements
12.1.1
-
View: BSC_SYS_DIM_GROUPS_VL
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: View of BSC_SYS_DIM_GROUPS_TL. , implementation_dba_data: Not implemented in this database ,
-
APPS.BSC_BIS_KPI_MEAS_PUB dependencies on BSC_KPI_DIM_GROUPS
12.1.1
-
TABLE: BSC.BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_SYS_DIM_LEVELS_BY_GROUP, object_name:BSC_SYS_DIM_LEVELS_BY_GROUP, status:VALID,
-
APPS.BSC_BIS_DIMENSION_PUB dependencies on BSC_KPI_DIM_GROUPS
12.1.1
-
APPS.BSC_DIMENSION_SETS_PUB dependencies on BSC_SYS_DIM_LEVELS_BY_GROUP
12.1.1
-
APPS.BSC_UPGRADES dependencies on BSC_BIS_DIMENSION_PUB
12.1.1
-
APPS.BIS_REPORT_PUB SQL Statements
12.1.1
-
APPS.BSC_BIS_KPI_CRUD_PUB dependencies on BSC_SYS_DIM_LEVELS_B
12.1.1
-
APPS.BSC_COPY_INDICATOR_PUB dependencies on BSC_KPI_DIM_GROUPS
12.1.1
-
APPS.BSC_LOCKS_PVT dependencies on BSC_SYS_DIM_LEVELS_B
12.1.1
-
APPS.BSC_DIMENSION_GROUPS_PUB SQL Statements
12.1.1
-
APPS.BSC_METADATA_DESC dependencies on BSC_KPI_DIM_LEVELS_VL
12.1.1
-
APPS.BSC_DIMENSION_GROUPS_PUB dependencies on BSC_SYS_DIM_GROUPS_TL
12.1.1
-
APPS.BSC_TEMPLATE dependencies on BSC_KPI_DIM_LEVELS_TL
12.1.1