DBA Data[Home] [Help]

APPS.PER_PMP_DEL dependencies on HR_UTILITY

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

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

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

63: delete from per_perf_mgmt_plans
64: where plan_id = p_rec.plan_id;
65: --
66: --
67: hr_utility.set_location(' Leaving:'||l_proc, 10);
68: --
69: Exception
70: When hr_api.child_integrity_violated then
71: -- Child integrity has been violated

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

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

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

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

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

155: --
156: l_proc varchar2(72) := g_package||'post_delete';
157: --
158: Begin
159: hr_utility.set_location('Entering:'||l_proc, 5);
160: begin
161: --
162: per_pmp_rkd.after_delete
163: (p_plan_id

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

301: ,p_hook_type => 'AD');
302: --
303: end;
304: --
305: hr_utility.set_location(' Leaving:'||l_proc, 10);
306: End post_delete;
307: --
308: -- ----------------------------------------------------------------------------
309: -- |---------------------------------< del >----------------------------------|

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

314: --
315: l_proc varchar2(72) := g_package||'del';
316: --
317: Begin
318: hr_utility.set_location('Entering:'||l_proc, 5);
319: --
320: -- We must lock the row which we need to delete.
321: --
322: per_pmp_shd.lck

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

359: l_rec per_pmp_shd.g_rec_type;
360: l_proc varchar2(72) := g_package||'del';
361: --
362: Begin
363: hr_utility.set_location('Entering:'||l_proc, 5);
364: --
365: -- As the delete procedure accepts a plsql record structure we do need to
366: -- convert the arguments into the record structure.
367: -- We don't need to call the supplied conversion argument routine as we

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

375: -- business process
376: --
377: per_pmp_del.del(l_rec);
378: --
379: hr_utility.set_location(' Leaving:'||l_proc, 10);
380: End del;
381: --
382: end per_pmp_del;