DBA Data[Home] [Help]

APPS.PER_PDS_DEL dependencies on HR_UTILITY

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

52: --
53: l_proc varchar2(72) := g_package||'delete_dml';
54: --
55: Begin
56: hr_utility.set_location('Entering:'||l_proc, 5);
57: --
58: per_pds_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the per_periods_of_service row.

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

64: and object_version_number = p_rec.object_version_number;
65: --
66: per_pds_shd.g_api_dml := false; -- Unset the api dml status
67: --
68: hr_utility.set_location(' Leaving:'||l_proc, 10);
69: --
70: Exception
71: When hr_api.child_integrity_violated then
72: -- Child integrity has been violated

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

114: --
115: l_proc varchar2(72) := g_package||'pre_delete';
116: --
117: Begin
118: hr_utility.set_location('Entering:'||l_proc, 5);
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 10);
121: End pre_delete;
122: --

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

116: --
117: Begin
118: hr_utility.set_location('Entering:'||l_proc, 5);
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 10);
121: End pre_delete;
122: --
123: -- ----------------------------------------------------------------------------
124: -- |-----------------------------< post_delete >------------------------------|

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

156: --
157: l_proc varchar2(72) := g_package||'post_delete';
158: --
159: Begin
160: hr_utility.set_location('Entering:'||l_proc, 5);
161: --
162: -- Start of API User Hook for post_delete.
163: begin
164: per_pds_rkd.after_delete

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

244: ,p_hook_type => 'AD'
245: );
246: end;
247: -- End of API User Hook for post_delete.
248: hr_utility.set_location(' Leaving:'||l_proc, 10);
249: End post_delete;
250: --
251: -- ----------------------------------------------------------------------------
252: -- |---------------------------------< del >----------------------------------|

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

259: --
260: l_proc varchar2(72) := g_package||'del';
261: --
262: Begin
263: hr_utility.set_location('Entering:'||l_proc, 5);
264: --
265: -- Determine if the business process is to be validated.
266: --
267: If p_validate then

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

300: If p_validate then
301: Raise HR_Api.Validate_Enabled;
302: End If;
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 10);
305: Exception
306: When HR_Api.Validate_Enabled Then
307: --
308: -- As the Validate_Enabled exception has been raised

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

324: l_rec per_pds_shd.g_rec_type;
325: l_proc varchar2(72) := g_package||'del';
326: --
327: Begin
328: hr_utility.set_location('Entering:'||l_proc, 5);
329: --
330: -- As the delete procedure accepts a plsql record structure we do need to
331: -- convert the arguments into the record structure.
332: -- We don't need to call the supplied conversion argument routine as we

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

340: -- business process
341: --
342: del(l_rec, p_validate);
343: --
344: hr_utility.set_location(' Leaving:'||l_proc, 10);
345: End del;
346: --
347: end per_pds_del;