DBA Data[Home] [Help]

APPS.PER_BOOKINGS_SWI dependencies on HR_MULTI_MESSAGE

Line 62: hr_multi_message.enable_message_list;

58: savepoint create_per_bookings_swi;
59: --
60: -- Initialise Multiple Message Detection
61: --
62: hr_multi_message.enable_message_list;
63: --
64: -- Remember IN OUT parameter IN values
65: --
66: -- Call API

Line 99: p_return_status := hr_multi_message.get_return_status_disable;

95: ,X_Attribute19 => p_Attribute19
96: ,X_Attribute20 => p_Attribute20
97: ,X_Primary_Interviewer_Flag => p_Primary_Interviewer_Flag
98: );
99: p_return_status := hr_multi_message.get_return_status_disable;
100: hr_utility.set_location(' Leaving:' || l_proc, 20);
101: --
102: exception
103: when hr_multi_message.error_message_exist then

Line 103: when hr_multi_message.error_message_exist then

99: p_return_status := hr_multi_message.get_return_status_disable;
100: hr_utility.set_location(' Leaving:' || l_proc, 20);
101: --
102: exception
103: when hr_multi_message.error_message_exist then
104: --
105: -- Catch the Multiple Message List exception which
106: -- indicates API processing has been aborted because
107: -- at least one message exists in the list.

Line 113: p_return_status := hr_multi_message.get_return_status_disable;

109: rollback to create_per_bookings_swi;
110: --
111: -- Reset IN OUT parameters and set OUT parameters
112: --
113: p_return_status := hr_multi_message.get_return_status_disable;
114: hr_utility.set_location(' Leaving:' || l_proc, 30);
115: when others then
116: --
117: -- When Multiple Message Detection is enabled catch

Line 124: if hr_multi_message.unexpected_error_add(l_proc) then

120: -- Multiple Message List. Otherwise re-raise the
121: -- error.
122: --
123: rollback to create_per_bookings_swi;
124: if hr_multi_message.unexpected_error_add(l_proc) then
125: hr_utility.set_location(' Leaving:' || l_proc,40);
126: raise;
127: end if;
128: --

Line 131: p_return_status := hr_multi_message.get_return_status_disable;

127: end if;
128: --
129: -- Reset IN OUT and set OUT parameters
130: --
131: p_return_status := hr_multi_message.get_return_status_disable;
132: hr_utility.set_location(' Leaving:' || l_proc,50);
133: end create_per_bookings;
134: --
135: --

Line 197: hr_multi_message.enable_message_list;

193: savepoint update_per_bookings_swi;
194: --
195: -- Initialise Multiple Message Detection
196: --
197: hr_multi_message.enable_message_list;
198: --
199: open csr_rowid;
200: fetch csr_rowid into l_oldrec;
201: if csr_rowid%found then

Line 359: p_return_status := hr_multi_message.get_return_status_disable;

355: ,X_Attribute19 => p_rec.Attribute19
356: ,X_Attribute20 => p_rec.Attribute20
357: ,X_Primary_Interviewer_Flag => p_rec.Primary_Interviewer_Flag
358: );
359: p_return_status := hr_multi_message.get_return_status_disable;
360: hr_utility.set_location(' Leaving:' || l_proc, 20);
361: --
362: exception
363: when hr_multi_message.error_message_exist then

Line 363: when hr_multi_message.error_message_exist then

359: p_return_status := hr_multi_message.get_return_status_disable;
360: hr_utility.set_location(' Leaving:' || l_proc, 20);
361: --
362: exception
363: when hr_multi_message.error_message_exist then
364: --
365: -- Catch the Multiple Message List exception which
366: -- indicates API processing has been aborted because
367: -- at least one message exists in the list.

Line 373: p_return_status := hr_multi_message.get_return_status_disable;

369: rollback to update_per_bookings_swi;
370: --
371: -- Reset IN OUT parameters and set OUT parameters
372: --
373: p_return_status := hr_multi_message.get_return_status_disable;
374: hr_utility.set_location(' Leaving:' || l_proc, 30);
375: when others then
376: --
377: -- When Multiple Message Detection is enabled catch

Line 384: if hr_multi_message.unexpected_error_add(l_proc) then

380: -- Multiple Message List. Otherwise re-raise the
381: -- error.
382: --
383: rollback to update_per_bookings_swi;
384: if hr_multi_message.unexpected_error_add(l_proc) then
385: hr_utility.set_location(' Leaving:' || l_proc,40);
386: raise;
387: end if;
388: --

Line 391: p_return_status := hr_multi_message.get_return_status_disable;

387: end if;
388: --
389: -- Reset IN OUT and set OUT parameters
390: --
391: p_return_status := hr_multi_message.get_return_status_disable;
392: hr_utility.set_location(' Leaving:' || l_proc,50);
393: end update_per_bookings;
394: -- ----------------------------------------------------------------------------
395: PROCEDURE delete_per_bookings

Line 414: hr_multi_message.enable_message_list;

410: savepoint delete_per_bookings_swi;
411: --
412: -- Initialise Multiple Message Detection
413: --
414: hr_multi_message.enable_message_list;
415: --
416: open csr_rowid;
417: fetch csr_rowid into l_Rowid;
418: if csr_rowid%found then

Line 431: p_return_status := hr_multi_message.get_return_status_disable;

427: -- Call API
428: --
429: per_bookings_pkg.Delete_Row(X_Rowid => l_Rowid);
430: --
431: p_return_status := hr_multi_message.get_return_status_disable;
432: hr_utility.set_location(' Leaving:' || l_proc, 20);
433: ---
434: exception
435: when hr_multi_message.error_message_exist then

Line 435: when hr_multi_message.error_message_exist then

431: p_return_status := hr_multi_message.get_return_status_disable;
432: hr_utility.set_location(' Leaving:' || l_proc, 20);
433: ---
434: exception
435: when hr_multi_message.error_message_exist then
436: --
437: -- Catch the Multiple Message List exception which
438: -- indicates API processing has been aborted because
439: -- at least one message exists in the list.

Line 445: p_return_status := hr_multi_message.get_return_status_disable;

441: rollback to delete_per_bookings_swi;
442: --
443: -- Reset IN OUT parameters and set OUT parameters
444: --
445: p_return_status := hr_multi_message.get_return_status_disable;
446: hr_utility.set_location(' Leaving:' || l_proc, 30);
447: when others then
448: --
449: -- When Multiple Message Detection is enabled catch

Line 456: if hr_multi_message.unexpected_error_add(l_proc) then

452: -- Multiple Message List. Otherwise re-raise the
453: -- error.
454: --
455: rollback to delete_per_bookings_swi;
456: if hr_multi_message.unexpected_error_add(l_proc) then
457: hr_utility.set_location(' Leaving:' || l_proc,40);
458: raise;
459: end if;
460: --

Line 463: p_return_status := hr_multi_message.get_return_status_disable;

459: end if;
460: --
461: -- Reset IN OUT and set OUT parameters
462: --
463: p_return_status := hr_multi_message.get_return_status_disable;
464: hr_utility.set_location(' Leaving:' || l_proc,50);
465: end delete_per_bookings;
466:
467: --