DBA Data[Home] [Help]

APPS.OTA_AVT_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: --
61: --
62: -- Delete the ota_activity_versions_tl row.

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

66: and language = p_rec.language;
67: --
68: --
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: ota_avt_rkd.after_delete
166: (p_activity_version_id

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

190: ,p_hook_type => 'AD');
191: --
192: end;
193: --
194: hr_utility.set_location(' Leaving:'||l_proc, 10);
195: End post_delete;
196: --
197: -- ----------------------------------------------------------------------------
198: -- |---------------------------------< del >----------------------------------|

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

203: --
204: l_proc varchar2(72) := g_package||'del';
205: --
206: Begin
207: hr_utility.set_location('Entering:'||l_proc, 5);
208: --
209: -- We must lock the row which we need to delete.
210: --
211: ota_avt_shd.lck

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

248: l_rec ota_avt_shd.g_rec_type;
249: l_proc varchar2(72) := g_package||'del';
250: --
251: Begin
252: hr_utility.set_location('Entering:'||l_proc, 5);
253: --
254: -- As the delete procedure accepts a plsql record structure we do need to
255: -- convert the arguments into the record structure.
256: -- We don't need to call the supplied conversion argument routine as we

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

265: -- business process
266: --
267: ota_avt_del.del(l_rec);
268: --
269: hr_utility.set_location(' Leaving:'||l_proc, 10);
270: End del;
271: --
272: -- ----------------------------------------------------------------------------
273: -- |------------------------------< del_tl >----------------------------------|

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

286: --
287: l_proc varchar2(72) := g_package||'del_tl';
288: --
289: Begin
290: hr_utility.set_location('Entering:'||l_proc,10);
291: --
292: -- Delete all the translated rows
293: --
294: for l_lang in csr_del_langs loop

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

297: ,p_language => l_lang.language
298: );
299: end loop;
300: --
301: hr_utility.set_location(' Leaving:'||l_proc,20);
302: End del_tl;
303: --
304: end ota_avt_del;