DBA Data[Home] [Help]

APPS.PAY_AU_TAX_INFO_PKG dependencies on HR_UTILITY

Line 20: g_debug boolean := hr_utility.debug_enabled;

16: --
17: g_input_value_id_tbl t_input_value_id_tbl;
18: g_tax_info_elm_id number;
19: --
20: g_debug boolean := hr_utility.debug_enabled;
21: --
22: -- -------------------------------------------------------------------------
23: -- get_element_type_id
24: -- -------------------------------------------------------------------------

Line 165: hr_utility.set_location(l_proc,0);

161: --
162: begin
163: --
164: if g_debug then
165: hr_utility.set_location(l_proc,0);
166: end if;
167: --
168: g_tax_info_elm_id := get_element_type_id(c_tax_info_elm, g_tax_info_elm_id);
169: --

Line 171: hr_utility.set_location(l_proc,10);

167: --
168: g_tax_info_elm_id := get_element_type_id(c_tax_info_elm, g_tax_info_elm_id);
169: --
170: if g_debug then
171: hr_utility.set_location(l_proc,10);
172: hr_utility.trace('g_tax_info_elm_id : '||to_char(g_tax_info_elm_id));
173: end if;
174: --
175: if p_scl_upd_mode = hr_api.g_correction then

Line 172: hr_utility.trace('g_tax_info_elm_id : '||to_char(g_tax_info_elm_id));

168: g_tax_info_elm_id := get_element_type_id(c_tax_info_elm, g_tax_info_elm_id);
169: --
170: if g_debug then
171: hr_utility.set_location(l_proc,10);
172: hr_utility.trace('g_tax_info_elm_id : '||to_char(g_tax_info_elm_id));
173: end if;
174: --
175: if p_scl_upd_mode = hr_api.g_correction then
176: --

Line 186: hr_utility.set_location(l_proc,20);

182: --
183: end if;
184: --
185: if g_debug then
186: hr_utility.set_location(l_proc,20);
187: hr_utility.trace('l_effective_date : '||to_char(l_effective_date,'YYYY/MM/DD'));
188: end if;
189: --
190: open csr_tax_info_fut_ee;

Line 187: hr_utility.trace('l_effective_date : '||to_char(l_effective_date,'YYYY/MM/DD'));

183: end if;
184: --
185: if g_debug then
186: hr_utility.set_location(l_proc,20);
187: hr_utility.trace('l_effective_date : '||to_char(l_effective_date,'YYYY/MM/DD'));
188: end if;
189: --
190: open csr_tax_info_fut_ee;
191: fetch csr_tax_info_fut_ee into l_tax_info_fut_ee_id;

Line 195: hr_utility.set_location(l_proc,30);

191: fetch csr_tax_info_fut_ee into l_tax_info_fut_ee_id;
192: close csr_tax_info_fut_ee;
193: --
194: if g_debug then
195: hr_utility.set_location(l_proc,30);
196: hr_utility.trace('l_tax_info_fut_ee_id : '||to_char(l_tax_info_fut_ee_id));
197: end if;
198: --
199: -- no support alternative hr_api.g_update_override and hr_api.g_correction option

Line 196: hr_utility.trace('l_tax_info_fut_ee_id : '||to_char(l_tax_info_fut_ee_id));

192: close csr_tax_info_fut_ee;
193: --
194: if g_debug then
195: hr_utility.set_location(l_proc,30);
196: hr_utility.trace('l_tax_info_fut_ee_id : '||to_char(l_tax_info_fut_ee_id));
197: end if;
198: --
199: -- no support alternative hr_api.g_update_override and hr_api.g_correction option
200: -- because double asking update option on assignment window (for assignment change and eev change)

Line 255: hr_utility.set_location(l_proc,40);

251: --
252: end if;
253: --
254: if g_debug then
255: hr_utility.set_location(l_proc,40);
256: hr_utility.trace('l_update_mode : '||l_update_mode);
257: hr_utility.trace('l_warning : '||l_warning);
258: end if;
259: --

Line 256: hr_utility.trace('l_update_mode : '||l_update_mode);

252: end if;
253: --
254: if g_debug then
255: hr_utility.set_location(l_proc,40);
256: hr_utility.trace('l_update_mode : '||l_update_mode);
257: hr_utility.trace('l_warning : '||l_warning);
258: end if;
259: --
260: p_update_mode := l_update_mode;

Line 257: hr_utility.trace('l_warning : '||l_warning);

253: --
254: if g_debug then
255: hr_utility.set_location(l_proc,40);
256: hr_utility.trace('l_update_mode : '||l_update_mode);
257: hr_utility.trace('l_warning : '||l_warning);
258: end if;
259: --
260: p_update_mode := l_update_mode;
261: p_effective_date := l_effective_date;

Line 265: hr_utility.set_location(l_proc,1000);

261: p_effective_date := l_effective_date;
262: p_warning := l_warning;
263: --
264: if g_debug then
265: hr_utility.set_location(l_proc,1000);
266: end if;
267: --
268: end set_eev_upd_mode;
269: --