DBA Data[Home] [Help]

APPS.OTA_FORUM_THREAD_SWI dependencies on HR_MULTI_MESSAGE

Line 42: hr_multi_message.enable_message_list;

38: savepoint create_forum_thread_swi;
39: --
40: -- Initialise Multiple Message Detection
41: --
42: hr_multi_message.enable_message_list;
43: --
44: -- Remember IN OUT parameter IN values
45: --
46: --

Line 86: p_return_status := hr_multi_message.get_return_status_disable;

82: -- Derive the API return status value based on whether
83: -- messages of any type exist in the Multiple Message List.
84: -- Also disable Multiple Message Detection.
85: --
86: p_return_status := hr_multi_message.get_return_status_disable;
87: hr_utility.set_location(' Leaving:' || l_proc,20);
88: --
89: exception
90: when hr_multi_message.error_message_exist then

Line 90: when hr_multi_message.error_message_exist then

86: p_return_status := hr_multi_message.get_return_status_disable;
87: hr_utility.set_location(' Leaving:' || l_proc,20);
88: --
89: exception
90: when hr_multi_message.error_message_exist then
91: --
92: -- Catch the Multiple Message List exception which
93: -- indicates API processing has been aborted because
94: -- at least one message exists in the list.

Line 102: p_return_status := hr_multi_message.get_return_status_disable;

98: -- Reset IN OUT parameters and set OUT parameters
99: --
100: l_forum_thread_id := null;
101: p_object_version_number := null;
102: p_return_status := hr_multi_message.get_return_status_disable;
103: hr_utility.set_location(' Leaving:' || l_proc, 30);
104: when others then
105: --
106: -- When Multiple Message Detection is enabled catch

Line 113: if hr_multi_message.unexpected_error_add(l_proc) then

109: -- Multiple Message List. Otherwise re-raise the
110: -- error.
111: --
112: rollback to create_forum_thread_swi;
113: if hr_multi_message.unexpected_error_add(l_proc) then
114: hr_utility.set_location(' Leaving:' || l_proc,40);
115: raise;
116: end if;
117: --

Line 122: p_return_status := hr_multi_message.get_return_status_disable;

118: -- Reset IN OUT and set OUT parameters
119: --
120: l_forum_thread_id := null;
121: p_object_version_number := null;
122: p_return_status := hr_multi_message.get_return_status_disable;
123: hr_utility.set_location(' Leaving:' || l_proc,50);
124: end create_forum_thread;
125: --
126: -- ----------------------------------------------------------------------------

Line 161: hr_multi_message.enable_message_list;

157: savepoint update_forum_thread_swi;
158: --
159: -- Initialise Multiple Message Detection
160: --
161: hr_multi_message.enable_message_list;
162: --
163: -- Remember IN OUT parameter IN values
164: --
165: --

Line 198: p_return_status := hr_multi_message.get_return_status_disable;

194: -- Derive the API return status value based on whether
195: -- messages of any type exist in the Multiple Message List.
196: -- Also disable Multiple Message Detection.
197: --
198: p_return_status := hr_multi_message.get_return_status_disable;
199: hr_utility.set_location(' Leaving:' || l_proc,20);
200: --
201: exception
202: when hr_multi_message.error_message_exist then

Line 202: when hr_multi_message.error_message_exist then

198: p_return_status := hr_multi_message.get_return_status_disable;
199: hr_utility.set_location(' Leaving:' || l_proc,20);
200: --
201: exception
202: when hr_multi_message.error_message_exist then
203: --
204: -- Catch the Multiple Message List exception which
205: -- indicates API processing has been aborted because
206: -- at least one message exists in the list.

Line 213: p_return_status := hr_multi_message.get_return_status_disable;

209: --
210: -- Reset IN OUT parameters and set OUT parameters
211: --
212: p_object_version_number := null;
213: p_return_status := hr_multi_message.get_return_status_disable;
214: hr_utility.set_location(' Leaving:' || l_proc, 30);
215: when others then
216: --
217: -- When Multiple Message Detection is enabled catch

Line 224: if hr_multi_message.unexpected_error_add(l_proc) then

220: -- Multiple Message List. Otherwise re-raise the
221: -- error.
222: --
223: rollback to update_forum_thread_swi;
224: if hr_multi_message.unexpected_error_add(l_proc) then
225: hr_utility.set_location(' Leaving:' || l_proc,40);
226: raise;
227: end if;
228: --

Line 232: p_return_status := hr_multi_message.get_return_status_disable;

228: --
229: -- Reset IN OUT and set OUT parameters
230: --
231: p_object_version_number := null;
232: p_return_status := hr_multi_message.get_return_status_disable;
233: hr_utility.set_location(' Leaving:' || l_proc,50);
234: end update_forum_thread;
235:
236: -- ----------------------------------------------------------------------------

Line 262: hr_multi_message.enable_message_list;

258: savepoint delete_forum_thread_swi;
259: --
260: -- Initialise Multiple Message Detection
261: --
262: hr_multi_message.enable_message_list;
263: --
264: -- Remember IN OUT parameter IN values
265: --
266: --

Line 295: p_return_status := hr_multi_message.get_return_status_disable;

291: -- Derive the API return status value based on whether
292: -- messages of any type exist in the Multiple Message List.
293: -- Also disable Multiple Message Detection.
294: --
295: p_return_status := hr_multi_message.get_return_status_disable;
296: hr_utility.set_location(' Leaving:' || l_proc,20);
297: --
298: exception
299: when hr_multi_message.error_message_exist then

Line 299: when hr_multi_message.error_message_exist then

295: p_return_status := hr_multi_message.get_return_status_disable;
296: hr_utility.set_location(' Leaving:' || l_proc,20);
297: --
298: exception
299: when hr_multi_message.error_message_exist then
300: --
301: -- Catch the Multiple Message List exception which
302: -- indicates API processing has been aborted because
303: -- at least one message exists in the list.

Line 309: p_return_status := hr_multi_message.get_return_status_disable;

305: rollback to delete_forum_thread_swi;
306: --
307: -- Reset IN OUT parameters and set OUT parameters
308: --
309: p_return_status := hr_multi_message.get_return_status_disable;
310: hr_utility.set_location(' Leaving:' || l_proc, 30);
311: when others then
312: --
313: -- When Multiple Message Detection is enabled catch

Line 320: if hr_multi_message.unexpected_error_add(l_proc) then

316: -- Multiple Message List. Otherwise re-raise the
317: -- error.
318: --
319: rollback to delete_forum_thread_swi;
320: if hr_multi_message.unexpected_error_add(l_proc) then
321: hr_utility.set_location(' Leaving:' || l_proc,40);
322: raise;
323: end if;
324: --

Line 327: p_return_status := hr_multi_message.get_return_status_disable;

323: end if;
324: --
325: -- Reset IN OUT and set OUT parameters
326: --
327: p_return_status := hr_multi_message.get_return_status_disable;
328: hr_utility.set_location(' Leaving:' || l_proc,50);
329: end delete_forum_thread;
330: end ota_forum_thread_swi;