DBA Data[Home] [Help]

APPS.PER_GRA_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_gra_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the per_cagr_grades row.

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

63: where cagr_grade_id = p_rec.cagr_grade_id;
64: --
65: per_gra_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 191: hr_utility.set_location(' Leaving:'||l_proc, 10);

187: --
188: -- End of API User Hook for post_delete.
189: --
190: --
191: hr_utility.set_location(' Leaving:'||l_proc, 10);
192: End post_delete;
193: --
194: -- ----------------------------------------------------------------------------
195: -- |---------------------------------< del >----------------------------------|

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

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

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

232: --
233: post_delete(p_rec => p_rec,
234: p_effective_date =>p_effective_date);
235: --
236: hr_utility.set_location(' Leaving:'||l_proc, 10);
237: --
238: End del;
239: --
240: -- ----------------------------------------------------------------------------

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

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

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

267: --
268: del(p_rec => l_rec,
269: p_effective_date =>p_effective_date);
270: --
271: hr_utility.set_location(' Leaving:'||l_proc, 10);
272: End del;
273: --
274: end per_gra_del;