DBA Data[Home] [Help]

APPS.IRC_IPT_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 irc_posting_contents_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: irc_ipt_rkd.after_delete
166: (p_posting_content_id

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

204: ,p_hook_type => 'AD');
205: --
206: end;
207: --
208: hr_utility.set_location(' Leaving:'||l_proc, 10);
209: End post_delete;
210: --
211: -- ----------------------------------------------------------------------------
212: -- |---------------------------------< del >----------------------------------|

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

217: --
218: l_proc varchar2(72) := g_package||'del';
219: --
220: Begin
221: hr_utility.set_location('Entering:'||l_proc, 5);
222: --
223: -- We must lock the row which we need to delete.
224: --
225: irc_ipt_shd.lck

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

258: l_rec irc_ipt_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 279: hr_utility.set_location(' Leaving:'||l_proc, 10);

275: -- business process
276: --
277: irc_ipt_del.del(l_rec);
278: --
279: hr_utility.set_location(' Leaving:'||l_proc, 10);
280: End del;
281: --
282: -- ----------------------------------------------------------------------------
283: -- |------------------------------< del_tl >----------------------------------|

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

295: --
296: l_proc varchar2(72) := g_package||'del_tl';
297: --
298: Begin
299: hr_utility.set_location('Entering:'||l_proc,10);
300: --
301: -- Delete all the translated rows
302: --
303: for l_lang in csr_del_langs loop

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

306: ,p_language => l_lang.language
307: );
308: end loop;
309: --
310: hr_utility.set_location(' Leaving:'||l_proc,20);
311: End del_tl;
312: --
313: end irc_ipt_del;