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_suc_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the per_succession_planning row.
63: where succession_plan_id = p_rec.succession_plan_id;
64: --
65: per_suc_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
113: --
114: l_proc varchar2(72) := g_package||'pre_delete';
115: --
116: Begin
117: hr_utility.set_location('Entering:'||l_proc, 5);
118: --
119: hr_utility.set_location(' Leaving:'||l_proc, 10);
120: End pre_delete;
121: --
115: --
116: Begin
117: hr_utility.set_location('Entering:'||l_proc, 5);
118: --
119: hr_utility.set_location(' Leaving:'||l_proc, 10);
120: End pre_delete;
121: --
122: -- ----------------------------------------------------------------------------
123: -- |-----------------------------< post_delete >------------------------------|
155: --
156: l_proc varchar2(72) := g_package||'post_delete';
157: --
158: Begin
159: hr_utility.set_location('Entering:'||l_proc, 5);
160: --
161: -- Start of Row Handler User Hook for post_delete.
162: --
163: Begin
206: end;
207: --
208: -- End of Row Handler User Hook for post_delete.
209: --
210: hr_utility.set_location(' Leaving:'||l_proc, 10);
211: End post_delete;
212: --
213: -- ----------------------------------------------------------------------------
214: -- |---------------------------------< del >----------------------------------|
220: --
221: l_proc varchar2(72) := g_package||'del';
222: --
223: Begin
224: hr_utility.set_location('Entering:'||l_proc, 5);
225: --
226: -- We must lock the row which we need to delete.
227: --
228: per_suc_shd.lck
260: l_rec per_suc_shd.g_rec_type;
261: l_proc varchar2(72) := g_package||'del';
262: --
263: Begin
264: hr_utility.set_location('Entering:'||l_proc, 5);
265: --
266: -- As the delete procedure accepts a plsql record structure we do need to
267: -- convert the arguments into the record structure.
268: -- We don't need to call the supplied conversion argument routine as we
276: -- business process
277: --
278: del(l_rec);
279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 10);
281: End del;
282: --
283: end per_suc_del;