DBA Data[Home] [Help]

APPS.EC_UTILS dependencies on DBMS_UTILITY

Line 70: hash_value:= dbms_utility.get_hash_value(hash_string,1,100000);

66: end loop;
67: */
68: -- Bug 2708573
69: hash_string:=to_char(i_variable_level) || '-' ||i_variable_name;
70: hash_value:= dbms_utility.get_hash_value(hash_string,1,100000);
71: if ec_utils.g_stack_pos_tbl.exists(hash_value) then
72: i_stack_pos := ec_utils.g_stack_pos_tbl(hash_value);
73: i_plsql_pos := to_number(nvl(g_stack(i_stack_pos).variable_position,0));
74: bFound := TRUE;

Line 1035: hash_value:= dbms_utility.get_hash_value(hash_string,1,8192);

1031: end loop;
1032: */
1033: -- Bug 2617428
1034: hash_string:=to_char(i_level) || '-' ||cIn_String;
1035: hash_value:= dbms_utility.get_hash_value(hash_string,1,8192);
1036: if ec_utils.g_col_pos_tbl_1.exists(hash_value) then
1037: if ec_utils.g_col_pos_tbl_1(hash_value).occr = 1 then
1038: o_pos := ec_utils.g_col_pos_tbl_1(hash_value).value;
1039: bFound := TRUE;

Line 1254: hash_value := dbms_utility.get_hash_value(hash_string,1,100000);

1250: end if;
1251: -- Bug 2708573
1252: -- Populate Hash table for searching the g_stack
1253: hash_string := to_char(i_variable_level)||'-'||i_variable_name ;
1254: hash_value := dbms_utility.get_hash_value(hash_string,1,100000);
1255: ec_utils.g_stack_pos_tbl(hash_value):=m_count;
1256:
1257: end if;
1258: if EC_DEBUG.G_debug_level >= 2 then

Line 2425: hash_val := dbms_utility.get_hash_value(hash_string,1,8192);

2421: );
2422: end if;
2423: -- 2996147
2424: hash_string:=to_char( g_file_tbl(m_count).external_level)||'-'||upper(g_file_tbl(m_count).interface_column_name);
2425: hash_val := dbms_utility.get_hash_value(hash_string,1,8192);
2426: if ec_utils.g_col_pos_tbl_1.exists(hash_val) then
2427: if ec_utils.g_col_pos_tbl_1(hash_val).occr=1 then
2428: p_count:=ec_utils.g_col_pos_tbl_1(hash_val).value;
2429: ec_utils.g_col_pos_tbl_2(p_count):=hash_val;