DBA Data[Home] [Help]

APPS.PER_PAR_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_participants row.
53: --
54: delete from per_participants

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

53: --
54: delete from per_participants
55: where participant_id = p_rec.participant_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 198: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

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

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

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

260: If p_validate then
261: Raise HR_Api.Validate_Enabled;
262: End If;
263: --
264: hr_utility.set_location(' Leaving:'||l_proc, 10);
265: Exception
266: When HR_Api.Validate_Enabled Then
267: --
268: -- As the Validate_Enabled exception has been raised

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

284: l_rec per_par_shd.g_rec_type;
285: l_proc varchar2(72) := g_package||'del';
286: --
287: Begin
288: hr_utility.set_location('Entering:'||l_proc, 5);
289: --
290: -- As the delete procedure accepts a plsql record structure we do need to
291: -- convert the arguments into the record structure.
292: -- We don't need to call the supplied conversion argument routine as we

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

300: -- business process
301: --
302: del(l_rec, p_validate);
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 10);
305: End del;
306: --
307: end per_par_del;