DBA Data[Home] [Help]

APPS.HR_DTT_DEL dependencies on HR_UTILITY

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

48: --
49: l_proc varchar2(72) := g_package||'delete_dml';
50: --
51: Begin
52: hr_utility.set_location('Entering:'||l_proc, 5);
53: --
54: --
55: --
56: -- Delete the hr_document_types_tl row.

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

60: and language = p_rec.language;
61: --
62: --
63: --
64: hr_utility.set_location(' Leaving:'||l_proc, 10);
65: --
66: Exception
67: When hr_api.child_integrity_violated then
68: -- Child integrity has been violated

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

110: --
111: l_proc varchar2(72) := g_package||'pre_delete';
112: --
113: Begin
114: hr_utility.set_location('Entering:'||l_proc, 5);
115: --
116: hr_utility.set_location(' Leaving:'||l_proc, 10);
117: End pre_delete;
118: --

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

112: --
113: Begin
114: hr_utility.set_location('Entering:'||l_proc, 5);
115: --
116: hr_utility.set_location(' Leaving:'||l_proc, 10);
117: End pre_delete;
118: --
119: -- ----------------------------------------------------------------------------
120: -- |-----------------------------< post_delete >------------------------------|

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

152: --
153: l_proc varchar2(72) := g_package||'post_delete';
154: --
155: Begin
156: hr_utility.set_location('Entering:'||l_proc, 5);
157: begin
158: --
159: hr_dtt_rkd.after_delete
160: (p_document_type_id

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

178: ,p_hook_type => 'AD');
179: --
180: end;
181: --
182: hr_utility.set_location(' Leaving:'||l_proc, 10);
183: End post_delete;
184: --
185: -- ----------------------------------------------------------------------------
186: -- |---------------------------------< del >----------------------------------|

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

191: --
192: l_proc varchar2(72) := g_package||'del';
193: --
194: Begin
195: hr_utility.set_location('Entering:'||l_proc, 5);
196: --
197: -- We must lock the row which we need to delete.
198: --
199: hr_dtt_shd.lck

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

236: l_rec hr_dtt_shd.g_rec_type;
237: l_proc varchar2(72) := g_package||'del';
238: --
239: Begin
240: hr_utility.set_location('Entering:'||l_proc, 5);
241: --
242: -- As the delete procedure accepts a plsql record structure we do need to
243: -- convert the arguments into the record structure.
244: -- We don't need to call the supplied conversion argument routine as we

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

253: -- business process
254: --
255: hr_dtt_del.del(l_rec);
256: --
257: hr_utility.set_location(' Leaving:'||l_proc, 10);
258: End del;
259: --
260: -- ----------------------------------------------------------------------------
261: -- |------------------------------< del_tl >----------------------------------|

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

274: --
275: l_proc varchar2(72) := g_package||'del_tl';
276: --
277: Begin
278: hr_utility.set_location('Entering:'||l_proc,10);
279: --
280: -- Delete all the translated rows
281: --
282: for l_lang in csr_del_langs loop

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

285: ,p_language => l_lang.language
286: );
287: end loop;
288: --
289: hr_utility.set_location(' Leaving:'||l_proc,20);
290: End del_tl;
291: --
292: end hr_dtt_del;