DBA Data[Home] [Help]

APPS.PER_ABV_UPD dependencies on HR_UTILITY

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

65: l_proc varchar2(72) := g_package||'dt_update_dml';
66: l_value per_assignment_budget_values_f.value%TYPE;
67: --
68: Begin
69: hr_utility.set_location('Entering:'||l_proc, 5);
70: --
71: If (p_datetrack_mode = hr_api.g_correction) then
72: hr_utility.set_location(l_proc, 10);
73: --

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

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

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

84: per_asg_shd.g_api_dml := true; -- Set the api dml status
85: --
86: -- Added the following code as a part of Bug 2172818 fix
87: --
88: hr_utility.set_location(l_proc, 20);
89:
90: l_value := p_rec.value;
91:
92: -- Check whether the unit is a FTE

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

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

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

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

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

202: ,p_validation_start_date => p_validation_start_date
203: ,p_validation_end_date => p_validation_end_date
204: );
205: --
206: hr_utility.set_location(' Leaving:'||l_proc, 10);
207: End update_dml;
208: --
209: -- ----------------------------------------------------------------------------
210: -- |----------------------------< dt_pre_update >-----------------------------|

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

260: l_proc varchar2(72) := g_package||'dt_pre_update';
261: l_dummy_version_number number;
262: --
263: Begin
264: hr_utility.set_location('Entering:'||l_proc, 5);
265: If (p_datetrack_mode <> hr_api.g_correction) then
266: --
267: -- Update the current effective end date
268: --

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

298: ,p_validation_start_date => p_validation_start_date
299: ,p_validation_end_date => p_validation_end_date
300: );
301: End If;
302: hr_utility.set_location(' Leaving:'||l_proc, 20);
303: End dt_pre_update;
304: --
305: -- ----------------------------------------------------------------------------
306: -- |------------------------------< pre_update >------------------------------|

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

345: --
346: l_proc varchar2(72) := g_package||'pre_update';
347: --
348: Begin
349: hr_utility.set_location('Entering:'||l_proc, 5);
350: --
351: --
352: --
353: dt_pre_update

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

357: ,p_validation_start_date => p_validation_start_date
358: ,p_validation_end_date => p_validation_end_date
359: );
360: --
361: hr_utility.set_location(' Leaving:'||l_proc, 10);
362: End pre_update;
363: --
364: -- ----------------------------------------------------------------------------
365: -- |----------------------------< post_update >-------------------------------|

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

403: --
404: l_proc varchar2(72) := g_package||'post_update';
405: --
406: Begin
407: hr_utility.set_location('Entering:'||l_proc, 5);
408: begin
409: --
410: per_abv_rku.after_update
411: (p_effective_date

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

469: ,p_hook_type => 'AU');
470: --
471: end;
472: --
473: hr_utility.set_location(' Leaving:'||l_proc, 10);
474: End post_update;
475: --
476: -- ----------------------------------------------------------------------------
477: -- |-----------------------------< convert_defs >-----------------------------|

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

575: l_validation_start_date date;
576: l_validation_end_date date;
577: --
578: Begin
579: hr_utility.set_location('Entering:'||l_proc, 5);
580: --
581: -- Ensure that the DateTrack update mode is valid
582: --
583: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);

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

663: l_assignment_id number := hr_api.g_number;
664: l_business_group_id number := hr_api.g_number;
665: --
666: Begin
667: hr_utility.set_location('Entering:'||l_proc, 5);
668: --
669: -- Call conversion function to turn arguments into the
670: -- l_rec structure.
671: --

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

698: p_effective_start_date := l_rec.effective_start_date;
699: p_effective_end_date := l_rec.effective_end_date;
700: --
701: --
702: hr_utility.set_location(' Leaving:'||l_proc, 10);
703: End upd;
704: --
705: end per_abv_upd;