DBA Data[Home] [Help]

APPS.BEN_PLI_DEL dependencies on HR_UTILITY

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

46: --
47: l_proc varchar2(72) := g_package||'delete_dml';
48: --
49: Begin
50: hr_utility.set_location('Entering:'||l_proc, 5);
51: --
52: --
53: -- Delete the ben_pl_extra_info row.
54: --

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

55: delete from ben_pl_extra_info
56: where pl_extra_info_id = p_rec.pl_extra_info_id;
57: --
58: --
59: hr_utility.set_location(' Leaving:'||l_proc, 10);
60: --
61: Exception
62: When hr_api.child_integrity_violated then
63: -- Child integrity has been violated

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

103: --
104: l_proc varchar2(72) := g_package||'pre_delete';
105: --
106: Begin
107: hr_utility.set_location('Entering:'||l_proc, 5);
108: --
109: hr_utility.set_location(' Leaving:'||l_proc, 10);
110: End pre_delete;
111: --

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

105: --
106: Begin
107: hr_utility.set_location('Entering:'||l_proc, 5);
108: --
109: hr_utility.set_location(' Leaving:'||l_proc, 10);
110: End pre_delete;
111: --
112: -- ----------------------------------------------------------------------------
113: -- |-----------------------------< post_delete >------------------------------|

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

145: --
146: l_proc varchar2(72) := g_package||'post_delete';
147: --
148: Begin
149: hr_utility.set_location('Entering:'||l_proc, 5);
150: --
151: -- This is a hook point and the user hook for post_delete is called here.
152: --
153: begin

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

219: ,p_hook_type => 'AD'
220: );
221: end;
222: -- End of API User Hook for post_delete.
223: hr_utility.set_location(' Leaving:'||l_proc, 10);
224: End post_delete;
225: --
226: -- ----------------------------------------------------------------------------
227: -- |---------------------------------< del >----------------------------------|

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

234: --
235: l_proc varchar2(72) := g_package||'del';
236: --
237: Begin
238: hr_utility.set_location('Entering:'||l_proc, 5);
239: --
240: -- Determine if the business process is to be validated.
241: --
242: If p_validate then

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

275: If p_validate then
276: Raise HR_Api.Validate_Enabled;
277: End If;
278: --
279: hr_utility.set_location(' Leaving:'||l_proc, 10);
280: Exception
281: When HR_Api.Validate_Enabled Then
282: --
283: -- As the Validate_Enabled exception has been raised

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

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

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

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