DBA Data[Home] [Help]

APPS.PER_GRS_DEL dependencies on HR_UTILITY

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

52: --
53: l_proc varchar2(72) := g_package||'delete_dml';
54: --
55: Begin
56: hr_utility.set_location('Entering:'||l_proc, 5);
57: --
58: per_grs_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the per_cagr_grade_structures row.

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

63: where cagr_grade_structure_id = p_rec.cagr_grade_structure_id;
64: --
65: per_grs_shd.g_api_dml := false; -- Unset the api dml status
66: --
67: hr_utility.set_location(' Leaving:'||l_proc, 10);
68: --
69: Exception
70: When hr_api.child_integrity_violated then
71: -- Child integrity has been violated

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

114: --
115: l_proc varchar2(72) := g_package||'pre_delete';
116: --
117: Begin
118: hr_utility.set_location('Entering:'||l_proc, 5);
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 10);
121: End pre_delete;
122: --

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

116: --
117: Begin
118: hr_utility.set_location('Entering:'||l_proc, 5);
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 10);
121: End pre_delete;
122: --
123: -- ----------------------------------------------------------------------------
124: -- |-----------------------------< post_delete >------------------------------|

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

157: --
158: l_proc varchar2(72) := g_package||'post_delete';
159: --
160: Begin
161: hr_utility.set_location('Entering:'||l_proc, 5);
162: --
163: --
164: -- Start of API User Hook for post_delete.
165: --

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

208: --
209: -- End of API User Hook for post_delete.
210: --
211: --
212: hr_utility.set_location(' Leaving:'||l_proc, 10);
213: End post_delete;
214: --
215: -- ----------------------------------------------------------------------------
216: -- |---------------------------------< del >----------------------------------|

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

222: --
223: l_proc varchar2(72) := g_package||'del';
224: --
225: Begin
226: hr_utility.set_location('Entering:'||l_proc, 5);
227: --
228: -- We must lock the row which we need to delete.
229: --
230: per_grs_shd.lck

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

251: --
252: post_delete(p_effective_date => p_effective_date,
253: p_rec => p_rec);
254: --
255: hr_utility.set_location(' Leaving:'||l_proc, 10);
256: --
257: End del;
258: --
259: -- ----------------------------------------------------------------------------

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

268: l_rec per_grs_shd.g_rec_type;
269: l_proc varchar2(72) := g_package||'del';
270: --
271: Begin
272: hr_utility.set_location('Entering:'||l_proc, 5);
273: --
274: -- As the delete procedure accepts a plsql record structure we do need to
275: -- convert the arguments into the record structure.
276: -- We don't need to call the supplied conversion argument routine as we

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

285: --
286: del(p_effective_date => p_effective_date,
287: p_rec => l_rec);
288: --
289: hr_utility.set_location(' Leaving:'||l_proc, 10);
290: End del;
291: --
292: end per_grs_del;