DBA Data[Home] [Help]

APPS.IRC_INTERVIEW_DETAILS_SWI dependencies on HR_UTILITY

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

53: -- Other variables
54: l_interview_details_id number;
55: l_proc varchar2(72) := g_package ||'create_irc_interview_details';
56: Begin
57: hr_utility.set_location(' Entering:' || l_proc,10);
58: --
59: -- Issue a savepoint
60: --
61: savepoint create_interview_details_swi;

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

128: -- messages of any type exist in the Multiple Message List.
129: -- Also disable Multiple Message Detection.
130: --
131: p_return_status := hr_multi_message.get_return_status_disable;
132: hr_utility.set_location(' Leaving:' || l_proc,20);
133: --
134: exception
135: when hr_multi_message.error_message_exist then
136: --

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

145: p_object_version_number := null;
146: p_start_date := null;
147: p_end_date := null;
148: p_return_status := hr_multi_message.get_return_status_disable;
149: hr_utility.set_location(' Leaving:' || l_proc, 30);
150: when others then
151: --
152: -- When Multiple Message Detection is enabled catch
153: -- any Application specific or other unexpected

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

156: -- error.
157: --
158: rollback to create_interview_details_swi;
159: if hr_multi_message.unexpected_error_add(l_proc) then
160: hr_utility.set_location(' Leaving:' || l_proc,40);
161: raise;
162: end if;
163: --
164: -- Reset IN OUT and set OUT parameters

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

166: p_object_version_number := null;
167: p_start_date := null;
168: p_end_date := null;
169: p_return_status := hr_multi_message.get_return_status_disable;
170: hr_utility.set_location(' Leaving:' || l_proc,50);
171: end create_irc_interview_details;
172: -- ----------------------------------------------------------------------------
173: -- |-------------------------< update_irc_interview_details >--------------------|
174: -- ----------------------------------------------------------------------------

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

217: --
218: -- Other variables
219: l_proc varchar2(72) := g_package ||'update_irc_interview_details';
220: Begin
221: hr_utility.set_location(' Entering:' || l_proc,10);
222: --
223: -- Issue a savepoint
224: --
225: savepoint update_interview_details_swi;

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

290: -- messages of any type exist in the Multiple Message List.
291: -- Also disable Multiple Message Detection.
292: --
293: p_return_status := hr_multi_message.get_return_status_disable;
294: hr_utility.set_location(' Leaving:' || l_proc,20);
295: --
296: exception
297: when hr_multi_message.error_message_exist then
298: --

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

307: p_object_version_number := l_object_version_number;
308: p_start_date := null;
309: p_end_date := null;
310: p_return_status := hr_multi_message.get_return_status_disable;
311: hr_utility.set_location(' Leaving:' || l_proc, 30);
312: when others then
313: --
314: -- When Multiple Message Detection is enabled catch
315: -- any Application specific or other unexpected

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

318: -- error.
319: --
320: rollback to update_interview_details_swi;
321: if hr_multi_message.unexpected_error_add(l_proc) then
322: hr_utility.set_location(' Leaving:' || l_proc,40);
323: raise;
324: end if;
325: --
326: -- Reset IN OUT and set OUT parameters

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

328: p_object_version_number := l_object_version_number;
329: p_start_date := null;
330: p_end_date := null;
331: p_return_status := hr_multi_message.get_return_status_disable;
332: hr_utility.set_location(' Leaving:' || l_proc,50);
333: end update_irc_interview_details;
334: ---
335: end irc_interview_details_swi;