DBA Data[Home] [Help]

APPS.OTA_CATEGORY_USAGE_SWI dependencies on HR_MULTI_MESSAGE

Line 69: hr_multi_message.enable_message_list;

65: savepoint create_category_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_category_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_category;
176: -- ----------------------------------------------------------------------------
177: -- |----------------------------< delete_category >---------------------------|

Line 202: hr_multi_message.enable_message_list;

198: savepoint delete_category_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_category_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_category_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_category;
270: -- ----------------------------------------------------------------------------
271: -- |----------------------------< update_category >---------------------------|

Line 329: hr_multi_message.enable_message_list;

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

Line 395: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 399: when hr_multi_message.error_message_exist then

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

Line 410: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 421: if hr_multi_message.unexpected_error_add(l_proc) then

417: -- Multiple Message List. Otherwise re-raise the
418: -- error.
419: --
420: rollback to update_category_swi;
421: if hr_multi_message.unexpected_error_add(l_proc) then
422: hr_utility.set_location(' Leaving:' || l_proc,40);
423: raise;
424: end if;
425: --

Line 429: p_return_status := hr_multi_message.get_return_status_disable;

425: --
426: -- Reset IN OUT and set OUT parameters
427: --
428: p_object_version_number := l_object_version_number;
429: p_return_status := hr_multi_message.get_return_status_disable;
430: hr_utility.set_location(' Leaving:' || l_proc,50);
431: end update_category;
432: --
433: end ota_category_usage_swi;