DBA Data[Home] [Help]

APPS.PER_CPL_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 per_competences_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: per_cpl_rkd.after_delete
166: (p_competence_id

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

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

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

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

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

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

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

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

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

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

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

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