DBA Data[Home] [Help]

APPS.PER_RSC_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: --
53: -- Delete the per_rating_scales row.
54: --

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

55: delete from per_rating_scales
56: where rating_scale_id = p_rec.rating_scale_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 195: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

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

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

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

247: If p_validate then
248: Raise HR_Api.Validate_Enabled;
249: End If;
250: --
251: hr_utility.set_location(' Leaving:'||l_proc, 10);
252: Exception
253: When HR_Api.Validate_Enabled Then
254: --
255: -- As the Validate_Enabled exception has been raised

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

271: l_rec per_rsc_shd.g_rec_type;
272: l_proc varchar2(72) := g_package||'del';
273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);
276: --
277: -- As the delete procedure accepts a plsql record structure we do need to
278: -- convert the arguments into the record structure.
279: -- We don't need to call the supplied conversion argument routine as we

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

287: -- business process
288: --
289: del(l_rec, p_validate);
290: --
291: hr_utility.set_location(' Leaving:'||l_proc, 10);
292: End del;
293: --
294: end per_rsc_del;