DBA Data[Home] [Help]

APPS.HR_DTY_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 row.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

267: -- business process
268: --
269: hr_dty_del.del(l_rec);
270: --
271: hr_utility.set_location(' Leaving:'||l_proc, 10);
272: End del;
273: --
274: end hr_dty_del;