DBA Data[Home] [Help]

APPS.HR_CONTACT_EXTRA_INFO_API dependencies on HR_UTILITY

Line 86: hr_utility.set_location('Entering:'|| l_proc, 10);

82: l_effective_start_date per_contact_extra_info_f.effective_start_date%TYPE;
83: l_effective_end_date per_contact_extra_info_f.effective_end_date%TYPE;
84: l_proc varchar2(72) := g_package||'create_contact_extra_info';
85: begin
86: hr_utility.set_location('Entering:'|| l_proc, 10);
87: --
88: -- Issue a savepoint
89: --
90: savepoint create_contact_extra_info;

Line 322: hr_utility.set_location(' Leaving:'||l_proc, 70);

318: -- p_some_warning := ;
319: p_effective_start_date := l_effective_start_date;
320: p_effective_end_date := l_effective_end_date;
321: --
322: hr_utility.set_location(' Leaving:'||l_proc, 70);
323: exception
324: when hr_api.validate_enabled then
325: --
326: -- As the Validate_Enabled exception has been raised

Line 340: hr_utility.set_location(' Leaving:'||l_proc, 80);

336: p_object_version_number := null;
337: -- p_some_warning := ;
338: p_effective_start_date := NULL;
339: p_effective_end_date := NULL;
340: hr_utility.set_location(' Leaving:'||l_proc, 80);
341: when others then
342: --
343: -- A validation or unexpected error has occured
344: --

Line 350: hr_utility.set_location(' Leaving:'||l_proc, 90);

346: p_object_version_number := null;
347: p_effective_start_date := NULL;
348: p_effective_end_date := NULL;
349: rollback to create_contact_extra_info;
350: hr_utility.set_location(' Leaving:'||l_proc, 90);
351: raise;
352: end create_contact_extra_info;
353: --
354: -- ----------------------------------------------------------------------------

Line 435: hr_utility.set_location('Entering:'|| l_proc, 10);

431: l_effective_end_date per_contact_extra_info_f.effective_end_date%TYPE;
432: l_proc varchar2(72) := g_package||'update_contact_extra_info';
433: l_temp_ovn number := p_object_version_number;
434: begin
435: hr_utility.set_location('Entering:'|| l_proc, 10);
436: --
437: -- Issue a savepoint
438: --
439: savepoint update_contact_extra_info;

Line 675: hr_utility.set_location(' Leaving:'||l_proc, 70);

671: -- p_some_warning := ;
672: p_effective_start_date := l_effective_start_date;
673: p_effective_end_date := l_effective_end_date;
674: --
675: hr_utility.set_location(' Leaving:'||l_proc, 70);
676: exception
677: when hr_api.validate_enabled then
678: --
679: -- As the Validate_Enabled exception has been raised

Line 693: hr_utility.set_location(' Leaving:'||l_proc, 80);

689: p_object_version_number := null;
690: -- p_some_warning := ;
691: p_effective_start_date := NULL;
692: p_effective_end_date := NULL;
693: hr_utility.set_location(' Leaving:'||l_proc, 80);
694: when others then
695: --
696: -- A validation or unexpected error has occured
697: --

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

698: p_object_version_number := l_temp_ovn;
699: p_effective_start_date := NULL;
700: p_effective_end_date := NULL;
701: rollback to update_contact_extra_info;
702: hr_utility.set_location(' Leaving:'||l_proc, 90);
703: raise;
704: end update_contact_extra_info;
705: --
706: -- ----------------------------------------------------------------------------

Line 732: hr_utility.set_location('Entering:'|| l_proc, 10);

728: l_effective_end_date per_contact_extra_info_f.effective_end_date%TYPE;
729: l_proc varchar2(72) := g_package||'delete_contact_extra_info';
730: l_temp_ovn number := p_object_version_number;
731: begin
732: hr_utility.set_location('Entering:'|| l_proc, 10);
733: --
734: -- Issue a savepoint
735: --
736: savepoint delete_contact_extra_info;

Line 811: hr_utility.set_location(' Leaving:'||l_proc, 70);

807: -- p_some_warning := ;
808: p_effective_start_date := l_effective_start_date;
809: p_effective_end_date := l_effective_end_date;
810: --
811: hr_utility.set_location(' Leaving:'||l_proc, 70);
812: exception
813: when hr_api.validate_enabled then
814: --
815: -- As the Validate_Enabled exception has been raised

Line 829: hr_utility.set_location(' Leaving:'||l_proc, 80);

825: -- p_object_version_number := null;
826: -- p_some_warning := ;
827: p_effective_start_date := NULL;
828: p_effective_end_date := NULL;
829: hr_utility.set_location(' Leaving:'||l_proc, 80);
830: when others then
831: --
832: -- A validation or unexpected error has occured
833: --

Line 838: hr_utility.set_location(' Leaving:'||l_proc, 90);

834: p_effective_start_date := NULL;
835: p_effective_end_date := NULL;
836: p_object_version_number := l_temp_ovn;
837: rollback to delete_contact_extra_info;
838: hr_utility.set_location(' Leaving:'||l_proc, 90);
839: raise;
840: end delete_contact_extra_info;
841: --
842: end hr_contact_extra_info_api;