DBA Data[Home] [Help]

APPS.PER_APT_UPD dependencies on HR_UTILITY

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

49:
50: l_proc varchar2(72) := g_package||'update_dml';
51:
52: Begin
53: hr_utility.set_location('Entering:'||l_proc, 5);
54:
55: -- Increment the object version
56:
57: p_rec.object_version_number := p_rec.object_version_number + 1;

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

115: part_app_off_template_code = p_rec.part_app_off_template_code,
116: part_rev_off_template_code = p_rec.part_rev_off_template_code
117: where appraisal_template_id = p_rec.appraisal_template_id;
118:
119: hr_utility.set_location(' Leaving:'||l_proc, 10);
120:
121: Exception
122: When hr_api.check_integrity_violated Then
123: -- A check constraint has been violated

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

171:
172: l_proc varchar2(72) := g_package||'pre_update';
173:
174: Begin
175: hr_utility.set_location('Entering:'||l_proc, 5);
176:
177: hr_utility.set_location(' Leaving:'||l_proc, 10);
178: End pre_update;
179:

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

173:
174: Begin
175: hr_utility.set_location('Entering:'||l_proc, 5);
176:
177: hr_utility.set_location(' Leaving:'||l_proc, 10);
178: End pre_update;
179:
180: -- ---------------------------------------------------------------------------+
181: -- |-----------------------------< post_update >------------------------------|

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

213:
214: l_proc varchar2(72) := g_package||'post_update';
215:
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218:
219: -- This is a hook point and the user hook for post_update is called here.
220:
221: begin

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

339: );
340: end;
341: -- End of API User Hook for post_update
342:
343: hr_utility.set_location(' Leaving:'||l_proc, 10);
344: End post_update;
345:
346: -- ---------------------------------------------------------------------------+
347: -- |-----------------------------< convert_defs >-----------------------------|

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

392: l_proc varchar2(72) := g_package||'convert_defs';
393:
394: Begin
395:
396: hr_utility.set_location('Entering:'||l_proc, 5);
397:
398: -- We must now examine each argument value in the
399: -- p_rec plsql record structure
400: -- to see if a system default is being used. If a system default

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

612: p_rec.part_app_off_template_code :=
613: per_apt_shd.g_old_rec.part_app_off_template_code ;
614: End If;
615:
616: hr_utility.set_location(' Leaving:'||l_proc, 10);
617:
618: End convert_defs;
619:
620: -- ---------------------------------------------------------------------------+

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

629:
630: l_proc varchar2(72) := g_package||'upd';
631:
632: Begin
633: hr_utility.set_location('Entering:'||l_proc, 5);
634:
635: -- Determine if the business process is to be validated.
636:
637: If p_validate then

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

675: If p_validate then
676: Raise HR_Api.Validate_Enabled;
677: End If;
678:
679: hr_utility.set_location(' Leaving:'||l_proc, 10);
680: Exception
681: When HR_Api.Validate_Enabled Then
682:
683: -- As the Validate_Enabled exception has been raised

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

752: l_rec per_apt_shd.g_rec_type;
753: l_proc varchar2(72) := g_package||'upd';
754:
755: Begin
756: hr_utility.set_location('Entering:'||l_proc, 5);
757:
758: -- Call conversion function to turn arguments into the
759: -- l_rec structure.
760:

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

827: if not p_validate then
828: p_object_version_number := l_rec.object_version_number;
829: end if;
830:
831: hr_utility.set_location(' Leaving:'||l_proc, 10);
832: End upd;
833:
834: end per_apt_upd;