Search Results bisbv_performance_measures
Overview
BISBV_PERFORMANCE_MEASURES is a PL/SQL view owned by the APPS schema within the Oracle E-Business Suite "BIS" (Business Intelligence System / Applications BIS) product family. In EBS 12.1.1 and 12.2.2 it functions as a denormalized, language-aware presentation layer over the core indicator (performance measure) definition tables, exposing each performance measure together with its up to seven associated analysis dimensions on a single row. Its primary role is to serve Oracle Daily Business Intelligence (DBI) and related performance-management reporting components, providing a stable interface that report definitions, dashboards, and integration extracts can query without directly joining the BIS_INDICATORS, BIS_INDICATORS_TL, and BIS_INDICATOR_DIMENSIONS tables. Because the view resolves translated names through the current session language, it returns measure names and descriptions in the user's language while keeping the underlying identifiers available for programmatic use. The object carries a VALID status in a standard, patched environment and is delivered as part of the standard APPS seed data rather than as a custom object.
Underlying Base Objects
The view text joins three logical base objects, presented with inline aliases:
- BIS_INDICATORS — the master measure/indicator definition table, supplying measure identity, unit-of-measure class, data-source configuration, function name, comparison source, dataset, and enablement flags.
- BIS_INDICATORS_TL — the translated attributes table, supplying language-specific NAME and DESCRIPTION. It is joined on INDICATOR_ID with the restriction BIS_INDICATORS_TL.LANGUAGE = USERENV('LANG').
- BIS_INDICATOR_DIMENSIONS — joined seven times (aliased DIM1 through DIM7) on INDICATOR_ID, each time filtered by a fixed SEQUENCE_NO (1 through 7) using an outer join so that measures with fewer than seven dimensions are still returned. The 1 = ...SEQUENCE_NO(+) predicate preserves outer-join semantics while pinning each alias to a specific dimension slot.
No additional base objects are documented beyond these; all cardinality is therefore one row per indicator per language, with dimension columns populated only where a corresponding dimension assignment exists.
Key Columns
- MEASURE_ID — the indicator identifier (BIS_INDICATORS.INDICATOR_ID); the surrogate key for the measure.
- MEASURE_SHORT_NAME, MEASURE_NAME, DESCRIPTION — the short code and the translated display name and description.
- DIMENSION1_ID … DIMENSION7_ID — the dimension identifiers assigned to sequence positions 1 through 7; NULL where no assignment exists.
- UNIT_OF_MEASURE_CLASS — the UOM class governing how the measure is quantified.
- ACTUAL_DATA_SOURCE_TYPE, ACTUAL_DATA_SOURCE, FUNCTION_NAME — define how actual data is sourced and computed.
- COMPARISON_SOURCE, INCREASE_IN_MEASURE — the comparison basis and the direction indicating improvement.
- ENABLE_LINK, DATASET_ID, ENABLED — drill-down navigation, owning dataset, and active/inactive status.
- OBSOLETE — derived via NVL(BIS_INDICATORS.OBSOLETE,'F'), defaulting to a non-obsolete flag.
- MEASURE_TYPE — classification of the measure.
Common Use Cases and Queries
Typical uses include validating measure setups, extracting measure-to-dimension mappings for a data model review, and feeding downstream dashboards. The following examples illustrate these patterns.
- List all enabled, non-obsolete measures:
SELECT MEASURE_ID, MEASURE_NAME, MEASURE_TYPE, UNIT_OF_MEASURE_CLASS FROM APPS.BISBV_PERFORMANCE_MEASURES WHERE ENABLED = 'Y' AND OBSOLETE = 'F' ORDER BY MEASURE_NAME; - Inspect dimension assignments:
SELECT MEASURE_NAME, DIMENSION1_ID, DIMENSION2_ID, DIMENSION3_ID, DIMENSION4_ID, DIMENSION5_ID, DIMENSION6_ID, DIMENSION7_ID FROM APPS.BISBV_PERFORMANCE_MEASURES WHERE MEASURE_SHORT_NAME = :short_name; - Trace sourcing and comparisons:
SELECT MEASURE_NAME, ACTUAL_DATA_SOURCE_TYPE, ACTUAL_DATA_SOURCE, FUNCTION_NAME, COMPARISON_SOURCE FROM APPS.BISBV_PERFORMANCE_MEASURES WHERE DATASET_ID = :dataset_id;
Because the view returns translated attributes, query it from a session whose language is set as expected; for pure metadata or administrative checks, restrict against MEASURE_SHORT_NAME rather than the translated NAME to avoid language-dependent results.
-
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 ,
-
VIEW: APPS.ISC_OPI_IND_CR_TAB_BASE_V
12.1.1
-
PACKAGE BODY: APPS.BIS_REGISTRATION_SERVICE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_REGISTRATION_SERVICE_PUB, status:VALID,
-
APPS.BIS_REGISTRATION_SERVICE_PUB SQL Statements
12.1.1
-
APPS.BIS_COMPUTED_ACTUAL_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.WIP_BIS_YDSP_ALERT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WIP_BIS_YDSP_ALERT, status:VALID,
-
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,
-
SYNONYM: APPS.BIS_INDICATOR_DIMENSIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_INDICATOR_DIMENSIONS, status:VALID,
-
SYNONYM: APPS.BIS_INDICATORS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_INDICATORS_TL, status:VALID,
-
PACKAGE BODY: APPS.WIP_BIS_UTZ_ALERT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WIP_BIS_UTZ_ALERT, status:VALID,
-
View: ISC_OPI_IND_CR_TAB_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_OPI_IND_CR_TAB_BASE_V, object_name:ISC_OPI_IND_CR_TAB_BASE_V, status:VALID, product: ISC - Supply Chain Intelligence , implementation_dba_data: APPS.ISC_OPI_IND_CR_TAB_BASE_V ,
-
View: ISC_OPI_IND_CR_TAB_BASE_V
12.2.2
product: ISC - Supply Chain Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.BISVIEWER_PMF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BISVIEWER_PMF, status:VALID,
-
PACKAGE: APPS.BIS_AK_REGION_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BIS_AK_REGION_PUB, status:VALID,
-
PACKAGE BODY: APPS.BIS_AK_REGION_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_AK_REGION_PUB, status:VALID,
-
PACKAGE BODY: APPS.BIS_MEASURE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_MEASURE_PVT, status:VALID,
-
PACKAGE BODY: APPS.BIS_COMPUTED_ACTUAL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_COMPUTED_ACTUAL_PVT, status:VALID,
-
PACKAGE BODY: APPS.HR_BIS_ALERTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_BIS_ALERTS, status:VALID,
-
VIEW: APPS.ISC_OPI_IND_CR_TAB_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ISC.ISC_OPI_IND_CR_TAB_BASE_V, object_name:ISC_OPI_IND_CR_TAB_BASE_V, status:VALID,
-
PACKAGE BODY: APPS.BSC_BIS_MEASURE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_BIS_MEASURE_PUB, status:VALID,
-
PACKAGE BODY: APPS.BSC_UPGRADES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_UPGRADES, status:VALID,
-
APPS.BISVIEWER_PMF SQL Statements
12.1.1
-
SYNONYM: APPS.BIS_INDICATORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_INDICATORS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.BIS_REGISTRATION_SERVICE_PUB
12.1.1
-
APPS.BIS_MEASURE_PVT SQL Statements
12.1.1
-
APPS.BSC_UPGRADES SQL Statements
12.1.1
-
APPS.HR_BIS_ALERTS SQL Statements
12.1.1
-
APPS.WIP_BIS_YDSP_ALERT SQL Statements
12.1.1
-
APPS.WIP_BIS_UTZ_ALERT SQL Statements
12.1.1
-
APPS.BSC_UPGRADES dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BIS_AK_REGION_PUB dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.WIP_BIS_YDSP_ALERT dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BIS_AK_REGION_PUB dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BIS_MEASURE_PVT dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.WIP_BIS_UTZ_ALERT dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BIS_REGISTRATION_SERVICE_PUB dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BISVIEWER_PMF dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BSC_BIS_MEASURE_PUB dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BIS_COMPUTED_ACTUAL_PVT dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.HR_BIS_ALERTS dependencies on BISBV_PERFORMANCE_MEASURES
12.1.1
-
APPS.BSC_BIS_MEASURE_PUB SQL Statements
12.1.1
-
APPS.MSC_CL_OTHER_PULL SQL Statements
12.1.1
-
APPS.MSC_CL_OTHER_PULL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.MSC_CL_OTHER_PULL
12.1.1
-
PACKAGE BODY: APPS.BISVIEWER_PMF
12.1.1
-
APPS.WIP_BIS_UTZ_ALERT dependencies on BISBV_DIMENSION_LEVELS
12.1.1
-
APPS.WIP_BIS_YDSP_ALERT dependencies on BISBV_DIMENSION_LEVELS
12.1.1