DBA Data[Home] [Help]

APPS.OTA_ANNOUNCEMENT_SWI dependencies on HR_MULTI_MESSAGE

Line 63: hr_multi_message.enable_message_list;

59: savepoint create_announcement_swi;
60: --
61: -- Initialise Multiple Message Detection
62: --
63: hr_multi_message.enable_message_list;
64: --
65: -- Remember IN OUT parameter IN values
66: --
67: --

Line 127: p_return_status := hr_multi_message.get_return_status_disable;

123: -- Derive the API return status value based on whether
124: -- messages of any type exist in the Multiple Message List.
125: -- Also disable Multiple Message Detection.
126: --
127: p_return_status := hr_multi_message.get_return_status_disable;
128: hr_utility.set_location(' Leaving:' || l_proc,20);
129: --
130: exception
131: when hr_multi_message.error_message_exist then

Line 131: when hr_multi_message.error_message_exist then

127: p_return_status := hr_multi_message.get_return_status_disable;
128: hr_utility.set_location(' Leaving:' || l_proc,20);
129: --
130: exception
131: when hr_multi_message.error_message_exist then
132: --
133: -- Catch the Multiple Message List exception which
134: -- indicates API processing has been aborted because
135: -- at least one message exists in the list.

Line 142: p_return_status := hr_multi_message.get_return_status_disable;

138: --
139: -- Reset IN OUT parameters and set OUT parameters
140: --
141: p_object_version_number := null;
142: p_return_status := hr_multi_message.get_return_status_disable;
143: hr_utility.set_location(' Leaving:' || l_proc, 30);
144: when others then
145: --
146: -- When Multiple Message Detection is enabled catch

Line 153: if hr_multi_message.unexpected_error_add(l_proc) then

149: -- Multiple Message List. Otherwise re-raise the
150: -- error.
151: --
152: rollback to create_announcement_swi;
153: if hr_multi_message.unexpected_error_add(l_proc) then
154: hr_utility.set_location(' Leaving:' || l_proc,40);
155: raise;
156: end if;
157: --

Line 161: p_return_status := hr_multi_message.get_return_status_disable;

157: --
158: -- Reset IN OUT and set OUT parameters
159: --
160: p_object_version_number := null;
161: p_return_status := hr_multi_message.get_return_status_disable;
162: hr_utility.set_location(' Leaving:' || l_proc,50);
163: end create_announcement;
164: -- ----------------------------------------------------------------------------
165: -- |--------------------------< delete_announcement >-------------------------|

Line 190: hr_multi_message.enable_message_list;

186: savepoint delete_announcement_swi;
187: --
188: -- Initialise Multiple Message Detection
189: --
190: hr_multi_message.enable_message_list;
191: --
192: -- Remember IN OUT parameter IN values
193: --
194: --

Line 223: p_return_status := hr_multi_message.get_return_status_disable;

219: -- Derive the API return status value based on whether
220: -- messages of any type exist in the Multiple Message List.
221: -- Also disable Multiple Message Detection.
222: --
223: p_return_status := hr_multi_message.get_return_status_disable;
224: hr_utility.set_location(' Leaving:' || l_proc,20);
225: --
226: exception
227: when hr_multi_message.error_message_exist then

Line 227: when hr_multi_message.error_message_exist then

223: p_return_status := hr_multi_message.get_return_status_disable;
224: hr_utility.set_location(' Leaving:' || l_proc,20);
225: --
226: exception
227: when hr_multi_message.error_message_exist then
228: --
229: -- Catch the Multiple Message List exception which
230: -- indicates API processing has been aborted because
231: -- at least one message exists in the list.

Line 237: p_return_status := hr_multi_message.get_return_status_disable;

233: rollback to delete_announcement_swi;
234: --
235: -- Reset IN OUT parameters and set OUT parameters
236: --
237: p_return_status := hr_multi_message.get_return_status_disable;
238: hr_utility.set_location(' Leaving:' || l_proc, 30);
239: when others then
240: --
241: -- When Multiple Message Detection is enabled catch

Line 248: if hr_multi_message.unexpected_error_add(l_proc) then

244: -- Multiple Message List. Otherwise re-raise the
245: -- error.
246: --
247: rollback to delete_announcement_swi;
248: if hr_multi_message.unexpected_error_add(l_proc) then
249: hr_utility.set_location(' Leaving:' || l_proc,40);
250: raise;
251: end if;
252: --

Line 255: p_return_status := hr_multi_message.get_return_status_disable;

251: end if;
252: --
253: -- Reset IN OUT and set OUT parameters
254: --
255: p_return_status := hr_multi_message.get_return_status_disable;
256: hr_utility.set_location(' Leaving:' || l_proc,50);
257: end delete_announcement;
258: -- ----------------------------------------------------------------------------
259: -- |--------------------------< update_announcement >-------------------------|

Line 313: hr_multi_message.enable_message_list;

309: savepoint update_announcement_swi;
310: --
311: -- Initialise Multiple Message Detection
312: --
313: hr_multi_message.enable_message_list;
314: --
315: -- Remember IN OUT parameter IN values
316: --
317: l_object_version_number := p_object_version_number;

Line 375: p_return_status := hr_multi_message.get_return_status_disable;

371: -- Derive the API return status value based on whether
372: -- messages of any type exist in the Multiple Message List.
373: -- Also disable Multiple Message Detection.
374: --
375: p_return_status := hr_multi_message.get_return_status_disable;
376: hr_utility.set_location(' Leaving:' || l_proc,20);
377: --
378: exception
379: when hr_multi_message.error_message_exist then

Line 379: when hr_multi_message.error_message_exist then

375: p_return_status := hr_multi_message.get_return_status_disable;
376: hr_utility.set_location(' Leaving:' || l_proc,20);
377: --
378: exception
379: when hr_multi_message.error_message_exist then
380: --
381: -- Catch the Multiple Message List exception which
382: -- indicates API processing has been aborted because
383: -- at least one message exists in the list.

Line 390: p_return_status := hr_multi_message.get_return_status_disable;

386: --
387: -- Reset IN OUT parameters and set OUT parameters
388: --
389: p_object_version_number := l_object_version_number;
390: p_return_status := hr_multi_message.get_return_status_disable;
391: hr_utility.set_location(' Leaving:' || l_proc, 30);
392: when others then
393: --
394: -- When Multiple Message Detection is enabled catch

Line 401: if hr_multi_message.unexpected_error_add(l_proc) then

397: -- Multiple Message List. Otherwise re-raise the
398: -- error.
399: --
400: rollback to update_announcement_swi;
401: if hr_multi_message.unexpected_error_add(l_proc) then
402: hr_utility.set_location(' Leaving:' || l_proc,40);
403: raise;
404: end if;
405: --

Line 409: p_return_status := hr_multi_message.get_return_status_disable;

405: --
406: -- Reset IN OUT and set OUT parameters
407: --
408: p_object_version_number := l_object_version_number;
409: p_return_status := hr_multi_message.get_return_status_disable;
410: hr_utility.set_location(' Leaving:' || l_proc,50);
411: end update_announcement;
412: end ota_announcement_swi;