DBA Data[Home] [Help]

APPS.PER_PDP_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: --
62: -- Delete the per_periods_of_placement row.

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

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

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

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

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

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

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

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

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

315: ,p_hook_type => 'AD');
316: --
317: end;
318: --
319: hr_utility.set_location(' Leaving:'||l_proc, 10);
320: End post_delete;
321: --
322: -- ----------------------------------------------------------------------------
323: -- |---------------------------------< del >----------------------------------|

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

328: --
329: l_proc varchar2(72) := g_package||'del';
330: --
331: Begin
332: hr_utility.set_location('Entering:'||l_proc, 5);
333: --
334: -- We must lock the row which we need to delete.
335: --
336: per_pdp_shd.lck

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

375: l_proc varchar2(72) := g_package||'del';
376: l_period_of_placement_id number;
377: --
378: Begin
379: hr_utility.set_location('Entering:'||l_proc, 5);
380:
381: --
382: -- The sequence key period_of_placement_id is hidden from the user
383: -- because they should be using the user key person_id and date_start.

Line 391: hr_utility.trace ('period_of_placement_id: '

387: l_period_of_placement_id := per_pdp_bus.return_period_of_placement_id
388: (p_person_id => p_person_id
389: ,p_date_start => p_date_start);
390:
391: hr_utility.trace ('period_of_placement_id: '
392: ||to_char(l_period_of_placement_id));
393:
394: --
395: -- As the delete procedure accepts a plsql record structure we do need to

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

405: -- business process
406: --
407: per_pdp_del.del(l_rec);
408: --
409: hr_utility.set_location(' Leaving:'||l_proc, 10);
410: End del;
411: --
412: end per_pdp_del;