DBA Data[Home] [Help]

APPS.PER_PRT_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: -- Delete the per_performance_ratings row.
59:
60: delete from per_performance_ratings

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

59:
60: delete from per_performance_ratings
61: where performance_rating_id = p_rec.performance_rating_id;
62:
63: hr_utility.set_location(' Leaving:'||l_proc, 10);
64:
65: Exception
66: When hr_api.child_integrity_violated then
67: -- Child integrity has been violated

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

107:
108: l_proc varchar2(72) := g_package||'pre_delete';
109:
110: Begin
111: hr_utility.set_location('Entering:'||l_proc, 5);
112:
113: hr_utility.set_location(' Leaving:'||l_proc, 10);
114: End pre_delete;
115:

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

109:
110: Begin
111: hr_utility.set_location('Entering:'||l_proc, 5);
112:
113: hr_utility.set_location(' Leaving:'||l_proc, 10);
114: End pre_delete;
115:
116: -- ---------------------------------------------------------------------------+
117: -- |-----------------------------< post_delete >------------------------------|

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

149:
150: l_proc varchar2(72) := g_package||'post_delete';
151:
152: Begin
153: hr_utility.set_location('Entering:'||l_proc, 5);
154:
155: -- This is a hook point and the user hook for post_delete is called here.
156:
157: begin

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

193: );
194: end;
195: -- End of API User Hook for post_delete.
196:
197: hr_utility.set_location(' Leaving:'||l_proc, 10);
198: End post_delete;
199:
200: -- ---------------------------------------------------------------------------+
201: -- |---------------------------------< del >----------------------------------|

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

208:
209: l_proc varchar2(72) := g_package||'del';
210:
211: Begin
212: hr_utility.set_location('Entering:'||l_proc, 5);
213:
214: -- Determine if the business process is to be validated.
215:
216: If p_validate then

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

257: If p_validate then
258: Raise HR_Api.Validate_Enabled;
259: End If;
260:
261: hr_utility.set_location(' Leaving:'||l_proc, 10);
262: Exception
263: When HR_Api.Validate_Enabled Then
264:
265: -- As the Validate_Enabled exception has been raised

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

281: l_rec per_prt_shd.g_rec_type;
282: l_proc varchar2(72) := g_package||'del';
283:
284: Begin
285: hr_utility.set_location('Entering:'||l_proc, 5);
286:
287: -- As the delete procedure accepts a plsql record structure we do need to
288: -- convert the arguments into the record structure.
289: -- We don't need to call the supplied conversion argument routine as we

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

297: -- business process
298:
299: del(l_rec, p_validate);
300:
301: hr_utility.set_location(' Leaving:'||l_proc, 10);
302: End del;
303:
304: end per_prt_del;