DBA Data[Home] [Help]

APPS.PAY_SPR_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: pay_spr_shd.g_api_dml := true; -- Set the api dml status
61: --
62: -- Delete the pay_security_payrolls row.

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

66: and payroll_id = p_rec.payroll_id;
67: --
68: pay_spr_shd.g_api_dml := false; -- Unset the api dml status
69: --
70: hr_utility.set_location(' Leaving:'||l_proc, 10);
71: --
72: Exception
73: When hr_api.child_integrity_violated then
74: -- Child integrity has been violated

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

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

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

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

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

158: --
159: l_proc varchar2(72) := g_package||'post_delete';
160: --
161: Begin
162: hr_utility.set_location('Entering:'||l_proc, 5);
163: begin
164:
165: --
166: -- If the security payroll being deleted is the last then

Line 172: hr_utility.set_location(l_proc, 10);

168: --
169: pay_spr_bus.set_view_all_payrolls_flag
170: (p_security_profile_id => p_rec.security_profile_id);
171:
172: hr_utility.set_location(l_proc, 10);
173:
174: pay_spr_rkd.after_delete
175: (p_security_profile_id
176: => p_rec.security_profile_id

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

199: ,p_hook_type => 'AD');
200: --
201: end;
202: --
203: hr_utility.set_location(' Leaving:'||l_proc, 10);
204: End post_delete;
205: --
206: -- ----------------------------------------------------------------------------
207: -- |---------------------------------< del >----------------------------------|

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

212: --
213: l_proc varchar2(72) := g_package||'del';
214: --
215: Begin
216: hr_utility.set_location('Entering:'||l_proc, 5);
217: --
218: -- We must lock the row which we need to delete.
219: --
220: pay_spr_shd.lck

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

259: l_rec pay_spr_shd.g_rec_type;
260: l_proc varchar2(72) := g_package||'del';
261: --
262: Begin
263: hr_utility.set_location('Entering:'||l_proc, 5);
264: --
265: -- As the delete procedure accepts a plsql record structure we do need to
266: -- convert the arguments into the record structure.
267: -- We don't need to call the supplied conversion argument routine as we

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

276: -- business process
277: --
278: pay_spr_del.del(l_rec);
279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 10);
281: End del;
282: --
283: end pay_spr_del;