DBA Data[Home] [Help]

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

132: p_rec.effective_start_date := p_validation_start_date;
133: p_rec.effective_end_date := p_validation_end_date;
134: End If;
135: --
136: hr_utility.set_location(' Leaving:'||l_proc, 15);
137: Exception
138: When hr_api.check_integrity_violated Then
139: -- A check constraint has been violated
140: ben_bvr_shd.g_api_dml := false; -- Unset the api dml status

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

190: --
191: l_proc varchar2(72) := g_package||'update_dml';
192: --
193: Begin
194: hr_utility.set_location('Entering:'||l_proc, 5);
195: --
196: dt_update_dml(p_rec => p_rec,
197: p_effective_date => p_effective_date,
198: p_datetrack_mode => p_datetrack_mode,

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

198: p_datetrack_mode => p_datetrack_mode,
199: p_validation_start_date => p_validation_start_date,
200: p_validation_end_date => p_validation_end_date);
201: --
202: hr_utility.set_location(' Leaving:'||l_proc, 10);
203: End update_dml;
204: --
205: -- ----------------------------------------------------------------------------
206: -- |----------------------------< dt_pre_update >-----------------------------|

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

255: l_proc varchar2(72) := g_package||'dt_pre_update';
256: l_dummy_version_number number;
257: --
258: Begin
259: hr_utility.set_location('Entering:'||l_proc, 5);
260: If (p_datetrack_mode <> 'CORRECTION') then
261: hr_utility.set_location(l_proc, 10);
262: --
263: -- Update the current effective end date

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

257: --
258: Begin
259: hr_utility.set_location('Entering:'||l_proc, 5);
260: If (p_datetrack_mode <> 'CORRECTION') then
261: hr_utility.set_location(l_proc, 10);
262: --
263: -- Update the current effective end date
264: --
265: ben_bvr_shd.upd_effective_end_date

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

270: p_validation_end_date => p_validation_end_date,
271: p_object_version_number => l_dummy_version_number);
272: --
273: If (p_datetrack_mode = 'UPDATE_OVERRIDE') then
274: hr_utility.set_location(l_proc, 15);
275: --
276: -- As the datetrack mode is 'UPDATE_OVERRIDE' then we must
277: -- delete any future rows
278: --

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

282: p_datetrack_mode => p_datetrack_mode,
283: p_validation_start_date => p_validation_start_date,
284: p_validation_end_date => p_validation_end_date);
285: End If;
286: hr_utility.set_location(l_proc, 20);
287: --
288: -- We must now insert the updated row
289: --
290: ben_bvr_ins.insert_dml

Line 297: hr_utility.set_location(' Leaving:'||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(' Leaving:'||l_proc, 20);
298: End dt_pre_update;
299: --
300: -- ----------------------------------------------------------------------------
301: -- |------------------------------< pre_update >------------------------------|

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

339: --
340: l_proc varchar2(72) := g_package||'pre_update';
341: --
342: Begin
343: hr_utility.set_location('Entering:'||l_proc, 5);
344: --
345: --
346: --
347: dt_pre_update

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

350: p_datetrack_mode => p_datetrack_mode,
351: p_validation_start_date => p_validation_start_date,
352: p_validation_end_date => p_validation_end_date);
353: --
354: hr_utility.set_location(' Leaving:'||l_proc, 10);
355: End pre_update;
356: --
357: -- ----------------------------------------------------------------------------
358: -- |-----------------------------< post_update >------------------------------|

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

395: --
396: l_proc varchar2(72) := g_package||'post_update';
397: --
398: Begin
399: hr_utility.set_location('Entering:'||l_proc, 5);
400: --
401: --
402: -- Start of API User Hook for post_update.
403: --

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

500: --
501: -- End of API User Hook for post_update.
502: --
503: --
504: hr_utility.set_location(' Leaving:'||l_proc, 10);
505: End post_update;
506: --
507: -- ----------------------------------------------------------------------------
508: -- |-----------------------------< convert_defs >-----------------------------|

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

552: l_proc varchar2(72) := g_package||'convert_defs';
553: --
554: Begin
555: --
556: hr_utility.set_location('Entering:'||l_proc, 5);
557: --
558: -- We must now examine each argument value in the
559: -- p_rec plsql record structure
560: -- to see if a system default is being used. If a system default

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

700: p_rec.ordr_num :=
701: ben_bvr_shd.g_old_rec.ordr_num;
702: End If;
703: --
704: hr_utility.set_location(' Leaving:'||l_proc, 10);
705: --
706: End convert_defs;
707: --
708: -- ----------------------------------------------------------------------------

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

719: l_validation_start_date date;
720: l_validation_end_date date;
721: --
722: Begin
723: hr_utility.set_location('Entering:'||l_proc, 5);
724: --
725: -- Ensure that the DateTrack update mode is valid
726: --
727: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);

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

829: l_rec ben_bvr_shd.g_rec_type;
830: l_proc varchar2(72) := g_package||'upd';
831: --
832: Begin
833: hr_utility.set_location('Entering:'||l_proc, 5);
834: --
835: -- Call conversion function to turn arguments into the
836: -- l_rec structure.
837: --

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

888: p_effective_start_date := l_rec.effective_start_date;
889: p_effective_end_date := l_rec.effective_end_date;
890: --
891: --
892: hr_utility.set_location(' Leaving:'||l_proc, 10);
893: End upd;
894: --
895: end ben_bvr_upd;