DBA Data[Home] [Help]

APPS.OTA_EVT_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: ota_evt_shd.g_api_dml := true; -- Set the api dml status
59: --
60: /* -- Removed until a Delete Function is implemented

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

76: where event_id = p_rec.event_id;
77: --
78: ota_evt_shd.g_api_dml := false; -- Unset the api dml status
79: --
80: hr_utility.set_location(' Leaving:'||l_proc, 10);
81: --
82: Exception
83: When hr_api.child_integrity_violated then
84: -- Child integrity has been violated

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

126: --
127: l_proc varchar2(72) := g_package||'pre_delete';
128: --
129: Begin
130: hr_utility.set_location('Entering:'||l_proc, 5);
131: --
132: hr_utility.set_location(' Leaving:'||l_proc, 10);
133: End pre_delete;
134: --

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

128: --
129: Begin
130: hr_utility.set_location('Entering:'||l_proc, 5);
131: --
132: hr_utility.set_location(' Leaving:'||l_proc, 10);
133: End pre_delete;
134: --
135: -- ----------------------------------------------------------------------------
136: -- |-----------------------------< post_delete >------------------------------|

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

168: --
169: l_proc varchar2(72) := g_package||'post_delete';
170: --
171: Begin
172: hr_utility.set_location('Entering:'||l_proc, 5);
173: --
174: hr_utility.set_location(' Leaving:'||l_proc, 10);
175: End post_delete;
176: --

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

170: --
171: Begin
172: hr_utility.set_location('Entering:'||l_proc, 5);
173: --
174: hr_utility.set_location(' Leaving:'||l_proc, 10);
175: End post_delete;
176: --
177: -- ----------------------------------------------------------------------------
178: -- |---------------------------------< del >----------------------------------|

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

185: --
186: l_proc varchar2(72) := g_package||'del';
187: --
188: Begin
189: hr_utility.set_location('Entering:'||l_proc, 5);
190: --
191: -- Determine if the business process is to be validated.
192: --
193: If p_validate then

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

234: If p_validate then
235: Raise HR_Api.Validate_Enabled;
236: End If;
237: --
238: hr_utility.set_location(' Leaving:'||l_proc, 10);
239: Exception
240: When HR_Api.Validate_Enabled Then
241: --
242: -- As the Validate_Enabled exception has been raised

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

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

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

274: -- business process
275: --
276: del(l_rec, p_validate);
277: --
278: hr_utility.set_location(' Leaving:'||l_proc, 10);
279: End del;
280: --
281: end ota_evt_del;