DBA Data[Home] [Help]

APPS.AME_ITEM_CLASS_SWI dependencies on HR_UTILITY

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

27: -- Other variables
28: l_item_class_id number;
29: l_proc varchar2(72) := g_package ||'create_ame_item_class';
30: Begin
31: hr_utility.set_location(' Entering:' || l_proc,10);
32: --
33: -- Issue a savepoint
34: --
35: savepoint create_ame_item_class_swi;

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

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

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

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

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

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

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

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

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

138: --
139: -- Other variables
140: l_proc varchar2(72) := g_package ||'update_ame_item_class';
141: Begin
142: hr_utility.set_location(' Entering:' || l_proc,10);
143: --
144: -- Issue a savepoint
145: --
146: savepoint update_ame_item_class_swi;

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

184: -- messages of any type exist in the Multiple Message List.
185: -- Also disable Multiple Message Detection.
186: --
187: p_return_status := hr_multi_message.get_return_status_disable;
188: hr_utility.set_location(' Leaving:' || l_proc,20);
189: --
190: exception
191: when hr_multi_message.error_message_exist then
192: --

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

201: p_object_version_number := l_object_version_number;
202: p_start_date := null;
203: p_end_date := null;
204: p_return_status := hr_multi_message.get_return_status_disable;
205: hr_utility.set_location(' Leaving:' || l_proc, 30);
206: when others then
207: --
208: -- When Multiple Message Detection is enabled catch
209: -- any Application specific or other unexpected

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

212: -- error.
213: --
214: rollback to update_ame_item_class_swi;
215: if hr_multi_message.unexpected_error_add(l_proc) then
216: hr_utility.set_location(' Leaving:' || l_proc,40);
217: raise;
218: end if;
219: --
220: -- Reset IN OUT and set OUT parameters

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

222: p_object_version_number := l_object_version_number;
223: p_start_date := null;
224: p_end_date := null;
225: p_return_status := hr_multi_message.get_return_status_disable;
226: hr_utility.set_location(' Leaving:' || l_proc,50);
227: end update_ame_item_class;
228: -- ----------------------------------------------------------------------------
229: -- |-------------------------< delete_ame_item_class >------------------------|
230: -- ----------------------------------------------------------------------------

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

245: --
246: -- Other variables
247: l_proc varchar2(72) := g_package ||'delete_ame_item_class';
248: Begin
249: hr_utility.set_location(' Entering:' || l_proc,10);
250: --
251: -- Issue a savepoint
252: --
253: savepoint delete_ame_item_class_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 delete_ame_item_class_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 delete_ame_item_class;
334: -- ----------------------------------------------------------------------------
335: -- |----------------------< create_ame_item_class_usage >---------------------|
336: -- ----------------------------------------------------------------------------

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

357: --
358: -- Other variables
359: l_proc varchar2(72) := g_package ||'create_ame_item_class_usage';
360: Begin
361: hr_utility.set_location(' Entering:' || l_proc,10);
362: --
363: -- Issue a savepoint
364: --
365: savepoint create_ame_itemclass_usage_swi;

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

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

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

427: p_object_version_number := null;
428: p_start_date := null;
429: p_end_date := null;
430: p_return_status := hr_multi_message.get_return_status_disable;
431: hr_utility.set_location(' Leaving:' || l_proc, 30);
432: when others then
433: --
434: -- When Multiple Message Detection is enabled catch
435: -- any Application specific or other unexpected

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

438: -- error.
439: --
440: rollback to create_ame_itemclass_usage_swi;
441: if hr_multi_message.unexpected_error_add(l_proc) then
442: hr_utility.set_location(' Leaving:' || l_proc,40);
443: raise;
444: end if;
445: --
446: -- Reset IN OUT and set OUT parameters

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

