DBA Data[Home] [Help]

APPS.PER_BPR_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_payroll_runs row.
60: --

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

61: delete from per_bf_payroll_runs
62: where payroll_run_id = p_rec.payroll_run_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_bpr_rkd.after_delete
159: (

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

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

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

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

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

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

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

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