DBA Data[Home] [Help]

APPS.HR_KI_INTEGRATIONS_SWI dependencies on HR_UTILITY

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

25: l_object_version_number number :=p_object_version_number;
26: l_error varchar2(2000) := null;
27: l_index number := null;
28: Begin
29: hr_utility.set_location(' Entering:' || l_proc,10);
30: --
31: -- Issue a savepoint
32: --
33: savepoint validate_integration;

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

57: -- messages of any type exist in the Multiple Message List.
58: -- Also disable Multiple Message Detection.
59: --
60: p_return_status := hr_multi_message.get_return_status_disable;
61: hr_utility.set_location(' Leaving:' || l_proc,20);
62: --
63: exception
64: when hr_multi_message.error_message_exist then
65: --

Line 85: hr_utility.set_location(' Leaving:' || l_proc, 30);

81: --
82: p_error := l_error;
83: p_return_status := hr_multi_message.get_return_status_disable;
84: p_object_version_number := l_object_version_number;
85: hr_utility.set_location(' Leaving:' || l_proc, 30);
86: when others then
87: --
88: -- When Multiple Message Detection is enabled catch
89: -- any Application specific or other unexpected

Line 98: hr_utility.set_location(' Leaving:' || l_proc,40);

94:
95: rollback to validate_integration;
96:
97: if hr_multi_message.unexpected_error_add(l_proc) then
98: hr_utility.set_location(' Leaving:' || l_proc,40);
99: raise;
100: end if;
101:
102: fnd_msg_pub.get

Line 115: hr_utility.set_location(' Leaving:' || l_proc,50);

111: --
112: p_return_status := hr_multi_message.get_return_status_disable;
113: p_object_version_number := l_object_version_number;
114: p_error := l_error;
115: hr_utility.set_location(' Leaving:' || l_proc,50);
116: end validate_integration;
117: end hr_ki_integrations_swi;