DBA Data[Home] [Help]

APPS.PAY_PPR_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_ppr_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_ppr_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_ppr_shd.g_api_dml := false; -- Unset the api dml status

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

148: --
149: l_proc varchar2(72) := g_package||'delete_dml';
150: --
151: Begin
152: hr_utility.set_location('Entering:'||l_proc, 5);
153: --
154: pay_ppr_del.dt_delete_dml
155: (p_rec => p_rec
156: ,p_effective_date => p_effective_date

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

158: ,p_validation_start_date => p_validation_start_date
159: ,p_validation_end_date => p_validation_end_date
160: );
161: --
162: hr_utility.set_location(' Leaving:'||l_proc, 10);
163: End delete_dml;
164: --
165: -- ----------------------------------------------------------------------------
166: -- |----------------------------< dt_pre_delete >-----------------------------|

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

205: --
206: l_proc varchar2(72) := g_package||'dt_pre_delete';
207: --
208: Begin
209: hr_utility.set_location('Entering:'||l_proc, 5);
210: --
211: If (p_datetrack_mode <> hr_api.g_zap) then
212: --
213: p_rec.effective_start_date

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

232: Else
233: p_rec.effective_start_date := null;
234: p_rec.effective_end_date := null;
235: End If;
236: hr_utility.set_location(' Leaving:'||l_proc, 10);
237: End dt_pre_delete;
238: --
239: -- ----------------------------------------------------------------------------
240: -- |------------------------------< pre_delete >------------------------------|

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

297: or t2.effective_end_date < p_validation_start_date));
298: --
299: --
300: Begin
301: hr_utility.set_location('Entering:'||l_proc, 5);
302: --
303: --
304: -- Delete any possible comments
305: --

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

315: ,p_validation_start_date => p_validation_start_date
316: ,p_validation_end_date => p_validation_end_date
317: );
318: --
319: hr_utility.set_location(' Leaving:'||l_proc, 10);
320: End pre_delete;
321: --
322: -- ----------------------------------------------------------------------------
323: -- |----------------------------< post_delete >-------------------------------|

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

361: --
362: l_proc varchar2(72) := g_package||'post_delete';
363: --
364: Begin
365: hr_utility.set_location('Entering:'||l_proc, 5);
366: begin
367: --
368: -- Delete ownerships if applicable
369: delete_app_ownerships

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

421: ,p_hook_type => 'AD');
422: --
423: end;
424: --
425: hr_utility.set_location(' Leaving:'||l_proc, 10);
426: End post_delete;
427: --
428: -- ----------------------------------------------------------------------------
429: -- |---------------------------------< del >----------------------------------|

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

438: l_validation_start_date date;
439: l_validation_end_date date;
440: --
441: Begin
442: hr_utility.set_location('Entering:'||l_proc, 5);
443: --
444: -- Ensure that the DateTrack delete mode is valid
445: --
446: dt_api.validate_dt_del_mode(p_datetrack_mode => p_datetrack_mode);

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

536: --
537: -- Call to raise any errors on multi-message list
538: hr_multi_message.end_validation_set;
539: --
540: hr_utility.set_location(' Leaving:'||l_proc, 5);
541: End del;
542: --
543: -- ----------------------------------------------------------------------------
544: -- |--------------------------------< del >-----------------------------------|

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

555: l_rec pay_ppr_shd.g_rec_type;
556: l_proc varchar2(72) := g_package||'del';
557: --
558: Begin
559: hr_utility.set_location('Entering:'||l_proc, 5);
560: --
561: -- As the delete procedure accepts a plsql record structure we do need to
562: -- convert the arguments into the record structure.
563: -- We don't need to call the supplied conversion argument routine as we

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

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