DBA Data[Home] [Help]

APPS.PER_RTL_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_rating_levels row.
53: --
54: delete from per_rating_levels

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

53: --
54: delete from per_rating_levels
55: where rating_level_id = p_rec.rating_level_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 191: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

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

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

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

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

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

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

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

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