DBA Data[Home] [Help]

APPS.BEN_LEN_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 159: hr_utility.set_location(' Leaving:'||l_proc, 15);

155: p_rec.effective_start_date := p_validation_start_date;
156: p_rec.effective_end_date := p_validation_end_date;
157: End If;
158: --
159: hr_utility.set_location(' Leaving:'||l_proc, 15);
160: Exception
161: When hr_api.check_integrity_violated Then
162: -- A check constraint has been violated
163: ben_len_shd.g_api_dml := false; -- Unset the api dml status

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

213: --
214: l_proc varchar2(72) := g_package||'update_dml';
215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218: --
219: dt_update_dml(p_rec => p_rec,
220: p_effective_date => p_effective_date,
221: p_datetrack_mode => p_datetrack_mode,

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

221: p_datetrack_mode => p_datetrack_mode,
222: p_validation_start_date => p_validation_start_date,
223: p_validation_end_date => p_validation_end_date);
224: --
225: hr_utility.set_location(' Leaving:'||l_proc, 10);
226: End update_dml;
227: --
228: -- ----------------------------------------------------------------------------
229: -- |----------------------------< dt_pre_update >-----------------------------|

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

278: l_proc varchar2(72) := g_package||'dt_pre_update';
279: l_dummy_version_number number;
280: --
281: Begin
282: hr_utility.set_location('Entering:'||l_proc, 5);
283: If (p_datetrack_mode <> 'CORRECTION') then
284: hr_utility.set_location(l_proc, 10);
285: --
286: -- Update the current effective end date

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

280: --
281: Begin
282: hr_utility.set_location('Entering:'||l_proc, 5);
283: If (p_datetrack_mode <> 'CORRECTION') then
284: hr_utility.set_location(l_proc, 10);
285: --
286: -- Update the current effective end date
287: --
288: ben_len_shd.upd_effective_end_date

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

293: p_validation_end_date => p_validation_end_date,
294: p_object_version_number => l_dummy_version_number);
295: --
296: If (p_datetrack_mode = 'UPDATE_OVERRIDE') then
297: hr_utility.set_location(l_proc, 15);
298: --
299: -- As the datetrack mode is 'UPDATE_OVERRIDE' then we must
300: -- delete any future rows
301: --

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

305: p_datetrack_mode => p_datetrack_mode,
306: p_validation_start_date => p_validation_start_date,
307: p_validation_end_date => p_validation_end_date);
308: End If;
309: hr_utility.set_location(l_proc, 20);
310: --
311: -- We must now insert the updated row
312: --
313: ben_len_ins.insert_dml

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

316: p_datetrack_mode => p_datetrack_mode,
317: p_validation_start_date => p_validation_start_date,
318: p_validation_end_date => p_validation_end_date);
319: End If;
320: hr_utility.set_location(' Leaving:'||l_proc, 20);
321: End dt_pre_update;
322: --
323: -- ----------------------------------------------------------------------------
324: -- |------------------------------< pre_update >------------------------------|

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

362: --
363: l_proc varchar2(72) := g_package||'pre_update';
364: --
365: Begin
366: hr_utility.set_location('Entering:'||l_proc, 5);
367: --
368: --
369: --
370: dt_pre_update

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

373: p_datetrack_mode => p_datetrack_mode,
374: p_validation_start_date => p_validation_start_date,
375: p_validation_end_date => p_validation_end_date);
376: --
377: hr_utility.set_location(' Leaving:'||l_proc, 10);
378: End pre_update;
379: --
380: -- ----------------------------------------------------------------------------
381: -- |-----------------------------< post_update >------------------------------|

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

418: --
419: l_proc varchar2(72) := g_package||'post_update';
420: --
421: Begin
422: hr_utility.set_location('Entering:'||l_proc, 5);
423: --
424: --
425: -- Start of API User Hook for post_update.
426: --

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

570: --
571: -- End of API User Hook for post_update.
572: --
573: --
574: hr_utility.set_location(' Leaving:'||l_proc, 10);
575: End post_update;
576: --
577: -- ----------------------------------------------------------------------------
578: -- |-----------------------------< convert_defs >-----------------------------|

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

622: l_proc varchar2(72) := g_package||'convert_defs';
623: --
624: Begin
625: --
626: hr_utility.set_location('Entering:'||l_proc, 5);
627: --
628: -- We must now examine each argument value in the
629: -- p_rec plsql record structure
630: -- to see if a system default is being used. If a system default

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

855: p_rec.reopen_le_on_reprocess := ben_len_shd.g_old_rec.reopen_le_on_reprocess;
856: End If;
857:
858: --
859: hr_utility.set_location(' Leaving:'||l_proc, 10);
860: --
861: End convert_defs;
862: --
863: -- ----------------------------------------------------------------------------

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

874: l_validation_start_date date;
875: l_validation_end_date date;
876: --
877: Begin
878: hr_utility.set_location('Entering:'||l_proc, 5);
879: --
880: -- Ensure that the DateTrack update mode is valid
881: --
882: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);

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

1007: l_rec ben_len_shd.g_rec_type;
1008: l_proc varchar2(72) := g_package||'upd';
1009: --
1010: Begin
1011: hr_utility.set_location('Entering:'||l_proc, 5);
1012: --
1013: -- Call conversion function to turn arguments into the
1014: -- l_rec structure.
1015: --

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

1089: p_effective_start_date := l_rec.effective_start_date;
1090: p_effective_end_date := l_rec.effective_end_date;
1091: --
1092: --
1093: hr_utility.set_location(' Leaving:'||l_proc, 10);
1094: End upd;
1095: --
1096: end ben_len_upd;