DBA Data[Home] [Help]

APPS.BEN_COMP_OBJ_FILTER dependencies on BEN_HASH_UTILITY

Line 16: g_hash_key number := ben_hash_utility.get_hash_key;

12: --
13: g_procptip_list g_procptip_set;
14: --
15: g_package varchar2(50) := 'ben_comp_obj_filter.';
16: g_hash_key number := ben_hash_utility.get_hash_key;
17: g_hash_jump number := ben_hash_utility.get_hash_jump;
18: --
19: function check_dupproc_ptip
20: (p_ptip_id in number

Line 17: g_hash_jump number := ben_hash_utility.get_hash_jump;

13: g_procptip_list g_procptip_set;
14: --
15: g_package varchar2(50) := 'ben_comp_obj_filter.';
16: g_hash_key number := ben_hash_utility.get_hash_key;
17: g_hash_jump number := ben_hash_utility.get_hash_jump;
18: --
19: function check_dupproc_ptip
20: (p_ptip_id in number
21: )

Line 109: l_hv := ben_hash_utility.get_hashed_index(p_id => p_ptip_id);

105: hr_utility.set_location ('Entering ' || l_package,10);
106: --
107: -- Get the hashed value for the ptip
108: --
109: l_hv := ben_hash_utility.get_hashed_index(p_id => p_ptip_id);
110: --
111: -- Check for list entry. if none exists the NO_DATA_FOUND exception
112: -- will fire.
113: --

Line 129: l_hv := ben_hash_utility.get_next_hash_index(p_hash_index => l_hv);

125: -- will fire
126: --
127: while g_procptip_list(l_hv).ptip_id <> p_ptip_id loop
128: --
129: l_hv := ben_hash_utility.get_next_hash_index(p_hash_index => l_hv);
130: --
131: end loop;
132: --
133: g_procptip_list(l_hv).eligible := p_eligible;

Line 172: l_hv := ben_hash_utility.get_hashed_index(p_id => p_ptip_id);

168: hr_utility.set_location ('Entering ' || l_package,10);
169: --
170: -- Get the hashed value for the ptip
171: --
172: l_hv := ben_hash_utility.get_hashed_index(p_id => p_ptip_id);
173: --
174: -- Check for list entry. if none exists the NO_DATA_FOUND exception
175: -- will fire.
176: --

Line 192: l_hv := ben_hash_utility.get_next_hash_index(p_hash_index => l_hv);

188: -- will fire
189: --
190: while g_procptip_list(l_hv).ptip_id <> p_ptip_id loop
191: --
192: l_hv := ben_hash_utility.get_next_hash_index(p_hash_index => l_hv);
193: --
194: end loop;
195: --
196: return g_procptip_list(l_hv).eligible;