450: p_object_version_number := null;
451: p_start_date := null;
452: p_end_date := null;
453: p_return_status := hr_multi_message.get_return_status_disable;
454: hr_utility.set_location(' Leaving:' || l_proc,50);
455: end create_ame_item_class_usage;
456: -- ----------------------------------------------------------------------------
457: -- |----------------------< update_ame_item_class_usage >---------------------|
458: -- ----------------------------------------------------------------------------

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

478: --
479: -- Other variables
480: l_proc varchar2(72) := g_package ||'update_ame_item_class_usage';
481: Begin
482: hr_utility.set_location(' Entering:' || l_proc,10);
483: --
484: -- Issue a savepoint
485: --
486: savepoint update_ameitem_class_usage_swi;

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

528: -- messages of any type exist in the Multiple Message List.
529: -- Also disable Multiple Message Detection.
530: --
531: p_return_status := hr_multi_message.get_return_status_disable;
532: hr_utility.set_location(' Leaving:' || l_proc,20);
533: --
534: exception
535: when hr_multi_message.error_message_exist then
536: --

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

545: p_object_version_number := l_object_version_number;
546: p_start_date := null;
547: p_end_date := null;
548: p_return_status := hr_multi_message.get_return_status_disable;
549: hr_utility.set_location(' Leaving:' || l_proc, 30);
550: when others then
551: --
552: -- When Multiple Message Detection is enabled catch
553: -- any Application specific or other unexpected

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

556: -- error.
557: --
558: rollback to update_ame_itemclass_usage_swi;
559: if hr_multi_message.unexpected_error_add(l_proc) then
560: hr_utility.set_location(' Leaving:' || l_proc,40);
561: raise;
562: end if;
563: --
564: -- Reset IN OUT and set OUT parameters

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

566: p_object_version_number := l_object_version_number;
567: p_start_date := null;
568: p_end_date := null;
569: p_return_status := hr_multi_message.get_return_status_disable;
570: hr_utility.set_location(' Leaving:' || l_proc,50);
571: end update_ame_item_class_usage;
572: -- ----------------------------------------------------------------------------
573: -- |----------------------< delete_ame_item_class_usage >---------------------|
574: -- ----------------------------------------------------------------------------

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

591: -- Other variables
592: l_proc varchar2(72) := g_package ||'delete_ame_item_class_usage';
593: l_found varchar2(1);
594: Begin
595: hr_utility.set_location(' Entering:' || l_proc,10);
596: --
597: -- Issue a savepoint
598: --
599: savepoint delete_ame_itemclass_usage_swi;

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

637: -- messages of any type exist in the Multiple Message List.
638: -- Also disable Multiple Message Detection.
639: --
640: p_return_status := hr_multi_message.get_return_status_disable;
641: hr_utility.set_location(' Leaving:' || l_proc,20);
642: --
643: exception
644: when hr_multi_message.error_message_exist then
645: --

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

659: fnd_message.set_name('PER','AME_400774_ITU_CHILD_EXISTS');
660: l_found := fnd_msg_pub.change_msg;
661: fnd_msg_pub.set_search_name('PAY','HR_7215_DT_CHILD_EXISTS');
662: l_found := fnd_msg_pub.delete_msg;
663: hr_utility.set_location(' Leaving:' || l_proc, 30);
664: when others then
665: --
666: -- When Multiple Message Detection is enabled catch
667: -- any Application specific or other unexpected

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

670: -- error.
671: --
672: rollback to delete_ame_itemclass_usage_swi;
673: if hr_multi_message.unexpected_error_add(l_proc) then
674: hr_utility.set_location(' Leaving:' || l_proc,40);
675: raise;
676: end if;
677: --
678: -- Reset IN OUT and set OUT parameters

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

680: p_object_version_number := l_object_version_number;
681: p_start_date := null;
682: p_end_date := null;
683: p_return_status := hr_multi_message.get_return_status_disable;
684: hr_utility.set_location(' Leaving:' || l_proc,50);
685: end delete_ame_item_class_usage;
686: end ame_item_class_swi;