DBA Data[Home] [Help]

APPS.HXC_TAT_DEL dependencies on HR_UTILITY

Line 7: g_debug boolean := hr_utility.debug_enabled;

3: -- --------------------------------------------------------------------------
4: -- | Private Global Definitions |
5: -- --------------------------------------------------------------------------
6: g_package varchar2(33) := ' hxc_tat_del.'; -- global package name
7: g_debug boolean := hr_utility.debug_enabled;
8: -- --------------------------------------------------------------------------
9: -- |------------------------------< delete_dml >----------------------------|
10: -- --------------------------------------------------------------------------
11: -- {Start Of Comments}

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

55: begin
56:
57: if g_debug then
58: l_proc := g_package||'delete_dml';
59: hr_utility.set_location('Entering:'||l_proc, 5);
60: end if;
61:
62: -- delete the hxc_time_attributes row.
63:

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

64: delete from hxc_time_attributes
65: where time_attribute_id = p_rec.time_attribute_id;
66:
67: if g_debug then
68: hr_utility.set_location(' Leaving:'||l_proc, 10);
69: end if;
70:
71: exception
72: when hr_api.child_integrity_violated then

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

116: begin
117:
118: if g_debug then
119: l_proc := g_package||'pre_delete';
120: hr_utility.set_location('Entering:'||l_proc, 5);
121: hr_utility.set_location(' Leaving:'||l_proc, 10);
122: end if;
123:
124: end pre_delete;

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

117:
118: if g_debug then
119: l_proc := g_package||'pre_delete';
120: hr_utility.set_location('Entering:'||l_proc, 5);
121: hr_utility.set_location(' Leaving:'||l_proc, 10);
122: end if;
123:
124: end pre_delete;
125:

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

162: begin
163:
164: if g_debug then
165: l_proc := g_package||'post_delete';
166: hr_utility.set_location('Entering:'||l_proc, 5);
167: end if;
168:
169: begin
170:

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

246: ,p_hook_type => 'AD');
247: end;
248:
249: if g_debug then
250: hr_utility.set_location(' Leaving:'||l_proc, 10);
251: end if;
252:
253: end post_delete;
254:

Line 265: g_debug :=hr_utility.debug_enabled;

261:
262: l_proc varchar2(72) ;
263:
264: begin
265: g_debug :=hr_utility.debug_enabled;
266: if g_debug then
267: l_proc := g_package||'del';
268: hr_utility.set_location('Entering:'||l_proc, 5);
269: end if;

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

264: begin
265: g_debug :=hr_utility.debug_enabled;
266: if g_debug then
267: l_proc := g_package||'del';
268: hr_utility.set_location('Entering:'||l_proc, 5);
269: end if;
270:
271: -- we must lock the row which we need to delete.
272:

Line 308: g_debug :=hr_utility.debug_enabled;

304: l_rec hxc_tat_shd.g_rec_type;
305: l_proc varchar2(72) ;
306:
307: begin
308: g_debug :=hr_utility.debug_enabled;
309: if g_debug then
310: l_proc := g_package||'del';
311: hr_utility.set_location('Entering:'||l_proc, 5);
312: end if;

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

307: begin
308: g_debug :=hr_utility.debug_enabled;
309: if g_debug then
310: l_proc := g_package||'del';
311: hr_utility.set_location('Entering:'||l_proc, 5);
312: end if;
313:
314: l_rec.time_attribute_id := p_time_attribute_id;
315: l_rec.object_version_number := p_object_version_number;

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

320:
321: hxc_tat_del.del(l_rec);
322:
323: if g_debug then
324: hr_utility.set_location(' Leaving:'||l_proc, 10);
325: end if;
326:
327: end del;
328: