DBA Data[Home] [Help]

APPS.PER_EVENTS_SWI dependencies on HR_UTILITY

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

59: -- Other variables
60: l_event_id number;
61: l_proc varchar2(72) := g_package ||'create_event';
62: Begin
63: hr_utility.set_location(' Entering:' || l_proc,10);
64: --
65: -- Issue a savepoint
66: --
67: savepoint create_event_swi;

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

140: -- messages of any type exist in the Multiple Message List.
141: -- Also disable Multiple Message Detection.
142: --
143: p_return_status := hr_multi_message.get_return_status_disable;
144: hr_utility.set_location(' Leaving:' || l_proc,20);
145: --
146: exception
147: when hr_multi_message.error_message_exist then
148: --

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

155: -- Reset IN OUT parameters and set OUT parameters
156: --
157: p_object_version_number := null;
158: p_return_status := hr_multi_message.get_return_status_disable;
159: hr_utility.set_location(' Leaving:' || l_proc, 30);
160: when others then
161: --
162: -- When Multiple Message Detection is enabled catch
163: -- any Application specific or other unexpected

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

166: -- error.
167: --
168: rollback to create_event_swi;
169: if hr_multi_message.unexpected_error_add(l_proc) then
170: hr_utility.set_location(' Leaving:' || l_proc,40);
171: raise;
172: end if;
173: --
174: -- Reset IN OUT and set OUT parameters

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

174: -- Reset IN OUT and set OUT parameters
175: --
176: p_object_version_number := null;
177: p_return_status := hr_multi_message.get_return_status_disable;
178: hr_utility.set_location(' Leaving:' || l_proc,50);
179: end create_event;
180: -- ----------------------------------------------------------------------------
181: -- |-----------------------------< delete_event >-----------------------------|
182: -- ----------------------------------------------------------------------------

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

194: --
195: -- Other variables
196: l_proc varchar2(72) := g_package ||'delete_event';
197: Begin
198: hr_utility.set_location(' Entering:' || l_proc,10);
199: --
200: -- Issue a savepoint
201: --
202: savepoint delete_event_swi;

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

236: -- messages of any type exist in the Multiple Message List.
237: -- Also disable Multiple Message Detection.
238: --
239: p_return_status := hr_multi_message.get_return_status_disable;
240: hr_utility.set_location(' Leaving:' || l_proc,20);
241: --
242: exception
243: when hr_multi_message.error_message_exist then
244: --

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

250: --
251: -- Reset IN OUT parameters and set OUT parameters
252: --
253: p_return_status := hr_multi_message.get_return_status_disable;
254: hr_utility.set_location(' Leaving:' || l_proc, 30);
255: when others then
256: --
257: -- When Multiple Message Detection is enabled catch
258: -- any Application specific or other unexpected

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

261: -- error.
262: --
263: rollback to delete_event_swi;
264: if hr_multi_message.unexpected_error_add(l_proc) then
265: hr_utility.set_location(' Leaving:' || l_proc,40);
266: raise;
267: end if;
268: --
269: -- Reset IN OUT and set OUT parameters

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

268: --
269: -- Reset IN OUT and set OUT parameters
270: --
271: p_return_status := hr_multi_message.get_return_status_disable;
272: hr_utility.set_location(' Leaving:' || l_proc,50);
273: end delete_event;
274: -- ----------------------------------------------------------------------------
275: -- |-----------------------------< update_event >-----------------------------|
276: -- ----------------------------------------------------------------------------

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

326: --
327: -- Other variables
328: l_proc varchar2(72) := g_package ||'update_event';
329: Begin
330: hr_utility.set_location(' Entering:' || l_proc,10);
331: --
332: -- Issue a savepoint
333: --
334: savepoint update_event_swi;

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

406: -- messages of any type exist in the Multiple Message List.
407: -- Also disable Multiple Message Detection.
408: --
409: p_return_status := hr_multi_message.get_return_status_disable;
410: hr_utility.set_location(' Leaving:' || l_proc,20);
411: --
412: exception
413: when hr_multi_message.error_message_exist then
414: --

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

422: --
423: p_event_id := l_event_id;
424: p_object_version_number := l_object_version_number;
425: p_return_status := hr_multi_message.get_return_status_disable;
426: hr_utility.set_location(' Leaving:' || l_proc, 30);
427: when others then
428: --
429: -- When Multiple Message Detection is enabled catch
430: -- any Application specific or other unexpected

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

433: -- error.
434: --
435: rollback to update_event_swi;
436: if hr_multi_message.unexpected_error_add(l_proc) then
437: hr_utility.set_location(' Leaving:' || l_proc,40);
438: raise;
439: end if;
440: --
441: -- Reset IN OUT and set OUT parameters

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

442: --
443: p_event_id := l_event_id;
444: p_object_version_number := l_object_version_number;
445: p_return_status := hr_multi_message.get_return_status_disable;
446: hr_utility.set_location(' Leaving:' || l_proc,50);
447: end update_event;
448: end per_events_swi;