DBA Data[Home] [Help]

APPS.PER_PDM_DEL dependencies on HR_UTILITY

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

46: --
47: l_proc varchar2(72) := g_package||'delete_dml';
48: --
49: Begin
50: hr_utility.set_location('Entering:'||l_proc, 5);
51: --
52: -- Delete the per_person_dlvry_methods row.
53: --
54: delete from per_person_dlvry_methods

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

53: --
54: delete from per_person_dlvry_methods
55: where delivery_method_id = p_rec.delivery_method_id;
56: --
57: hr_utility.set_location(' Leaving:'||l_proc, 10);
58: --
59: Exception
60: When hr_api.child_integrity_violated then
61: -- Child integrity has been violated

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

101: --
102: l_proc varchar2(72) := g_package||'pre_delete';
103: --
104: Begin
105: hr_utility.set_location('Entering:'||l_proc, 5);
106: --
107: hr_utility.set_location(' Leaving:'||l_proc, 10);
108: End pre_delete;
109: --

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

103: --
104: Begin
105: hr_utility.set_location('Entering:'||l_proc, 5);
106: --
107: hr_utility.set_location(' Leaving:'||l_proc, 10);
108: End pre_delete;
109: --
110: -- ----------------------------------------------------------------------------
111: -- |-----------------------------< post_delete >------------------------------|

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

143: --
144: l_proc varchar2(72) := g_package||'post_delete';
145: --
146: Begin
147: hr_utility.set_location('Entering:'||l_proc, 5);
148: --
149: --
150: -- Start of API User Hook for post_delete.
151: --

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

199: --
200: -- End of API User Hook for post_delete.
201: --
202: --
203: hr_utility.set_location(' Leaving:'||l_proc, 10);
204: End post_delete;
205: --
206: -- ----------------------------------------------------------------------------
207: -- |---------------------------------< del >----------------------------------|

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

213: --
214: l_proc varchar2(72) := g_package||'del';
215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218: --
219: -- We must lock the row which we need to delete.
220: --
221: per_pdm_shd.lck

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

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

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

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