DBA Data[Home] [Help]

APPS.WSH_DELIVERY_DETAILS_INV dependencies on DBMS_UTILITY

Line 132: l_index := dbms_utility.get_hash_value (

128: l_hash_string := to_char(p_validate_rec.organization_id)||
129: to_char(p_validate_rec.inventory_item_id);
130:
131: -- Hash returns a common index if l_hash_string is identical
132: l_index := dbms_utility.get_hash_value (
133: name => l_hash_string,
134: base => c_hash_base,
135: hash_size => c_hash_size);
136: WHILE NOT l_hash_exists LOOP

Line 204: l_index := dbms_utility.get_hash_value (

200: -- Key (for hash) : Organization_id || '-' || Inventory_item_id
201: l_hash_string := to_char(p_organization_id) || '-' || to_char(p_inventory_item_id);
202:
203: -- Hash returns a common index if l_hash_string is identical
204: l_index := dbms_utility.get_hash_value (
205: name => l_hash_string,
206: base => c_hash_base,
207: hash_size => c_hash_size);
208: