DBA Data[Home] [Help]

APPS.BEN_PTP_UPD dependencies on HR_UTILITY

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

63: --
64: l_proc varchar2(72) := g_package||'dt_update_dml';
65: --
66: Begin
67: hr_utility.set_location('Entering:'||l_proc, 5);
68: --
69: If (p_datetrack_mode = 'CORRECTION') then
70: hr_utility.set_location(l_proc, 10);
71: --

Line 70: hr_utility.set_location(l_proc, 10);

66: Begin
67: hr_utility.set_location('Entering:'||l_proc, 5);
68: --
69: If (p_datetrack_mode = 'CORRECTION') then
70: hr_utility.set_location(l_proc, 10);
71: --
72: -- Because we are updating a row we must get the next object
73: -- version number.
74: --

Line 147: hr_utility.set_location(' Leaving:'||l_proc, 15);

143: p_rec.effective_start_date := p_validation_start_date;
144: p_rec.effective_end_date := p_validation_end_date;
145: End If;
146: --
147: hr_utility.set_location(' Leaving:'||l_proc, 15);
148: Exception
149: When hr_api.check_integrity_violated Then
150: -- A check constraint has been violated
151: ben_ptp_shd.g_api_dml := false; -- Unset the api dml status

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

201: --
202: l_proc varchar2(72) := g_package||'update_dml';
203: --
204: Begin
205: hr_utility.set_location('Entering:'||l_proc, 5);
206: --
207: dt_update_dml(p_rec => p_rec,
208: p_effective_date => p_effective_date,
209: p_datetrack_mode => p_datetrack_mode,

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

209: p_datetrack_mode => p_datetrack_mode,
210: p_validation_start_date => p_validation_start_date,
211: p_validation_end_date => p_validation_end_date);
212: --
213: hr_utility.set_location(' Leaving:'||l_proc, 10);
214: End update_dml;
215: --
216: -- ----------------------------------------------------------------------------
217: -- |----------------------------< dt_pre_update >-----------------------------|

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

266: l_proc varchar2(72) := g_package||'dt_pre_update';
267: l_dummy_version_number number;
268: --
269: Begin
270: hr_utility.set_location('Entering:'||l_proc, 5);
271: If (p_datetrack_mode <> 'CORRECTION') then
272: hr_utility.set_location(l_proc, 10);
273: --
274: -- Update the current effective end date

Line 272: hr_utility.set_location(l_proc, 10);

268: --
269: Begin
270: hr_utility.set_location('Entering:'||l_proc, 5);
271: If (p_datetrack_mode <> 'CORRECTION') then
272: hr_utility.set_location(l_proc, 10);
273: --
274: -- Update the current effective end date
275: --
276: ben_ptp_shd.upd_effective_end_date

Line 285: hr_utility.set_location(l_proc, 15);

281: p_validation_end_date => p_validation_end_date,
282: p_object_version_number => l_dummy_version_number);
283: --
284: If (p_datetrack_mode = 'UPDATE_OVERRIDE') then
285: hr_utility.set_location(l_proc, 15);
286: --
287: -- As the datetrack mode is 'UPDATE_OVERRIDE' then we must
288: -- delete any future rows
289: --

Line 297: hr_utility.set_location(l_proc, 20);

293: p_datetrack_mode => p_datetrack_mode,
294: p_validation_start_date => p_validation_start_date,
295: p_validation_end_date => p_validation_end_date);
296: End If;
297: hr_utility.set_location(l_proc, 20);
298: --
299: -- We must now insert the updated row
300: --
301: ben_ptp_ins.insert_dml

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

304: p_datetrack_mode => p_datetrack_mode,
305: p_validation_start_date => p_validation_start_date,
306: p_validation_end_date => p_validation_end_date);
307: End If;
308: hr_utility.set_location(' Leaving:'||l_proc, 20);
309: End dt_pre_update;
310: --
311: -- ----------------------------------------------------------------------------
312: -- |------------------------------< pre_update >------------------------------|

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

350: --
351: l_proc varchar2(72) := g_package||'pre_update';
352: --
353: Begin
354: hr_utility.set_location('Entering:'||l_proc, 5);
355: --
356: --
357: --
358: dt_pre_update

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

361: p_datetrack_mode => p_datetrack_mode,
362: p_validation_start_date => p_validation_start_date,
363: p_validation_end_date => p_validation_end_date);
364: --
365: hr_utility.set_location(' Leaving:'||l_proc, 10);
366: End pre_update;
367: --
368: -- ----------------------------------------------------------------------------
369: -- |-----------------------------< post_update >------------------------------|

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

415: where p_effective_Date between effective_start_date and effective_end_date
416: and pl_typ_id = p_rec.pl_typ_id;
417: --
418: Begin
419: hr_utility.set_location('Entering:'||l_proc, 5);
420: --
421: --
422: -- Start of API User Hook for post_update.
423: --

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

557: --
558: -- End of API User Hook for post_update.
559: --
560: --
561: hr_utility.set_location(' Leaving:'||l_proc, 10);
562: End post_update;
563: --
564: -- ----------------------------------------------------------------------------
565: -- |-----------------------------< convert_defs >-----------------------------|

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

609: l_proc varchar2(72) := g_package||'convert_defs';
610: --
611: Begin
612: --
613: hr_utility.set_location('Entering:'||l_proc, 5);
614: --
615: -- We must now examine each argument value in the
616: -- p_rec plsql record structure
617: -- to see if a system default is being used. If a system default

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

804: p_rec.legislation_subgroup :=
805: ben_ptp_shd.g_old_rec.legislation_subgroup;
806: End If;
807: --
808: hr_utility.set_location(' Leaving:'||l_proc, 10);
809: --
810: End convert_defs;
811: --
812: -- ----------------------------------------------------------------------------

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

823: l_validation_start_date date;
824: l_validation_end_date date;
825: --
826: Begin
827: hr_utility.set_location('Entering:'||l_proc, 5);
828: --
829: -- Ensure that the DateTrack update mode is valid
830: --
831: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);

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

944: l_rec ben_ptp_shd.g_rec_type;
945: l_proc varchar2(72) := g_package||'upd';
946: --
947: Begin
948: hr_utility.set_location('Entering:'||l_proc, 5);
949: --
950: -- Call conversion function to turn arguments into the
951: -- l_rec structure.
952: --

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

1014: p_effective_start_date := l_rec.effective_start_date;
1015: p_effective_end_date := l_rec.effective_end_date;
1016: --
1017: --
1018: hr_utility.set_location(' Leaving:'||l_proc, 10);
1019: End upd;
1020: --
1021: end ben_ptp_upd;