DBA Data[Home] [Help]

APPS.GHR_REI_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: -- Delete the ghr_pa_request_extra_info row.
59: --
60: delete from ghr_pa_request_extra_info

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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