DBA Data[Home] [Help]

APPS.CSC_CORE_UTILS_PVT dependencies on CS_COUNTERS

Line 473: l_counter_name cs_counters.name%type;

469:
470: FUNCTION GET_COUNTER_NAME( p_COUNTER_ID NUMBER )
471: RETURN VARCHAR2
472: IS
473: l_counter_name cs_counters.name%type;
474: Cursor C1 is
475: select name
476: from cs_counters
477: where counter_id = p_counter_id;

Line 476: from cs_counters

472: IS
473: l_counter_name cs_counters.name%type;
474: Cursor C1 is
475: select name
476: from cs_counters
477: where counter_id = p_counter_id;
478: BEGIN
479: OPEN C1;
480: FETCH C1 into l_counter_name;