DBA Data[Home] [Help]

APPS.PER_OBJ_DEL dependencies on HR_UTILITY

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

46: --
47: l_proc varchar2(72) := g_package||'delete_dml';
48: --
49: Begin
50: hr_utility.set_location('Entering:'||l_proc, 5);
51: --
52: -- Delete the per_objectives row.
53: --
54: delete from per_objectives

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

54: delete from per_objectives
55: where objective_id = p_rec.objective_id;
56: --
57: --
58: hr_utility.set_location(' Leaving:'||l_proc, 10);
59: --
60: Exception
61: When hr_api.child_integrity_violated then
62: -- Child integrity has been violated

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

102: --
103: l_proc varchar2(72) := g_package||'pre_delete';
104: --
105: Begin
106: hr_utility.set_location('Entering:'||l_proc, 5);
107: --
108: hr_utility.set_location(' Leaving:'||l_proc, 10);
109: End pre_delete;
110: --

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

104: --
105: Begin
106: hr_utility.set_location('Entering:'||l_proc, 5);
107: --
108: hr_utility.set_location(' Leaving:'||l_proc, 10);
109: End pre_delete;
110: --
111: -- ----------------------------------------------------------------------------
112: -- |-----------------------------< post_delete >------------------------------|

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

144: --
145: l_proc varchar2(72) := g_package||'post_delete';
146: --
147: Begin
148: hr_utility.set_location('Entering:'||l_proc, 5);
149: --
150: -- Start of API User Hook for post_delete.
151: begin
152: per_obj_rkd.after_delete

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

230: );
231: end;
232: -- End of API User Hook for post_delete.
233: --
234: hr_utility.set_location(' Leaving:'||l_proc, 10);
235: End post_delete;
236: --
237: -- ----------------------------------------------------------------------------
238: -- |---------------------------------< del >----------------------------------|

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

245: --
246: l_proc varchar2(72) := g_package||'del';
247: --
248: Begin
249: hr_utility.set_location('Entering:'||l_proc, 5);
250: --
251: -- Determine if the business process is to be validated.
252: --
253: If p_validate then

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

293: If p_validate then
294: Raise HR_Api.Validate_Enabled;
295: End If;
296: --
297: hr_utility.set_location(' Leaving:'||l_proc, 10);
298: Exception
299: When HR_Api.Validate_Enabled Then
300: --
301: -- As the Validate_Enabled exception has been raised

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

317: l_rec per_obj_shd.g_rec_type;
318: l_proc varchar2(72) := g_package||'del';
319: --
320: Begin
321: hr_utility.set_location('Entering:'||l_proc, 5);
322: --
323: -- As the delete procedure accepts a plsql record structure we do need to
324: -- convert the arguments into the record structure.
325: -- We don't need to call the supplied conversion argument routine as we

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

333: -- business process
334: --
335: del(l_rec, p_validate);
336: --
337: hr_utility.set_location(' Leaving:'||l_proc, 10);
338: End del;
339: --
340: end per_obj_del;