DBA Data[Home] [Help]

APPS.WSMPLCVA dependencies on DBMS_UTILITY

Line 8: -- when calling dbms_utility.get_hash_value use larger seed number

4: --**********************************************************************************************
5: PROCEDURE load_org_table IS
6:
7: -- BUG 3934661
8: -- when calling dbms_utility.get_hash_value use larger seed number
9: -- OLD: dbms_utility.get_hash_value(str, 1000, 5625);
10: -- NEW: dbms_utility.get_hash_value(str, 37, 1073741824);
11:
12: --abb H optional scrap accounting added ESTIMATED_SCRAP_ACCOUNTING

Line 9: -- OLD: dbms_utility.get_hash_value(str, 1000, 5625);

5: PROCEDURE load_org_table IS
6:
7: -- BUG 3934661
8: -- when calling dbms_utility.get_hash_value use larger seed number
9: -- OLD: dbms_utility.get_hash_value(str, 1000, 5625);
10: -- NEW: dbms_utility.get_hash_value(str, 37, 1073741824);
11:
12: --abb H optional scrap accounting added ESTIMATED_SCRAP_ACCOUNTING
13:

Line 10: -- NEW: dbms_utility.get_hash_value(str, 37, 1073741824);

6:
7: -- BUG 3934661
8: -- when calling dbms_utility.get_hash_value use larger seed number
9: -- OLD: dbms_utility.get_hash_value(str, 1000, 5625);
10: -- NEW: dbms_utility.get_hash_value(str, 37, 1073741824);
11:
12: --abb H optional scrap accounting added ESTIMATED_SCRAP_ACCOUNTING
13:
14: cursor c_wsm_param is

Line 109: hash_value := dbms_utility.get_hash_value(str, 37, 1073741824);

105: v_index := v_wlji_org2.first;
106: while v_index <= v_wlji_org2.last
107: loop
108: str := to_char(v_wlji_org2(v_index))||v_wlji_cc(v_index);
109: hash_value := dbms_utility.get_hash_value(str, 37, 1073741824);
110: v_class_code(hash_value) := v_wlji_cc(v_index);
111:
112: v_index := v_wlji_org2.next(v_index);
113: end loop;

Line 149: hash_value := dbms_utility.get_hash_value(str, 37, 1073741824);

145: v_index := v_wlji_org1.first;
146: while v_index <= v_wlji_org1.last
147: loop
148: str := to_char(v_wlji_org1(v_index))||v_wlji_compl_subinv(v_index);
149: hash_value := dbms_utility.get_hash_value(str, 37, 1073741824);
150: v_subinv(hash_value) := v_wlji_compl_subinv(v_index);
151:
152: v_index := v_wlji_org1.next(v_index);
153: end loop;