DBA Data[Home] [Help]

APPS.OTA_TCC_SWI dependencies on HR_UTILITY

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

29: --
30: -- Other variables
31: l_proc varchar2(72) := g_package ||'create_cross_charge';
32: Begin
33: hr_utility.set_location(' Entering:' || l_proc,10);
34: --
35: -- Issue a savepoint
36: --
37: savepoint create_cross_charge_swi;

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

78: -- messages of any type exist in the Multiple Message List.
79: -- Also disable Multiple Message Detection.
80: --
81: p_return_status := hr_multi_message.get_return_status_disable;
82: hr_utility.set_location(' Leaving:' || l_proc,20);
83: --
84: exception
85: when hr_multi_message.error_message_exist then
86: --

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

94: --
95: p_cross_charge_id := null;
96: p_object_version_number := null;
97: p_return_status := hr_multi_message.get_return_status_disable;
98: hr_utility.set_location(' Leaving:' || l_proc, 30);
99: when others then
100: --
101: -- When Multiple Message Detection is enabled catch
102: -- any Application specific or other unexpected

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

105: -- error.
106: --
107: rollback to create_cross_charge_swi;
108: if hr_multi_message.unexpected_error_add(l_proc) then
109: hr_utility.set_location(' Leaving:' || l_proc,40);
110: raise;
111: end if;
112: --
113: -- Reset IN OUT and set OUT parameters

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

114: --
115: p_cross_charge_id := null;
116: p_object_version_number := null;
117: p_return_status := hr_multi_message.get_return_status_disable;
118: hr_utility.set_location(' Leaving:' || l_proc,50);
119: end create_cross_charge;
120: -- ----------------------------------------------------------------------------
121: -- |--------------------------< update_cross_charge >-------------------------|
122: -- ----------------------------------------------------------------------------

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

142: --
143: -- Other variables
144: l_proc varchar2(72) := g_package ||'update_cross_charge';
145: Begin
146: hr_utility.set_location(' Entering:' || l_proc,10);
147: --
148: -- Issue a savepoint
149: --
150: savepoint update_cross_charge_swi;

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

192: -- messages of any type exist in the Multiple Message List.
193: -- Also disable Multiple Message Detection.
194: --
195: p_return_status := hr_multi_message.get_return_status_disable;
196: hr_utility.set_location(' Leaving:' || l_proc,20);
197: --
198: exception
199: when hr_multi_message.error_message_exist then
200: --

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

207: -- Reset IN OUT parameters and set OUT parameters
208: --
209: p_object_version_number := l_object_version_number;
210: p_return_status := hr_multi_message.get_return_status_disable;
211: hr_utility.set_location(' Leaving:' || l_proc, 30);
212: when others then
213: --
214: -- When Multiple Message Detection is enabled catch
215: -- any Application specific or other unexpected

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

218: -- error.
219: --
220: rollback to update_cross_charge_swi;
221: if hr_multi_message.unexpected_error_add(l_proc) then
222: hr_utility.set_location(' Leaving:' || l_proc,40);
223: raise;
224: end if;
225: --
226: -- Reset IN OUT and set OUT parameters

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

226: -- Reset IN OUT and set OUT parameters
227: --
228: p_object_version_number := l_object_version_number;
229: p_return_status := hr_multi_message.get_return_status_disable;
230: hr_utility.set_location(' Leaving:' || l_proc,50);
231: end update_cross_charge;
232: end ota_tcc_swi;