Search Results parent_level_index
Overview
The BSC_SYS_COM_DIM_LEVELS table is a core repository within the Oracle E-Business Suite (EBS) Balanced Scorecard (BSC) module, specifically for versions 12.1.1 and 12.2.2. It serves as a master definition table that stores the hierarchical structure of common dimension levels, which are reusable analytical categories (like Time, Geography, or Organization) used across different performance measurement tabs. Its primary role is to define the order and parent-child relationships between these levels, enabling consistent drill-down navigation and data aggregation in BSC analytics and reports. The table is fundamental to configuring and rendering the dimension selection lists within the application's user interface.
Key Information Stored
The table's structure is designed to capture dimension hierarchy metadata through a concise set of columns. The TAB_ID identifies the specific Balanced Scorecard tab or module component utilizing the dimension. The DIM_LEVEL_INDEX and DIM_LEVEL_ID define the sequence and unique identifier, respectively, for a given level within its hierarchy on that tab. The hierarchical relationship is established via PARENT_LEVEL_INDEX and PARENT_DIM_LEVEL_ID, which point to the immediate parent level's index and identifier. This design allows for the efficient reconstruction of multi-level dimension trees. The unique index (BSC_SYS_COM_DIM_LEVELS_U1) on TAB_ID and DIM_LEVEL_INDEX enforces data integrity for the level ordering within each tab.
Common Use Cases and Queries
This table is primarily accessed for administrative configuration and analytical reporting. A common use case involves querying the complete hierarchy of a common dimension for a specific tab to understand its drill-down path, such as from Year to Quarter to Month. The standard query pattern, as indicated in the ETRM, retrieves all columns. For practical application, one might join this table to dimension master tables (like BSC_SYS_DIM_LEVELS_B/TL) to get descriptive names. A typical analytical query would be:
- Retrieve Dimension Hierarchy for a Tab:
SELECT bscl.TAB_ID, bscl.DIM_LEVEL_INDEX, dlb.NAME, bscl.PARENT_LEVEL_INDEX
FROM BSC.BSC_SYS_COM_DIM_LEVELS bscl,
BSC.BSC_SYS_DIM_LEVELS_B dlb
WHERE bscl.DIM_LEVEL_ID = dlb.DIM_LEVEL_ID
AND bscl.TAB_ID = :p_tab_id
ORDER BY bscl.DIM_LEVEL_INDEX;
This supports report development, data validation, and troubleshooting the presentation of dimension lists in the BSC interface.
Related Objects
Based on the provided dependency information, the BSC_SYS_COM_DIM_LEVELS table is referenced by the APPS synonym of the same name (APPS.BSC_SYS_COM_DIM_LEVELS), which is the standard access point for all application code. While the ETRM excerpt does not list foreign key relationships, in practice, the DIM_LEVEL_ID and PARENT_DIM_LEVEL_ID columns logically relate to the primary key of the dimension level definition table, typically BSC_SYS_DIM_LEVELS_B. The TAB_ID would logically reference a tab definition table within the BSC schema. The table's unique index (BSC_SYS_COM_DIM_LEVELS_U1) is the primary key constraint, and the non-unique index (BSC_SYS_COM_DIM_LEVELS_N1) on DIM_LEVEL_ID optimizes queries filtering by that identifier.
-
APPS.BSC_UTILITY dependencies on BSC_KPI_DIM_LEVELS_B
12.1.1
-
APPS.BSC_UPDATE_COLOR dependencies on BSC_SYS_COM_DIM_LEVELS
12.1.1
-
APPS.BSC_DIMENSION_SETS_PUB dependencies on BSC_KPI_DIM_LEVELS_B
12.1.1
-
TABLE: BSC.BSC_SYS_COM_DIM_LEVELS
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_SYS_COM_DIM_LEVELS, object_name:BSC_SYS_COM_DIM_LEVELS, status:VALID,
-
APPS.BSC_COMMON_DIMENSIONS_PVT dependencies on BSC_SYS_COM_DIM_LEVELS
12.1.1
-
APPS.BSC_COPY_INDICATOR_PUB dependencies on BSC_SYS_DIM_LEVELS_B
12.1.1
-
TABLE: BSC.BSC_KPI_DIM_LEVELS_B
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_KPI_DIM_LEVELS_B, object_name:BSC_KPI_DIM_LEVELS_B, status:VALID,
-
APPS.BSC_COPY_INDICATOR_PUB dependencies on BSC_KPI_DIM_LEVELS_B
12.1.1
-
VIEW: APPS.BSC_KPI_DIM_LEVELS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_KPI_DIM_LEVELS_VL, object_name:BSC_KPI_DIM_LEVELS_VL, status:VALID,
-
APPS.BSC_BIS_DIM_REL_PUB dependencies on BSC_KPI_DIM_LEVELS_B
12.1.1
-
View: BSC_KPI_DIM_LEVELS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_KPI_DIM_LEVELS_VL, object_name:BSC_KPI_DIM_LEVELS_VL, status:VALID, product: BSC - Balanced Scorecard , description: View of BSC_KPI_DIM_LEVELS_B and BSC_KPI_DIM_LEVELS_TL , implementation_dba_data: APPS.BSC_KPI_DIM_LEVELS_VL ,
-
View: BSC_KPI_DIM_LEVELS_VL
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: View of BSC_KPI_DIM_LEVELS_B and BSC_KPI_DIM_LEVELS_TL , implementation_dba_data: Not implemented in this database ,
-
APPS.BSC_DIMENSION_SETS_PUB SQL Statements
12.1.1
-
APPS.BSC_KPI_DIM_LEVELS_PKG SQL Statements
12.1.1
-
APPS.BSC_BIS_DIM_REL_PUB dependencies on BSC_BIS_KPI_MEAS_PUB
12.1.1
-
APPS.BSC_DIMENSION_SETS_PUB dependencies on BSC_KPI_DIM_LEVELS_VL
12.1.1
-
PACKAGE: APPS.BSC_COMMON_DIMENSIONS_PVT
12.1.1
-
PACKAGE BODY: APPS.BSC_KPI_DIM_LEVELS_PKG
12.1.1
-
APPS.BSC_COMMON_DIMENSIONS_PVT SQL Statements
12.1.1
-
APPS.BSC_UTILITY SQL Statements
12.1.1
-
APPS.BSC_COPY_INDICATOR_PUB dependencies on BSC_DESIGNER_PVT
12.1.1
-
PACKAGE BODY: APPS.BSC_COMMON_DIMENSIONS_PUB
12.1.1
-
APPS.BSC_BIS_DIM_REL_PUB dependencies on FND_MESSAGE
12.1.1
-
APPS.BSC_DIMENSION_SETS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_COMMON_DIMENSIONS_PVT
12.1.1
-
APPS.BSC_COPY_INDICATOR_PUB SQL Statements
12.1.1
-
APPS.BSC_BIS_DIM_REL_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_DIMENSION_SETS_PUB
12.1.1
-
APPS.BSC_BIS_DIM_REL_PUB dependencies on BSC_APPS
12.1.1
-
APPS.BSC_TAB_TPLATE SQL Statements
12.1.1
-
APPS.BSC_UPDATE_COLOR SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_DIMENSION_SETS_PVT
12.1.1
-
PACKAGE BODY: APPS.BSC_COPY_INDICATOR_PUB
12.1.1
-
PACKAGE BODY: APPS.BSC_UTILITY
12.1.1
-
PACKAGE BODY: APPS.BSC_UPDATE_COLOR
12.1.1
-
PACKAGE BODY: APPS.BSC_TAB_TPLATE
12.1.1
-
eTRM - BSC Tables and Views
12.1.1
description: Tab permissions ,
-
APPS.BSC_COPY_INDICATOR_PUB dependencies on FND_API
12.1.1
-
PACKAGE BODY: APPS.BSC_BIS_DIM_REL_PUB
12.1.1