DBA Data[Home] [Help]

APPS.PER_CPN_DEL dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

145: --
146: l_proc varchar2(72) := g_package||'post_delete';
147: --
148: Begin
149: hr_utility.set_location('Entering:'||l_proc, 5);
150: --
151: -- This is a hook point and the user hook for post_delete is called here.
152: --
153: 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_cpn_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_cpn_del;