DBA Data[Home] [Help]

APPS.HXC_TBB_DEL dependencies on HR_UTILITY

Line 10: g_debug boolean := hr_utility.debug_enabled;

6: -- --------------------------------------------------------------------------
7:
8: g_package varchar2(33) := ' hxc_tbb_del.'; -- global package name
9:
10: g_debug boolean := hr_utility.debug_enabled;
11:
12: -- --------------------------------------------------------------------------
13: -- |------------------------------< delete_dml >----------------------------|
14: -- --------------------------------------------------------------------------

Line 65: hr_utility.set_location('Entering:'||l_proc, 5);

61:
62:
63: if g_debug then
64: l_proc := g_package||'delete_dml';
65: hr_utility.set_location('Entering:'||l_proc, 5);
66: end if;
67:
68: -- delete the hxc_time_building_blocks row.
69:

Line 74: hr_utility.set_location(' Leaving:'||l_proc, 10);

70: delete from hxc_time_building_blocks
71: where time_building_block_id = p_rec.time_building_block_id;
72:
73: if g_debug then
74: hr_utility.set_location(' Leaving:'||l_proc, 10);
75: end if;
76:
77: exception
78: when hr_api.child_integrity_violated then

Line 129: hr_utility.set_location('Entering:'||l_proc, 5);

125:
126:
127: if g_debug then
128: l_proc := g_package||'pre_delete';
129: hr_utility.set_location('Entering:'||l_proc, 5);
130:
131: hr_utility.set_location(' Leaving:'||l_proc, 10);
132: end if;
133:

Line 131: hr_utility.set_location(' Leaving:'||l_proc, 10);

127: if g_debug then
128: l_proc := g_package||'pre_delete';
129: hr_utility.set_location('Entering:'||l_proc, 5);
130:
131: hr_utility.set_location(' Leaving:'||l_proc, 10);
132: end if;
133:
134: end pre_delete;
135:

Line 178: hr_utility.set_location('Entering:'||l_proc, 5);

174:
175:
176: if g_debug then
177: l_proc := g_package||'post_delete';
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: end if;
180: begin
181:
182: hxc_tbb_rkd.after_delete

Line 231: hr_utility.set_location(' Leaving:'||l_proc, 10);

227: ,p_hook_type => 'AD');
228: end;
229:
230: if g_debug then
231: hr_utility.set_location(' Leaving:'||l_proc, 10);
232: end if;
233:
234: end post_delete;
235:

Line 247: g_debug := hr_utility.debug_enabled;

243: l_proc varchar2(72);
244:
245: begin
246:
247: g_debug := hr_utility.debug_enabled;
248:
249: if g_debug then
250: l_proc := g_package||'del';
251: hr_utility.set_location('Entering:'||l_proc, 5);

Line 251: hr_utility.set_location('Entering:'||l_proc, 5);

247: g_debug := hr_utility.debug_enabled;
248:
249: if g_debug then
250: l_proc := g_package||'del';
251: hr_utility.set_location('Entering:'||l_proc, 5);
252: end if;
253:
254: -- we must lock the row which we need to delete.
255:

Line 292: g_debug := hr_utility.debug_enabled;

288: l_proc varchar2(72);
289:
290: begin
291:
292: g_debug := hr_utility.debug_enabled;
293:
294: if g_debug then
295: l_proc := g_package||'del';
296: hr_utility.set_location('Entering:'||l_proc, 5);

Line 296: hr_utility.set_location('Entering:'||l_proc, 5);

292: g_debug := hr_utility.debug_enabled;
293:
294: if g_debug then
295: l_proc := g_package||'del';
296: hr_utility.set_location('Entering:'||l_proc, 5);
297: end if;
298:
299: -- as the delete procedure accepts a plsql record structure we do need to
300: -- convert the arguments into the record structure.

Line 314: hr_utility.set_location(' Leaving:'||l_proc, 10);

310:
311: hxc_tbb_del.del(l_rec);
312:
313: if g_debug then
314: hr_utility.set_location(' Leaving:'||l_proc, 10);
315: end if;
316:
317: end del;
318: