Search Results measure_group_id
Overview
The BSC_DB_MEASURE_GROUPS_VL view is a public, language-sensitive reporting object within the Balanced Scorecard (BSC) module of Oracle E-Business Suite. It is owned by the APPS schema and carries a VALID status in both 12.1.1 and 12.2.2 deployments. The view exists to expose translated descriptive text associated with measure groups — the logical containers that organize the measures and key performance indicators tracked in a Balanced Scorecard implementation.
The _VL suffix follows the standard Oracle EBS multilingual convention, indicating a view that joins a translated table (_TL) against the session's language environment. In practice, this view provides a convenient, language-filtered projection of measure group metadata for reporting, dashboards, and integration interfaces that must render descriptive text in the user's preferred language.
Underlying Base Objects
Per the documented ETRM metadata, BSC_DB_MEASURE_GROUPS_VL is defined directly over BSC_DB_MEASURE_GROUPS_TL, the translation table that stores language-specific attributes for measure groups. The view text as documented is:
SELECT MEASURE_GROUP_ID, HELP FROM BSC_DB_MEASURE_GROUPS_TL WHERE LANGUAGE = USERENV('LANG')
The WHERE clause restricts rows to the language returned by USERENV('LANG'), ensuring each query returns only the translation appropriate to the current session. Note that other EBS _VL views conventionally union the base (_B) table with translations for untranslated rows; the ETRM excerpt for this object documents only the _TL source, and no additional base objects are enumerated in the 12.2.2 metadata. This discrepancy should be verified against the live view definition in any specific instance, as the view text may have been extended in later patches.
Key Columns
- MEASURE_GROUP_ID — The primary identifier for a measure group. This is the column most commonly used in joins to other BSC tables such as measure assignments, indicator definitions, and scorecard configuration. It is the search term that most frequently leads users to this view.
- HELP — The translated help or descriptive text associated with the measure group, stored at the language level in the
_TLtable. This is typically the field surfaced in the user interface to guide scorecard authors.
Because the documented VIEW TEXT exposes only these two columns, the view is a narrow, purpose-built projection rather than a full descriptive record. The measure group's untranslated or primary attributes (such as NAME and other base columns) reside in the corresponding base table, BSC_DB_MEASURE_GROUPS_B, if present in the schema.
Common Use Cases and Queries
Typical uses include retrieving help text for display, resolving a MEASURE_GROUP_ID to its session-language description, and joining to other BSC objects for scorecard reporting. A simple lookup for a specific measure group:
SELECT MEASURE_GROUP_ID, HELP FROM APPS.BSC_DB_MEASURE_GROUPS_VL WHERE MEASURE_GROUP_ID = :p_measure_group_id;
Integration or interface code frequently performs a language-aware join back to the base table to obtain both the name and the translated help:
SELECT g.measure_group_id,
g.name,
v.help
FROM apps.bsc_db_measure_groups_b g,
apps.bsc_db_measure_groups_vl v
WHERE g.measure_group_id = v.measure_group_id
AND g.measure_group_id = :p_measure_group_id;
Analysts should confirm the actual column list and _B table name against the dictionary before deploying such joins, since the ETRM metadata documents only the two columns named above.
-
View: BSC_DB_MEASURE_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_DB_MEASURE_GROUPS_VL FND.BSC_DB_MEASURE_GROUPS_VL, object_name:BSC_DB_MEASURE_GROUPS_VL, status:VALID, product: BSC - Balanced Scorecard , description: View of BSC_DB_MEASURE_GROUPS_TL , implementation_dba_data: APPS.BSC_DB_MEASURE_GROUPS_VL ,
-
VIEW: QPR.QPR_MEASURE_GROUPS#
12.2.2
-
View: BSC_DB_MEASURE_GROUPS_VL
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: View of BSC_DB_MEASURE_GROUPS_TL , implementation_dba_data: Not implemented in this database ,
-
APPS.BSC_DB_MEASURE_GROUPS_PKG SQL Statements
12.1.1
-
VIEW: APPS.BSC_DB_MEASURE_GROUPS_VL
12.1.1
-
View: BSC_DB_MEASURE_COLS_VL
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: View of BSC_DB_MEASURE_COLS_TL , implementation_dba_data: Not implemented in this database ,
-
TABLE: BSC.BSC_DB_MEASURE_GROUPS_TL
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_DB_MEASURE_GROUPS_TL, object_name:BSC_DB_MEASURE_GROUPS_TL, status:VALID,
-
View: BSC_DB_MEASURE_COLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_DB_MEASURE_COLS_VL, object_name:BSC_DB_MEASURE_COLS_VL, status:VALID, product: BSC - Balanced Scorecard , description: View of BSC_DB_MEASURE_COLS_TL , implementation_dba_data: APPS.BSC_DB_MEASURE_COLS_VL ,
-
VIEW: APPS.BSC_DB_MEASURE_COLS_VL
12.1.1
-
VIEW: APPS.BSC_DB_MEASURE_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_DB_MEASURE_GROUPS_VL FND.BSC_DB_MEASURE_GROUPS_VL, object_name:BSC_DB_MEASURE_GROUPS_VL, status:VALID,
-
TABLE: BSC.BSC_DB_MEASURE_COLS_TL
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_DB_MEASURE_COLS_TL, object_name:BSC_DB_MEASURE_COLS_TL, status:VALID,
-
APPS.BSC_DB_MEASURE_COLS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_DB_MEASURE_GROUPS_PKG
12.1.1
-
VIEW: QPR.QPR_MEASURE_GROUPS#
12.2.2
owner:QPR, object_type:VIEW, object_name:QPR_MEASURE_GROUPS#, status:VALID,
-
TABLE: QPR.QPR_MEASURE_GROUPS
12.1.1
owner:QPR, object_type:TABLE, object_name:QPR_MEASURE_GROUPS, status:VALID,
-
VIEW: APPS.BSC_DB_MEASURE_COLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_DB_MEASURE_COLS_VL, object_name:BSC_DB_MEASURE_COLS_VL, status:VALID,
-
TABLE: QPR.QPR_MEASURE_GROUPS
12.2.2
owner:QPR, object_type:TABLE, object_name:QPR_MEASURE_GROUPS, status:VALID,
-
View: BSC_DB_MEASURE_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_DB_MEASURE_GROUPS_VL FND.BSC_DB_MEASURE_GROUPS_VL, object_name:BSC_DB_MEASURE_GROUPS_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.BSC_DB_MEASURE_GROUPS_VL ,
-
Table: BSC_DB_MEASURE_GROUPS_TL
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_DB_MEASURE_GROUPS_TL, object_name:BSC_DB_MEASURE_GROUPS_TL, status:VALID, product: BSC - Balanced Scorecard , description: Measure groups information , implementation_dba_data: BSC.BSC_DB_MEASURE_GROUPS_TL ,
-
View: BSC_DB_MEASURE_GROUPS_VL
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
Table: BSC_DB_MEASURE_GROUPS_TL
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: Measure groups information , implementation_dba_data: Not implemented in this database ,
-
APPS.BSC_MO_INPUT_TABLE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_DB_MEASURE_COLS_PKG
12.1.1
-
APPS.BSC_AOP_TPLATE SQL Statements
12.1.1
-
APPS.BSC_BIS_CUSTOM_KPI_UTIL_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_AOP_TPLATE
12.1.1
-
APPS.BSC_BIS_MEASURE_PUB SQL Statements
12.1.1
-
APPS.BSC_MO_INDICATOR_PKG SQL Statements
12.1.1
-
APPS.BSC_DBGEN_BSC_READER SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_BIS_CUSTOM_KPI_UTIL_PUB
12.1.1
-
APPS.BSC_MO_HELPER_PKG SQL Statements
12.1.1
-
APPS.BSC_DATASETS_PVT SQL Statements
12.1.1
-
APPS.BSC_MO_INPUT_TABLE_PKG dependencies on BSC_DB_MEASURE_COLS_VL
12.1.1
-
APPS.BSC_BIS_CUSTOM_KPI_UTIL_PUB dependencies on BSC_DB_MEASURE_COLS_VL
12.1.1
-
APPS.BSC_DB_MEASURE_GROUPS_PKG dependencies on BSC_DB_MEASURE_GROUPS_TL
12.1.1
-
APPS.BSC_MO_HELPER_PKG dependencies on BSC_DB_MEASURE_COLS_VL
12.1.1
-
APPS.BSC_BIS_MEASURE_PUB dependencies on BSC_DB_MEASURE_COLS_VL
12.1.1
-
APPS.BSC_BIS_KPI_CRUD_PUB dependencies on BSC_DB_MEASURE_GROUPS_VL
12.1.1
-
APPS.BSC_DB_MEASURE_COLS_PKG dependencies on BSC_DB_MEASURE_COLS_TL
12.1.1
-
APPS.BSC_MO_HELPER_PKG dependencies on BSC_SYS_MEASURES
12.1.1
-
APPS.BSC_BIS_MEASURE_PUB dependencies on BSC_DB_MEASURE_GROUPS_VL
12.1.1
-
APPS.BSC_BIS_KPI_CRUD_PUB dependencies on BSC_DB_MEASURE_GROUPS_PKG
12.1.1
-
APPS.BSC_DB_MEASURE_COLS_PKG dependencies on FND_MSG_PUB
12.1.1
-
APPS.BSC_DB_MEASURE_COLS_PKG dependencies on FND_API
12.1.1
-
APPS.BSC_BIS_KPI_CRUD_PUB SQL Statements
12.1.1
-
APPS.BSC_MO_INDICATOR_PKG dependencies on BSC_DB_MEASURE_COLS_TL
12.1.1
-
APPS.BSC_DBGEN_BSC_READER dependencies on BSC_DB_MEASURE_COLS_TL
12.1.1
-
APPS.BSC_AOP_TPLATE dependencies on BSC_TEMPLATE
12.1.1
-
APPS.BSC_MO_INPUT_TABLE_PKG dependencies on BSC_DB_TABLES_COLS
12.1.1
-
APPS.BSC_DBGEN_BSC_READER dependencies on BSC_METADATA_OPTIMIZER_PKG
12.1.1