DBA Data[Home] [Help]

APPS.PER_PAT_DEL dependencies on HR_UTILITY

Line 9: g_debug boolean := hr_utility.debug_enabled;

5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pat_del.'; -- Global package name
9: g_debug boolean := hr_utility.debug_enabled;
10: --
11: -- ----------------------------------------------------------------------------
12: -- |------------------------------< delete_dml >------------------------------|
13: -- ----------------------------------------------------------------------------

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

55: --
56: l_proc varchar2(72) := g_package||'delete_dml';
57: --
58: Begin
59: hr_utility.set_location('Entering:'||l_proc, 5);
60: --
61: --
62: --
63: -- Delete the per_allocated_tasks row.

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

66: where allocated_task_id = p_rec.allocated_task_id;
67: --
68: --
69: --
70: hr_utility.set_location(' Leaving:'||l_proc, 10);
71: --
72: Exception
73: When hr_api.child_integrity_violated then
74: -- Child integrity has been violated

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

116: --
117: l_proc varchar2(72) := g_package||'pre_delete';
118: --
119: Begin
120: hr_utility.set_location('Entering:'||l_proc, 5);
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 10);
123: End pre_delete;
124: --

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

118: --
119: Begin
120: hr_utility.set_location('Entering:'||l_proc, 5);
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 10);
123: End pre_delete;
124: --
125: -- ----------------------------------------------------------------------------
126: -- |-----------------------------< post_delete >------------------------------|

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

158: --
159: l_proc varchar2(72) := g_package||'post_delete';
160: --
161: Begin
162: hr_utility.set_location('Entering:'||l_proc, 5);
163: begin
164: --
165: per_pat_rkd.after_delete
166: (p_allocated_task_id

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

290: ,p_hook_type => 'AD');
291: --
292: end;
293: --
294: hr_utility.set_location(' Leaving:'||l_proc, 10);
295: End post_delete;
296: --
297: -- ----------------------------------------------------------------------------
298: -- |---------------------------------< del >----------------------------------|

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

303: --
304: l_proc varchar2(72) := g_package||'del';
305: --
306: Begin
307: hr_utility.set_location('Entering:'||l_proc, 5);
308: --
309: -- We must lock the row which we need to delete.
310: --
311: per_pat_shd.lck

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

348: l_rec per_pat_shd.g_rec_type;
349: l_proc varchar2(72) := g_package||'del';
350: --
351: Begin
352: hr_utility.set_location('Entering:'||l_proc, 5);
353: --
354: -- As the delete procedure accepts a plsql record structure we do need to
355: -- convert the arguments into the record structure.
356: -- We don't need to call the supplied conversion argument routine as we

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

364: -- business process
365: --
366: per_pat_del.del(l_rec);
367: --
368: hr_utility.set_location(' Leaving:'||l_proc, 10);
369: End del;
370: --
371: end per_pat_del;