Search Results bsc_kpi_data_tables
Overview
The BSC_KPI_DATA_TABLES table is a core data repository within the now-obsolete Balanced Scorecard (BSC) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. Its primary role was to manage the metadata linking Key Performance Indicators (KPIs) to the underlying physical database tables that stored their actual performance data. This table functioned as a critical mapping layer, enabling the BSC application to dynamically locate and retrieve the raw metric values for a given KPI based on its specific dimensionality and reporting periodicity. It is essential to note that the BSC module itself is marked as obsolete, meaning this table and its associated functionality are part of a legacy framework that is no longer under active development.
Key Information Stored
The table's structure is defined by its composite primary key, which uniquely identifies a specific data source for a KPI. The key columns are DIM_SET_ID, PERIODICITY_ID, LEVEL_COMB, and INDICATOR. These fields collectively describe the context of the data: the dimension set defining the analytical perspective (e.g., organization, time, product), the time frequency (e.g., monthly, quarterly), the specific level combination within the dimension hierarchy, and the KPI identifier itself. A critical non-key column is TABLE_NAME, which stores the name of the physical database table (referenced via BSC_DB_TABLES) where the actual KPI data values for this specific context are stored. This design allowed for flexible data sourcing, where a single KPI could pull data from different underlying tables depending on its analytical context.
Common Use Cases and Queries
The primary use case was to support the runtime data retrieval engine of the Balanced Scorecard. When a user requested a scorecard or report, the application would query this table to determine the precise source table for each KPI's data. Common queries involved joining to related metadata tables to generate data source maps or troubleshoot ETL processes. A typical pattern would be to identify all data tables for a specific KPI or periodicity.
- Sample Query: To find all data source mappings for a specific indicator and periodicity:
SELECT kdt.indicator, kdt.periodicity_id, kdt.table_name, dbt.table_type
FROM bsc_kpi_data_tables kdt,
bsc_db_tables dbt
WHERE kdt.table_name = dbt.table_name
AND kdt.indicator = :p_indicator
AND kdt.periodicity_id = :p_periodicity;
Related Objects
BSC_KPI_DATA_TABLES is centrally connected to several other metadata tables in the BSC schema via foreign key relationships, forming the core of the KPI definition framework.
- BSC_KPI_PERIODICITIES: References (INDICATOR, PERIODICITY_ID). Validates the time frequency defined for the KPI.
- BSC_DB_TABLES: References TABLE_NAME. Validates and provides additional attributes for the physical data table.
- BSC_KPI_DIM_SETS_TL: References DIM_SET_ID (and INDICATOR). Validates the set of dimensions associated with the KPI.
The table's primary key, BSC_KPI_DATA_TABLES_PK, is referenced by other objects (like materialized views or fact tables) not listed in the provided metadata but inherent to the module's architecture for storing and aggregating KPI data.
-
Table: BSC_KPI_DATA_TABLES
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: Data table information , implementation_dba_data: Not implemented in this database ,
-
Table: BSC_KPI_DATA_TABLES
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_KPI_DATA_TABLES, object_name:BSC_KPI_DATA_TABLES, status:VALID, product: BSC - Balanced Scorecard , description: Data table information , implementation_dba_data: BSC.BSC_KPI_DATA_TABLES ,
-
APPS.BSC_UPDATE_SUM dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_TEMPLATE dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_UPDATE_UTIL dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_UPDATE_CALC dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_BIA_WRAPPER dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_COPY_INDICATOR_PUB dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_BSC_ADAPTER dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_DESIGNER_PVT dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_MO_HELPER_PKG dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_DBGEN_UTILS dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_UPDATE dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_UPDATE_LOCK dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_METADATA_DESC dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_MO_LOADER_CONFIG_PKG dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_DBGEN_BSC_READER dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_PMA_APIS_PUB dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_UPDATE_COLOR dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_UPDATE_VAL dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_PMF_UI_WRAPPER dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_KPI_PVT dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_PMD_OPT_DOC_UTIL dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_IM_UTILS dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_MO_INDICATOR_PKG dependencies on BSC_KPI_DATA_TABLES
12.1.1
-
APPS.BSC_TEMPLATE dependencies on BSC_KPI_PERIODICITIES
12.1.1
-
APPS.BSC_TEMPLATE dependencies on BSC_TAB_INDICATORS
12.1.1
-
APPS.BSC_UPDATE_VAL dependencies on BSC_KPI_PROPERTIES
12.1.1
-
APPS.BSC_KPI_PVT dependencies on BSC_UTILITY
12.1.1
-
APPS.BSC_BIA_WRAPPER SQL Statements
12.1.1
-
APPS.BSC_BIA_WRAPPER dependencies on BSC_DB_TABLES_RELS
12.1.1
-
APPS.BSC_UPDATE_UTIL dependencies on BSC_DB_TABLES_RELS
12.1.1
-
APPS.BSC_UPDATE_SUM dependencies on BSC_SYS_PERIODICITIES
12.1.1
-
TABLE: BSC.BSC_KPI_DATA_TABLES
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_KPI_DATA_TABLES, object_name:BSC_KPI_DATA_TABLES, status:VALID,
-
APPS.BSC_UPDATE_CALC dependencies on BSC_DB_CALCULATIONS
12.1.1
-
APPS.BSC_UPDATE_UTIL dependencies on BSC_KPIS_B
12.1.1
-
APPS.BSC_METADATA_OPTIMIZER_PKG dependencies on FND_STATS
12.1.1
-
APPS.BSC_MO_INDICATOR_PKG SQL Statements
12.1.1
-
VIEW: APPS.BSC_KPI_DATA_TABLES_V
12.1.1
-
APPS.BSC_BIA_WRAPPER dependencies on BSC_DB_MEASURE_COLS_VL
12.1.1
-
APPS.BSC_BSC_ADAPTER dependencies on BSC_DB_TABLES_RELS
12.1.1
-
APPS.BSC_BIA_WRAPPER dependencies on BSC_DB_TABLES_COLS
12.1.1
-
APPS.BSC_UPDATE_UTIL dependencies on BSC_KPI_PROPERTIES
12.1.1
-
APPS.BSC_UPDATE_SUM dependencies on BSC_DB_TABLES
12.1.1
-
APPS.BSC_UPDATE_INC dependencies on BSC_KPIS_VL
12.1.1
-
SYNONYM: APPS.BSC_KPI_DATA_TABLES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BSC_KPI_DATA_TABLES, status:VALID,
-
APPS.BSC_BSC_ADAPTER dependencies on BSC_DB_TABLES
12.1.1
-
Table: BSC_DB_TABLES
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: Data tables information , implementation_dba_data: Not implemented in this database ,
-
APPS.BSC_PMA_APIS_PUB SQL Statements
12.1.1
-
Table: BSC_KPI_PERIODICITIES
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_KPI_PERIODICITIES, object_name:BSC_KPI_PERIODICITIES, status:VALID, product: BSC - Balanced Scorecard , description: Indicator periodicity information , implementation_dba_data: BSC.BSC_KPI_PERIODICITIES ,