DBA Data[Home] [Help]

APPS.HR_PARTICIPANTS_SWI dependencies on HR_MULTI_MESSAGE

Line 69: hr_multi_message.enable_message_list;

65: savepoint create_participant_swi;
66: --
67: -- Initialise Multiple Message Detection
68: --
69: hr_multi_message.enable_message_list;
70: --
71: -- Remember IN OUT parameter IN values
72: --
73: --

Line 139: p_return_status := hr_multi_message.get_return_status_disable;

135: -- Derive the API return status value based on whether
136: -- messages of any type exist in the Multiple Message List.
137: -- Also disable Multiple Message Detection.
138: --
139: p_return_status := hr_multi_message.get_return_status_disable;
140: hr_utility.set_location(' Leaving:' || l_proc,20);
141: --
142: exception
143: when hr_multi_message.error_message_exist then

Line 143: when hr_multi_message.error_message_exist then

139: p_return_status := hr_multi_message.get_return_status_disable;
140: hr_utility.set_location(' Leaving:' || l_proc,20);
141: --
142: exception
143: when hr_multi_message.error_message_exist then
144: --
145: -- Catch the Multiple Message List exception which
146: -- indicates API processing has been aborted because
147: -- at least one message exists in the list.

Line 154: p_return_status := hr_multi_message.get_return_status_disable;

150: --
151: -- Reset IN OUT parameters and set OUT parameters
152: --
153: p_object_version_number := null;
154: p_return_status := hr_multi_message.get_return_status_disable;
155: hr_utility.set_location(' Leaving:' || l_proc, 30);
156: when others then
157: --
158: -- When Multiple Message Detection is enabled catch

Line 165: if hr_multi_message.unexpected_error_add(l_proc) then

161: -- Multiple Message List. Otherwise re-raise the
162: -- error.
163: --
164: rollback to create_participant_swi;
165: if hr_multi_message.unexpected_error_add(l_proc) then
166: hr_utility.set_location(' Leaving:' || l_proc,40);
167: raise;
168: end if;
169: --

Line 173: p_return_status := hr_multi_message.get_return_status_disable;

169: --
170: -- Reset IN OUT and set OUT parameters
171: --
172: p_object_version_number := null;
173: p_return_status := hr_multi_message.get_return_status_disable;
174: hr_utility.set_location(' Leaving:' || l_proc,50);
175: end create_participant;
176: -- ----------------------------------------------------------------------------
177: -- |--------------------------< delete_participant >--------------------------|

Line 202: hr_multi_message.enable_message_list;

198: savepoint delete_participant_swi;
199: --
200: -- Initialise Multiple Message Detection
201: --
202: hr_multi_message.enable_message_list;
203: --
204: -- Remember IN OUT parameter IN values
205: --
206: --

Line 235: p_return_status := hr_multi_message.get_return_status_disable;

231: -- Derive the API return status value based on whether
232: -- messages of any type exist in the Multiple Message List.
233: -- Also disable Multiple Message Detection.
234: --
235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc,20);
237: --
238: exception
239: when hr_multi_message.error_message_exist then

Line 239: when hr_multi_message.error_message_exist then

235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc,20);
237: --
238: exception
239: when hr_multi_message.error_message_exist then
240: --
241: -- Catch the Multiple Message List exception which
242: -- indicates API processing has been aborted because
243: -- at least one message exists in the list.

Line 249: p_return_status := hr_multi_message.get_return_status_disable;

245: rollback to delete_participant_swi;
246: --
247: -- Reset IN OUT parameters and set OUT parameters
248: --
249: p_return_status := hr_multi_message.get_return_status_disable;
250: hr_utility.set_location(' Leaving:' || l_proc, 30);
251: when others then
252: --
253: -- When Multiple Message Detection is enabled catch

Line 260: if hr_multi_message.unexpected_error_add(l_proc) then

256: -- Multiple Message List. Otherwise re-raise the
257: -- error.
258: --
259: rollback to delete_participant_swi;
260: if hr_multi_message.unexpected_error_add(l_proc) then
261: hr_utility.set_location(' Leaving:' || l_proc,40);
262: raise;
263: end if;
264: --

Line 267: p_return_status := hr_multi_message.get_return_status_disable;

263: end if;
264: --
265: -- Reset IN OUT and set OUT parameters
266: --
267: p_return_status := hr_multi_message.get_return_status_disable;
268: hr_utility.set_location(' Leaving:' || l_proc,50);
269: end delete_participant;
270: -- ----------------------------------------------------------------------------
271: -- |--------------------------< update_participant >--------------------------|

Line 327: hr_multi_message.enable_message_list;

323: savepoint update_participant_swi;
324: --
325: -- Initialise Multiple Message Detection
326: --
327: hr_multi_message.enable_message_list;
328: --
329: -- Remember IN OUT parameter IN values
330: --
331: l_object_version_number := p_object_version_number;

Line 391: p_return_status := hr_multi_message.get_return_status_disable;

387: -- Derive the API return status value based on whether
388: -- messages of any type exist in the Multiple Message List.
389: -- Also disable Multiple Message Detection.
390: --
391: p_return_status := hr_multi_message.get_return_status_disable;
392: hr_utility.set_location(' Leaving:' || l_proc,20);
393: --
394: exception
395: when hr_multi_message.error_message_exist then

Line 395: when hr_multi_message.error_message_exist then

391: p_return_status := hr_multi_message.get_return_status_disable;
392: hr_utility.set_location(' Leaving:' || l_proc,20);
393: --
394: exception
395: when hr_multi_message.error_message_exist then
396: --
397: -- Catch the Multiple Message List exception which
398: -- indicates API processing has been aborted because
399: -- at least one message exists in the list.

Line 406: p_return_status := hr_multi_message.get_return_status_disable;

402: --
403: -- Reset IN OUT parameters and set OUT parameters
404: --
405: p_object_version_number := l_object_version_number;
406: p_return_status := hr_multi_message.get_return_status_disable;
407: hr_utility.set_location(' Leaving:' || l_proc, 30);
408: when others then
409: --
410: -- When Multiple Message Detection is enabled catch

Line 417: if hr_multi_message.unexpected_error_add(l_proc) then

413: -- Multiple Message List. Otherwise re-raise the
414: -- error.
415: --
416: rollback to update_participant_swi;
417: if hr_multi_message.unexpected_error_add(l_proc) then
418: hr_utility.set_location(' Leaving:' || l_proc,40);
419: raise;
420: end if;
421: --

Line 425: p_return_status := hr_multi_message.get_return_status_disable;

421: --
422: -- Reset IN OUT and set OUT parameters
423: --
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,50);
427: end update_participant;
428:
429: -- ----------------------------------------------------------------------------