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 301: hr_utility.set_location(' Leaving:'||l_proc, 10);

297: ,p_hook_type => 'AD');
298: --
299: end;
300: --
301: hr_utility.set_location(' Leaving:'||l_proc, 10);
302: End post_delete;
303: --
304: -- ----------------------------------------------------------------------------
305: -- |---------------------------------< del >----------------------------------|

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

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

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

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

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

371: -- business process
372: --
373: per_pmp_del.del(l_rec);
374: --
375: hr_utility.set_location(' Leaving:'||l_proc, 10);
376: End del;
377: --
378: end per_pmp_del;