DBA Data[Home] [Help]

APPS.BSC_DBGEN_UTILS dependencies on BSC_KPI_PROPERTIES

Line 282: -- table BSC_KPI_PROPERTIES.

278: --***************************************************************************
279: -- getKPIPropertyValue : LeerMatrixINfo
280: -- DESCRIPTION:
281: -- Return the value oif the given variable of the given indicator from
282: -- table BSC_KPI_PROPERTIES.
283: --
284: -- PARAMETERS:
285: -- Indic: indicator code
286: -- Variable: variable name

Line 300: FROM BSC_KPI_PROPERTIES

296: return NUMBER IS
297: l_value number := null;
298: CURSOR cProperty IS
299: SELECT PROPERTY_VALUE
300: FROM BSC_KPI_PROPERTIES
301: WHERE INDICATOR = p_kpi
302: AND PROPERTY_CODE = p_property;
303:
304: BEGIN