DBA Data[Home] [Help]

APPS.PER_AST_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 rows in per_competence_elements
53: -- which relate to this assesment_type.
54: -- This will allow a cascade delete from the api

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

80: --
81: delete from per_assessment_types
82: where assessment_type_id = p_rec.assessment_type_id;
83: --
84: hr_utility.set_location(' Leaving:'||l_proc, 10);
85: --
86: Exception
87: When hr_api.child_integrity_violated then
88: -- Child integrity has been violated

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

128: --
129: l_proc varchar2(72) := g_package||'pre_delete';
130: --
131: Begin
132: hr_utility.set_location('Entering:'||l_proc, 5);
133: --
134: hr_utility.set_location(' Leaving:'||l_proc, 10);
135: End pre_delete;
136: --

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

130: --
131: Begin
132: hr_utility.set_location('Entering:'||l_proc, 5);
133: --
134: hr_utility.set_location(' Leaving:'||l_proc, 10);
135: End pre_delete;
136: --
137: -- ----------------------------------------------------------------------------
138: -- |-----------------------------< post_delete >------------------------------|

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

170: --
171: l_proc varchar2(72) := g_package||'post_delete';
172: --
173: Begin
174: hr_utility.set_location('Entering:'||l_proc, 5);
175: --
176: -- This is a hook point and the user hook for post_delete is called here.
177: --
178: begin

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

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

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

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

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

288: If p_validate then
289: Raise HR_Api.Validate_Enabled;
290: End If;
291: --
292: hr_utility.set_location(' Leaving:'||l_proc, 10);
293: Exception
294: When HR_Api.Validate_Enabled Then
295: --
296: -- As the Validate_Enabled exception has been raised

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

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

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

328: -- business process
329: --
330: del(l_rec, p_validate);
331: --
332: hr_utility.set_location(' Leaving:'||l_proc, 10);
333: End del;
334: --
335: end per_ast_del;