DBA Data[Home] [Help]

APPS.HR_PERSON_ADDRESS_SWI dependencies on HR_MULTI_MESSAGE

Line 89: hr_multi_message.enable_message_list;

85: savepoint create_person_address_swi;
86: --
87: -- Initialise Multiple Message Detection
88: --
89: hr_multi_message.enable_message_list;
90: --
91: -- Remember IN OUT parameter IN values
92: --
93: --

Line 183: p_return_status := hr_multi_message.get_return_status_disable;

179: -- Derive the API return status value based on whether
180: -- messages of any type exist in the Multiple Message List.
181: -- Also disable Multiple Message Detection.
182: --
183: p_return_status := hr_multi_message.get_return_status_disable;
184: hr_utility.set_location(' Leaving:' || l_proc,20);
185: --
186: exception
187: when hr_multi_message.error_message_exist then

Line 187: when hr_multi_message.error_message_exist then

183: p_return_status := hr_multi_message.get_return_status_disable;
184: hr_utility.set_location(' Leaving:' || l_proc,20);
185: --
186: exception
187: when hr_multi_message.error_message_exist then
188: --
189: -- Catch the Multiple Message List exception which
190: -- indicates API processing has been aborted because
191: -- at least one error message exists in the list.

Line 198: p_return_status := hr_multi_message.get_return_status_disable;

194: --
195: -- Reset IN OUT paramters and set OUT parameters
196: --
197: p_object_version_number := null;
198: p_return_status := hr_multi_message.get_return_status_disable;
199: hr_utility.set_location(' Leaving:' || l_proc,30);
200: when others then
201: --
202: -- When Multiple Message Detection is enabled catch

Line 209: if hr_multi_message.unexpected_error_add(l_proc) then

205: -- Multiple Message List. Otherwise re-raise
206: -- the error.
207: --
208: rollback to create_person_address_swi;
209: if hr_multi_message.unexpected_error_add(l_proc) then
210: hr_utility.set_location(' Leaving:' || l_proc, 40);
211: raise;
212: end if;
213: --

Line 217: p_return_status := hr_multi_message.get_return_status_disable;

213: --
214: -- Reset IN OUT parameters and set OUT parameters
215: --
216: p_object_version_number := null;
217: p_return_status := hr_multi_message.get_return_status_disable;
218: hr_utility.set_location(' Leaving: ' || l_proc, 50);
219: end create_person_address;
220: -- ----------------------------------------------------------------------------
221: -- |-------------------------< update_person_address >------------------------|

Line 297: hr_multi_message.enable_message_list;

293: savepoint update_person_address_swi;
294: --
295: -- Initialise Multiple Message Detection
296: --
297: hr_multi_message.enable_message_list;
298: --
299: -- Remember IN OUT parameter IN values
300: --
301: l_object_version_number := p_object_version_number;

Line 383: p_return_status := hr_multi_message.get_return_status_disable;

379: -- Derive the API return status value based on whether
380: -- messages of any type exist in the Multiple Message List.
381: -- Also disable Multiple Message Detection.
382: --
383: p_return_status := hr_multi_message.get_return_status_disable;
384: hr_utility.set_location(' Leaving:' || l_proc,20);
385: --
386: exception
387: when hr_multi_message.error_message_exist then

Line 387: when hr_multi_message.error_message_exist then

383: p_return_status := hr_multi_message.get_return_status_disable;
384: hr_utility.set_location(' Leaving:' || l_proc,20);
385: --
386: exception
387: when hr_multi_message.error_message_exist then
388: --
389: -- Catch the Multiple Message List exception which
390: -- indicates API processing has been aborted because
391: -- at least one error message exists in the list.

Line 398: p_return_status := hr_multi_message.get_return_status_disable;

394: --
395: -- Reset IN OUT paramters and set OUT parameters
396: --
397: p_object_version_number := l_object_version_number;
398: p_return_status := hr_multi_message.get_return_status_disable;
399: hr_utility.set_location(' Leaving:' || l_proc,30);
400: when others then
401: --
402: -- When Multiple Message Detection is enabled catch

Line 409: if hr_multi_message.unexpected_error_add(l_proc) then

405: -- Multiple Message List. Otherwise re-raise
406: -- the error.
407: --
408: rollback to update_person_address_swi;
409: if hr_multi_message.unexpected_error_add(l_proc) then
410: hr_utility.set_location(' Leaving:' || l_proc, 40);
411: raise;
412: end if;
413: --

Line 417: p_return_status := hr_multi_message.get_return_status_disable;

413: --
414: -- Reset IN OUT parameters and set OUT parameters
415: --
416: p_object_version_number := l_object_version_number;
417: p_return_status := hr_multi_message.get_return_status_disable;
418: hr_utility.set_location(' Leaving: ' || l_proc, 50);
419: end update_person_address;
420: end hr_person_address_swi;