DBA Data[Home] [Help]

APPS.PER_GRD_DEL dependencies on HR_UTILITY

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

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

Line 69: hr_utility.set_location(' Leaving:'||l_proc, 100);

65: where grade_id = p_rec.grade_id;
66: --
67: per_grd_shd.g_api_dml := false; -- Unset the api dml status
68: --
69: hr_utility.set_location(' Leaving:'||l_proc, 100);
70: --
71: Exception
72: When hr_api.child_integrity_violated then
73: hr_utility.set_location(' Leaving:'||l_proc, 80);

Line 73: hr_utility.set_location(' Leaving:'||l_proc, 80);

69: hr_utility.set_location(' Leaving:'||l_proc, 100);
70: --
71: Exception
72: When hr_api.child_integrity_violated then
73: hr_utility.set_location(' Leaving:'||l_proc, 80);
74: -- Child integrity has been violated
75: per_grd_shd.g_api_dml := false; -- Unset the api dml status
76: per_grd_shd.constraint_error
77: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 79: hr_utility.set_location(' Leaving:'||l_proc, 90);

75: per_grd_shd.g_api_dml := false; -- Unset the api dml status
76: per_grd_shd.constraint_error
77: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
78: When Others Then
79: hr_utility.set_location(' Leaving:'||l_proc, 90);
80: per_grd_shd.g_api_dml := false; -- Unset the api dml status
81: Raise;
82: End delete_dml;
83: --

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

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

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

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

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

159: --
160: l_proc varchar2(72) := g_package||'post_delete';
161: --
162: Begin
163: hr_utility.set_location('Entering:'||l_proc, 5);
164: begin
165: --
166: per_grd_rkd.after_delete
167: (p_grade_id

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

285: ,p_hook_type => 'AD');
286: --
287: end;
288: --
289: hr_utility.set_location(' Leaving:'||l_proc, 10);
290: End post_delete;
291: --
292: -- ----------------------------------------------------------------------------
293: -- |---------------------------------< del >----------------------------------|

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

298: --
299: l_proc varchar2(72) := g_package||'del';
300: --
301: Begin
302: hr_utility.set_location('Entering:'||l_proc, 5);
303: --
304: -- We must lock the row which we need to delete.
305: --
306: per_grd_shd.lck

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

343: l_rec per_grd_shd.g_rec_type;
344: l_proc varchar2(72) := g_package||'del';
345: --
346: Begin
347: hr_utility.set_location('Entering:'||l_proc, 5);
348: --
349: -- As the delete procedure accepts a plsql record structure we do need to
350: -- convert the arguments into the record structure.
351: -- We don't need to call the supplied conversion argument routine as we

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

359: -- business process
360: --
361: per_grd_del.del(l_rec);
362: --
363: hr_utility.set_location(' Leaving:'||l_proc, 10);
364: End del;
365: --
366: end per_grd_del;