DBA Data[Home] [Help]

APPS.HXC_AP_DETAIL_LINKS_PKG dependencies on HR_UTILITY

Line 4: g_debug BOOLEAN:= hr_utility.debug_enabled;

1: package body hxc_ap_detail_links_pkg as
2: /* $Header: hxcadtsum.pkb 120.2 2005/09/23 08:03:11 sechandr noship $ */
3:
4: g_debug BOOLEAN:= hr_utility.debug_enabled;
5: TYPE tbb_id_tab IS TABLE OF hxc_time_building_blocks.time_building_block_id%TYPE INDEX BY BINARY_INTEGER;
6: TYPE app_period_tab IS TABLE OF hxc_tc_ap_links.application_period_id%TYPE INDEX BY BINARY_INTEGER;
7:
8: procedure insert_summary_row(p_application_period_id in hxc_time_building_blocks.time_building_block_id%type

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

68: BEGIN
69:
70: if g_debug then
71: l_proc := g_package||'bulk_delete';
72: hr_utility.set_location('Entering '||l_proc, 10);
73: end if;
74:
75: IF ( p_app_period_tab.COUNT = 0 )
76: THEN

Line 120: g_debug:=hr_utility.debug_enabled;

116:
117: l_proc varchar2(72);
118:
119: BEGIN
120: g_debug:=hr_utility.debug_enabled;
121:
122: if g_debug then
123: l_proc := g_package||'delete_ap_detail_links';
124: hr_utility.set_location('Entering '||l_proc, 10);

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

120: g_debug:=hr_utility.debug_enabled;
121:
122: if g_debug then
123: l_proc := g_package||'delete_ap_detail_links';
124: hr_utility.set_location('Entering '||l_proc, 10);
125: end if;
126:
127: IF ( p_blocks.COUNT <> 0 )
128: THEN

Line 200: hr_utility.set_location('Leaving '||l_proc, 20);

196:
197: END IF; -- p_blocks.COUNT <> 0
198:
199: if g_debug then
200: hr_utility.set_location('Leaving '||l_proc, 20);
201: end if;
202:
203: END delete_ap_detail_links;
204: