DBA Data[Home] [Help]

APPS.HXC_TIMEKEEPER_ERRORS dependencies on HR_UTILITY

Line 4: g_debug boolean := hr_utility.debug_enabled;

1: Package Body hxc_timekeeper_errors AS
2: /* $Header: hxctkerror.pkb 120.3 2005/09/23 09:38:06 nissharm noship $ */
3:
4: g_debug boolean := hr_utility.debug_enabled;
5:
6: --
7: -- public procedure
8: -- show_timecard_errors

Line 287: g_debug := hr_utility.debug_enabled;

283:
284:
285: BEGIN
286:
287: g_debug := hr_utility.debug_enabled;
288:
289: if g_debug then
290: l_proc := g_package||'.maintain_errors';
291: hr_utility.set_location('Entering '||l_proc, 10);

Line 291: hr_utility.set_location('Entering '||l_proc, 10);

287: g_debug := hr_utility.debug_enabled;
288:
289: if g_debug then
290: l_proc := g_package||'.maintain_errors';
291: hr_utility.set_location('Entering '||l_proc, 10);
292: end if;
293:
294:
295: --first set the date_to to todays date if message already exists for saved timecard in error status

Line 332: hr_utility.set_location('Processing '||l_proc, 40);

328: LOOP
329: EXIT WHEN (NOT p_messages.EXISTS (l_message_index));
330:
331: if g_debug then
332: hr_utility.set_location('Processing '||l_proc, 40);
333: end if;
334:
335: -- assign to variables (makes it easier to read the following code)
336: l_tbb_id := p_messages(l_message_index).time_building_block_id;

Line 340: hr_utility.set_location('Processing '||l_proc, 70);

336: l_tbb_id := p_messages(l_message_index).time_building_block_id;
337: l_tbb_ovn := p_messages(l_message_index).time_building_block_ovn;
338:
339: if g_debug then
340: hr_utility.set_location('Processing '||l_proc, 70);
341: end if;
342:
343: --added for bug no 2927608
344: If p_messages(l_message_index).message_level IN ('ERROR','WARNING','BUSINESS_MESSAGE') then

Line 398: hr_utility.set_location('Leaving '||l_proc, 80);

394:
395: END LOOP;
396:
397: if g_debug then
398: hr_utility.set_location('Leaving '||l_proc, 80);
399: end if;
400:
401: END maintain_errors;
402: