DBA Data[Home] [Help]

APPS.PER_EVT_DEL dependencies on HR_UTILITY

Line 58: hr_utility.set_location('Entering:'||l_proc, 10);

54: --
55: l_proc varchar2(72) := g_package||'delete_dml';
56: --
57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 10);
59: --
60: per_evt_shd.g_api_dml := true; -- Set the api dml status
61: --
62: -- Delete the per_events row.

Line 69: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

Line 119: hr_utility.set_location('Entering:'||l_proc, 10);

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

Line 121: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

Line 161: hr_utility.set_location('Entering:'||l_proc, 10);

157: --
158: l_proc varchar2(72) := g_package||'post_delete';
159: --
160: Begin
161: hr_utility.set_location('Entering:'||l_proc, 10);
162: begin
163: --
164: per_evt_rkd.after_delete
165: (p_event_id

Line 263: hr_utility.set_location(' Leaving:'||l_proc, 20);

259: ,p_hook_type => 'AD');
260: --
261: end;
262: --
263: hr_utility.set_location(' Leaving:'||l_proc, 20);
264: End post_delete;
265: --
266: -- ----------------------------------------------------------------------------
267: -- |---------------------------------< del >----------------------------------|

Line 276: hr_utility.set_location('Entering:'||l_proc, 10);

272: --
273: l_proc varchar2(72) := g_package||'del';
274: --
275: Begin
276: hr_utility.set_location('Entering:'||l_proc, 10);
277: --
278: -- We must lock the row which we need to delete.
279: --
280: per_evt_shd.lck

Line 301: hr_utility.set_location('Leaving:'||l_proc, 20);

297: -- Call the supporting post-delete operation
298: --
299: per_evt_del.post_delete(p_rec);
300: --
301: hr_utility.set_location('Leaving:'||l_proc, 20);
302: End del;
303: --
304: -- ----------------------------------------------------------------------------
305: -- |---------------------------------< del >----------------------------------|

Line 316: hr_utility.set_location('Entering:'||l_proc, 10);

312: l_rec per_evt_shd.g_rec_type;
313: l_proc varchar2(72) := g_package||'del';
314: --
315: Begin
316: hr_utility.set_location('Entering:'||l_proc, 10);
317: --
318: -- As the delete procedure accepts a plsql record structure we do need to
319: -- convert the arguments into the record structure.
320: -- We don't need to call the supplied conversion argument routine as we

Line 332: hr_utility.set_location(' Leaving:'||l_proc, 20);

328: -- business process
329: --
330: per_evt_del.del(l_rec);
331: --
332: hr_utility.set_location(' Leaving:'||l_proc, 20);
333: End del;
334: --
335: end per_evt_del;