DBA Data[Home] [Help]

APPS.PER_ASR_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_assessment_groups row.
53: --
54: delete from per_assessment_groups

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

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

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

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

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

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

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

143: --
144: l_proc varchar2(72) := g_package||'post_delete';
145: --
146: Begin
147: hr_utility.set_location('Entering:'||l_proc, 5);
148: --
149: -- This is a hook point and the user hook for post_delete is called here.
150: --
151: begin

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

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

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

200: --
201: l_proc varchar2(72) := g_package||'del';
202: --
203: Begin
204: hr_utility.set_location('Entering:'||l_proc, 5);
205: --
206: -- Determine if the business process is to be validated.
207: --
208: If p_validate then

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

241: If p_validate then
242: Raise HR_Api.Validate_Enabled;
243: End If;
244: --
245: hr_utility.set_location(' Leaving:'||l_proc, 10);
246: Exception
247: When HR_Api.Validate_Enabled Then
248: --
249: -- As the Validate_Enabled exception has been raised

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

265: l_rec per_asr_shd.g_rec_type;
266: l_proc varchar2(72) := g_package||'del';
267: --
268: Begin
269: hr_utility.set_location('Entering:'||l_proc, 5);
270: --
271: -- As the delete procedure accepts a plsql record structure we do need to
272: -- convert the arguments into the record structure.
273: -- We don't need to call the supplied conversion argument routine as we

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

281: -- business process
282: --
283: del(l_rec, p_validate);
284: --
285: hr_utility.set_location(' Leaving:'||l_proc, 10);
286: End del;
287: --
288: end per_asr_del;