Search Results comparison_source
Overview
APPS.BISBV_PERFORMANCE_MEASURES is a Business Intelligence System (BIS) reporting view in Oracle E-Business Suite that presents the master catalog of performance measures (indicators) tracked within the Oracle Balanced Scorecard / Daily Business Intelligence framework. The view consolidates descriptive attributes from the indicator definition tables and optionally associates up to seven analytical dimensions with each measure. Because the "BV" segment in the name denotes a Business View, the object is intended primarily as a read-only reporting surface rather than a transaction entry point, and it is typically consumed by dashboards, scorecard regions, and custom operational reports that need a single, language-aware list of enabled indicators.
Its role in EBS reporting and integration is to abstract the join complexity between the base indicator table, its translation table, and the dimension mapping table. Rather than requiring report authors to repeat the multilingual join and the seven separate dimension lookups, BISBV_PERFORMANCE_MEASURES exposes a flattened projection in which each indicator appears once with DIMENSION1_ID through DIMENSION7_ID resolved.
Underlying Base Objects
The view is defined over three logical sets of base objects, joined with outer joins for the dimension associations:
- BIS_INDICATORS — the primary table holding each indicator's definition, including its identifier, short name, unit of measure class, data source configuration, and enabled/obsolete flags.
- BIS_INDICATORS_TL — the translation table supplying the language-specific NAME and DESCRIPTION, joined on INDICATOR_ID and restricted by
LANGUAGE = USERENV('LANG')so the view returns text in the session's current language. - BIS_INDICATOR_DIMENSIONS (aliased seven times as dim1 through dim7) — the mapping table linking indicators to analytical dimensions. Each alias is joined on INDICATOR_ID with the outer-join operator (+), and constrained to a fixed
SEQUENCE_NOvalue (1 through 7).
This is the point of direct relevance to the "sequence_no" search: the dimension sequence number is the discriminator that allows a single mapping table to supply seven distinct dimension slots, and it is used as a join predicate rather than being projected as a column in the view.
Key Columns
MEASURE_ID— the indicator identifier (source column INDICATOR_ID); the primary key for joining to other BIS objects.MEASURE_SHORT_NAMEandMEASURE_NAME— the internal short name and the translated display name.DESCRIPTION— the translated long description of the measure.DIMENSION1_ID…DIMENSION7_ID— the dimension identifiers mapped by sequence number; null when no dimension occupies that slot.UNIT_OF_MEASURE_CLASS— the UOM class (for example currency, quantity, or percentage) governing the measure's values.ACTUAL_DATA_SOURCE_TYPE,ACTUAL_DATA_SOURCE, andFUNCTION_NAME— define how actual results are sourced and computed.COMPARISON_SOURCE,INCREASE_IN_MEASURE, andENABLE_LINK— control target/comparison behavior and drill-down navigation.DATASET_ID,ENABLED,OBSOLETE, andMEASURE_TYPE— classification and lifecycle attributes; OBSOLETE is coalesced to 'F' when null.
Common Use Cases and Queries
Typical usage includes validating indicator setup, driving custom scorecard reports, and auditing dimension assignments. A simple listing of active measures:
SELECT measure_id, measure_name, measure_type FROM apps.bisbv_performance_measures WHERE enabled = 'Y' AND obsolete = 'F';SELECT measure_short_name, dimension1_id, dimension2_id, dimension3_id FROM apps.bisbv_performance_measures;SELECT measure_name, unit_of_measure_class, function_name FROM apps.bisbv_performance_measures WHERE dataset_id = :p_dataset_id;
Because the joins to the translation and dimension tables are outer joins, indicators without translations or without any mapped dimension are still returned, which makes the view safe for exception-based reporting.
-
VIEW: APPS.BISBV_PERFORMANCE_MEASURES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISBV_PERFORMANCE_MEASURES, object_name:BISBV_PERFORMANCE_MEASURES, status:VALID,
-
VIEW: APPS.BISBV_PERFORMANCE_MEASURES
12.1.1
-
TABLE: BIS.BIS_INDICATORS
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_INDICATORS, object_name:BIS_INDICATORS, status:VALID,
-
VIEW: APPS.BISFV_PERFORMANCE_MEASURES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISFV_PERFORMANCE_MEASURES, object_name:BISFV_PERFORMANCE_MEASURES, status:VALID,
-
View: BISBV_PERFORMANCE_MEASURES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISBV_PERFORMANCE_MEASURES, object_name:BISBV_PERFORMANCE_MEASURES, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BISBV_PERFORMANCE_MEASURES ,
-
View: BISBV_PERFORMANCE_MEASURES
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
APPS.BIS_COMPUTED_ACTUAL_PVT SQL Statements
12.1.1
-
APPS.BIS_MEASURE_PVT SQL Statements
12.1.1
-
APPS.BIS_PORTLET_PMREGION SQL Statements
12.1.1
-
PACKAGE: APPS.BIS_MEASURE_PUB
12.1.1
-
APPS.BIS_PORTLET_PMREGION dependencies on BIS_INDICATORS
12.1.1
-
PACKAGE BODY: APPS.BIS_MEASURE_PVT
12.1.1
-
APPS.BIS_COMPUTED_ACTUAL_PVT dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BIS_MEASURE_PUB dependencies on FND_FORM_FUNCTIONS
12.1.1
-
APPS.BIS_COMPUTED_ACTUAL_PVT dependencies on BIS_PMV_ACTUAL_PVT
12.1.1
-
APPS.BSC_MIGRATION SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BIS_COMPUTED_ACTUAL_PVT
12.1.1
-
APPS.BIS_COMPUTED_ACTUAL_PVT dependencies on AK_REGION_ITEMS
12.1.1
-
APPS.BSC_BIS_KPI_CRUD_PUB SQL Statements
12.1.1
-
APPS.BSC_BIS_KPI_CRUD_PUB dependencies on BIS_INDICATORS
12.1.1
-
PACKAGE BODY: APPS.BIS_PORTLET_PMREGION
12.1.1
-
PACKAGE BODY: APPS.BSC_MIGRATION
12.1.1
-
PACKAGE BODY: APPS.BSC_BIS_KPI_CRUD_PUB
12.1.1
-
APPS.BIS_COMPUTED_ACTUAL_PVT dependencies on BIS_UTILITIES_PUB
12.1.1
-
eTRM - BIS Tables and Views
12.1.1