DBA Data[Home] [Help]

APPS.PER_BPD_DEL dependencies on HR_UTILITY

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

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

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

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

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

109: --
110: l_proc varchar2(72) := g_package||'pre_delete';
111: --
112: Begin
113: hr_utility.set_location('Entering:'||l_proc, 5);
114: --
115: hr_utility.set_location(' Leaving:'||l_proc, 10);
116: End pre_delete;
117: --

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

111: --
112: Begin
113: hr_utility.set_location('Entering:'||l_proc, 5);
114: --
115: hr_utility.set_location(' Leaving:'||l_proc, 10);
116: End pre_delete;
117: --
118: -- ----------------------------------------------------------------------------
119: -- |-----------------------------< post_delete >------------------------------|

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

151: --
152: l_proc varchar2(72) := g_package||'post_delete';
153: --
154: Begin
155: hr_utility.set_location('Entering:'||l_proc, 5);
156: begin
157: --
158: per_bpd_rkd.after_delete
159: (

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

248: ,p_hook_type => 'AD');
249: --
250: end;
251: --
252: hr_utility.set_location(' Leaving:'||l_proc, 10);
253: End post_delete;
254: --
255: -- ----------------------------------------------------------------------------
256: -- |---------------------------------< del >----------------------------------|

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

262: --
263: l_proc varchar2(72) := g_package||'del';
264: --
265: Begin
266: hr_utility.set_location('Entering:'||l_proc, 5);
267: --
268: -- We must lock the row which we need to delete.
269: --
270: per_bpd_shd.lck

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

302: l_rec per_bpd_shd.g_rec_type;
303: l_proc varchar2(72) := g_package||'del';
304: --
305: Begin
306: hr_utility.set_location('Entering:'||l_proc, 5);
307: --
308: -- As the delete procedure accepts a plsql record structure we do need to
309: -- convert the arguments into the record structure.
310: -- We don't need to call the supplied conversion argument routine as we

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

318: -- business process
319: --
320: del(l_rec);
321: --
322: hr_utility.set_location(' Leaving:'||l_proc, 10);
323: End del;
324: --
325: end per_bpd_del;