DBA Data[Home] [Help]

APPS.HR_CONTACT_EXTRA_INFO_SWI dependencies on HR_MULTI_MESSAGE

Line 93: hr_multi_message.enable_message_list;

89: savepoint create_contact_extra_info_swi;
90: --
91: -- Initialise Multiple Message Detection
92: --
93: hr_multi_message.enable_message_list;
94: --
95: -- Remember IN OUT parameter IN values
96: --
97: --

Line 191: p_return_status := hr_multi_message.get_return_status_disable;

187: If l_validate = TRUE Then
188: rollback to create_contact_extra_info_swi;
189: End If;
190: --
191: p_return_status := hr_multi_message.get_return_status_disable;
192: hr_utility.set_location(' Leaving:' || l_proc,20);
193: --
194: exception
195: when hr_multi_message.error_message_exist then

Line 195: when hr_multi_message.error_message_exist then

191: p_return_status := hr_multi_message.get_return_status_disable;
192: hr_utility.set_location(' Leaving:' || l_proc,20);
193: --
194: exception
195: when hr_multi_message.error_message_exist then
196: --
197: -- Catch the Multiple Message List exception which
198: -- indicates API processing has been aborted because
199: -- at least one message exists in the list.

Line 208: p_return_status := hr_multi_message.get_return_status_disable;

204: --
205: p_object_version_number := null;
206: p_effective_start_date := null;
207: p_effective_end_date := null;
208: p_return_status := hr_multi_message.get_return_status_disable;
209: hr_utility.set_location(' Leaving:' || l_proc, 30);
210: when others then
211: --
212: -- When Multiple Message Detection is enabled catch

Line 219: if hr_multi_message.unexpected_error_add(l_proc) then

215: -- Multiple Message List. Otherwise re-raise the
216: -- error.
217: --
218: rollback to create_contact_extra_info_swi;
219: if hr_multi_message.unexpected_error_add(l_proc) then
220: hr_utility.set_location(' Leaving:' || l_proc,40);
221: raise;
222: end if;
223: --

Line 229: p_return_status := hr_multi_message.get_return_status_disable;

225: --
226: p_object_version_number := null;
227: p_effective_start_date := null;
228: p_effective_end_date := null;
229: p_return_status := hr_multi_message.get_return_status_disable;
230: hr_utility.set_location(' Leaving:' || l_proc,50);
231:
232: end create_contact_extra_info;
233:

Line 318: hr_multi_message.enable_message_list;

314: savepoint update_contact_extra_info_swi;
315: --
316: -- Initialise Multiple Message Detection
317: --
318: hr_multi_message.enable_message_list;
319: --
320: -- Remember IN OUT parameter IN values
321: --
322: l_object_version_number := p_object_version_number;

Line 398: p_return_status := hr_multi_message.get_return_status_disable;

394: If l_validate = TRUE Then
395: rollback to update_contact_extra_info_swi;
396: End If;
397: --
398: p_return_status := hr_multi_message.get_return_status_disable;
399: hr_utility.set_location(' Leaving:' || l_proc,20);
400: --
401: exception
402: when hr_multi_message.error_message_exist then

Line 402: when hr_multi_message.error_message_exist then

398: p_return_status := hr_multi_message.get_return_status_disable;
399: hr_utility.set_location(' Leaving:' || l_proc,20);
400: --
401: exception
402: when hr_multi_message.error_message_exist then
403: --
404: rollback to update_contact_extra_info_swi;
405: --
406: --

Line 411: p_return_status := hr_multi_message.get_return_status_disable;

407: p_object_version_number := l_object_version_number;
408: p_effective_start_date := null;
409: p_effective_end_date := null;
410:
411: p_return_status := hr_multi_message.get_return_status_disable;
412: hr_utility.set_location(' Leaving:' || l_proc, 30);
413:
414: when others then
415: --

Line 418: if hr_multi_message.unexpected_error_add(l_proc) then

414: when others then
415: --
416: rollback to update_contact_extra_info_swi;
417:
418: if hr_multi_message.unexpected_error_add(l_proc) then
419: hr_utility.set_location(' Leaving:' || l_proc,40);
420: raise;
421: end if;
422: --

Line 427: p_return_status := hr_multi_message.get_return_status_disable;

423: p_object_version_number := l_object_version_number;
424: p_effective_start_date := null;
425: p_effective_end_date := null;
426:
427: p_return_status := hr_multi_message.get_return_status_disable;
428: hr_utility.set_location(' Leaving:' || l_proc,50);
429:
430: end update_contact_extra_info;
431:

Line 460: hr_multi_message.enable_message_list;

456: hr_utility.set_location(' Entering:' || l_proc,10);
457: -- Issue a savepoint
458: savepoint delete_contact_extra_info_swi;
459: -- Initialise Multiple Message Detection
460: hr_multi_message.enable_message_list;
461: -- Convert constant values to their corresponding boolean value
462: l_validate := hr_api.constant_to_boolean (p_constant_value => p_validate);
463: --
464: -- Call API

Line 478: p_return_status := hr_multi_message.get_return_status_disable;

474: If l_validate = TRUE Then
475: rollback to delete_contact_extra_info_swi;
476: End If;
477:
478: p_return_status := hr_multi_message.get_return_status_disable;
479: hr_utility.set_location(' Leaving:' || l_proc,20);
480:
481: exception
482: when hr_multi_message.error_message_exist then

Line 482: when hr_multi_message.error_message_exist then

478: p_return_status := hr_multi_message.get_return_status_disable;
479: hr_utility.set_location(' Leaving:' || l_proc,20);
480:
481: exception
482: when hr_multi_message.error_message_exist then
483: --
484: -- Catch the Multiple Message List exception which
485: -- indicates API processing has been aborted because
486: -- at least one message exists in the list.

Line 492: p_return_status := hr_multi_message.get_return_status_disable;

488: rollback to delete_contact_extra_info_swi;
489: --
490: -- Reset IN OUT parameters and set OUT parameters
491: --
492: p_return_status := hr_multi_message.get_return_status_disable;
493: p_effective_start_date := null;
494: p_effective_end_date := null;
495:
496: hr_utility.set_location(' Leaving:' || l_proc, 30);

Line 506: if hr_multi_message.unexpected_error_add(l_proc) then

502: -- Multiple Message List. Otherwise re-raise the
503: -- error.
504: --
505: rollback to delete_contact_extra_info_swi;
506: if hr_multi_message.unexpected_error_add(l_proc) then
507: hr_utility.set_location(' Leaving:' || l_proc,40);
508: raise;
509: end if;
510: --

Line 513: p_return_status := hr_multi_message.get_return_status_disable;

509: end if;
510: --
511: -- Reset IN OUT and set OUT parameters
512: --
513: p_return_status := hr_multi_message.get_return_status_disable;
514: p_effective_start_date := null;
515: p_effective_end_date := null;
516:
517: hr_utility.set_location(' Leaving:' || l_proc,50);