DBA Data[Home] [Help]

APPS.OTA_CATEGORY_USAGE_SWI dependencies on HR_MULTI_MESSAGE

Line 68: hr_multi_message.enable_message_list;

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

Line 137: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 141: when hr_multi_message.error_message_exist then

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

Line 152: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 163: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 171: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 200: hr_multi_message.enable_message_list;

196: savepoint delete_category_swi;
197: --
198: -- Initialise Multiple Message Detection
199: --
200: hr_multi_message.enable_message_list;
201: --
202: -- Remember IN OUT parameter IN values
203: --
204: --

Line 233: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 237: when hr_multi_message.error_message_exist then

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

Line 247: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 258: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 265: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 327: hr_multi_message.enable_message_list;

323: savepoint update_category_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 393: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 397: when hr_multi_message.error_message_exist then

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

Line 408: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 419: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 427: p_return_status := hr_multi_message.get_return_status_disable;

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