DBA Data[Home] [Help]

APPS.PAY_PEL_DEL dependencies on HR_UTILITY

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

60: --
61: l_proc varchar2(72) := g_package||'dt_delete_dml';
62: --
63: Begin
64: hr_utility.set_location('Entering:'||l_proc, 5);
65: If (p_datetrack_mode = hr_api.g_delete_next_change) then
66: pay_pel_shd.g_api_dml := true; -- Set the api dml status
67: --
68: -- Delete the where the effective start date is equal

Line 89: hr_utility.set_location(' Leaving:'||l_proc, 20);

85: --
86: pay_pel_shd.g_api_dml := false; -- Unset the api dml status
87: End If;
88: --
89: hr_utility.set_location(' Leaving:'||l_proc, 20);
90: --
91: Exception
92: When Others Then
93: pay_pel_shd.g_api_dml := false; -- Unset the api dml status

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

108: --
109: l_proc varchar2(72) := g_package||'delete_dml';
110: --
111: Begin
112: hr_utility.set_location('Entering:'||l_proc, 5);
113: --
114: pay_pel_del.dt_delete_dml
115: (p_rec => p_rec
116: ,p_effective_date => p_effective_date

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

118: ,p_validation_start_date => p_validation_start_date
119: ,p_validation_end_date => p_validation_end_date
120: );
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 10);
123: End delete_dml;
124: --
125: -- ----------------------------------------------------------------------------
126: -- |----------------------------< dt_pre_delete >-----------------------------|

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

165: --
166: l_proc varchar2(72) := g_package||'dt_pre_delete';
167: --
168: Begin
169: hr_utility.set_location('Entering:'||l_proc, 5);
170: --
171: If (p_datetrack_mode <> hr_api.g_zap) then
172: --
173: p_rec.effective_start_date

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

192: Else
193: p_rec.effective_start_date := null;
194: p_rec.effective_end_date := null;
195: End If;
196: hr_utility.set_location(' Leaving:'||l_proc, 10);
197: End dt_pre_delete;
198: --
199: -- ----------------------------------------------------------------------------
200: -- |------------------------------< pre_delete >------------------------------|

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

257: or t2.effective_end_date < p_validation_start_date));
258: --
259: --
260: Begin
261: hr_utility.set_location('Entering:'||l_proc, 5);
262: --
263: --
264: -- Delete any possible comments
265: --

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

275: ,p_validation_start_date => p_validation_start_date
276: ,p_validation_end_date => p_validation_end_date
277: );
278: --
279: hr_utility.set_location(' Leaving:'||l_proc, 10);
280: End pre_delete;
281: --
282: -- ----------------------------------------------------------------------------
283: -- |----------------------------< post_delete >-------------------------------|

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

321: --
322: l_proc varchar2(72) := g_package||'post_delete';
323: --
324: Begin
325: hr_utility.set_location('Entering:'||l_proc, 5);
326: begin
327: --
328: pay_pel_rkd.after_delete
329: (p_effective_date

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

447: ,p_hook_type => 'AD');
448: --
449: end;
450: --
451: hr_utility.set_location(' Leaving:'||l_proc, 10);
452: End post_delete;
453: --
454: -- ----------------------------------------------------------------------------
455: -- |---------------------------------< del >----------------------------------|

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

464: l_validation_start_date date;
465: l_validation_end_date date;
466: --
467: Begin
468: hr_utility.set_location('Entering:'||l_proc, 5);
469: --
470: -- Ensure that the DateTrack delete mode is valid
471: --
472: dt_api.validate_dt_del_mode(p_datetrack_mode => p_datetrack_mode);

Line 533: hr_utility.set_location(' Leaving:'||l_proc, 5);

529: --
530: -- Call to raise any errors on multi-message list
531: hr_multi_message.end_validation_set;
532: --
533: hr_utility.set_location(' Leaving:'||l_proc, 5);
534: End del;
535: --
536: -- ----------------------------------------------------------------------------
537: -- |--------------------------------< del >-----------------------------------|

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

549: l_rec pay_pel_shd.g_rec_type;
550: l_proc varchar2(72) := g_package||'del';
551: --
552: Begin
553: hr_utility.set_location('Entering:'||l_proc, 5);
554: --
555: -- As the delete procedure accepts a plsql record structure we do need to
556: -- convert the arguments into the record structure.
557: -- We don't need to call the supplied conversion argument routine as we

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

584: p_effective_start_date := l_rec.effective_start_date;
585: p_effective_end_date := l_rec.effective_end_date;
586: p_object_version_number := l_rec.object_version_number;
587: --
588: hr_utility.set_location(' Leaving:'||l_proc, 10);
589: End del;
590: --
591: end pay_pel_del;