DBA Data[Home] [Help]

APPS.OTA_FORUM_SWI dependencies on HR_MULTI_MESSAGE

Line 46: hr_multi_message.enable_message_list;

42: savepoint create_forum_swi;
43: --
44: -- Initialise Multiple Message Detection
45: --
46: hr_multi_message.enable_message_list;
47: --
48: -- Remember IN OUT parameter IN values
49: --
50: --

Line 94: p_return_status := hr_multi_message.get_return_status_disable;

90: -- Derive the API return status value based on whether
91: -- messages of any type exist in the Multiple Message List.
92: -- Also disable Multiple Message Detection.
93: --
94: p_return_status := hr_multi_message.get_return_status_disable;
95: hr_utility.set_location(' Leaving:' || l_proc,20);
96: --
97: exception
98: when hr_multi_message.error_message_exist then

Line 98: when hr_multi_message.error_message_exist then

94: p_return_status := hr_multi_message.get_return_status_disable;
95: hr_utility.set_location(' Leaving:' || l_proc,20);
96: --
97: exception
98: when hr_multi_message.error_message_exist then
99: --
100: -- Catch the Multiple Message List exception which
101: -- indicates API processing has been aborted because
102: -- at least one message exists in the list.

Line 110: p_return_status := hr_multi_message.get_return_status_disable;

106: -- Reset IN OUT parameters and set OUT parameters
107: --
108: l_forum_id := null;
109: p_object_version_number := null;
110: p_return_status := hr_multi_message.get_return_status_disable;
111: hr_utility.set_location(' Leaving:' || l_proc, 30);
112: when others then
113: --
114: -- When Multiple Message Detection is enabled catch

Line 121: if hr_multi_message.unexpected_error_add(l_proc) then

117: -- Multiple Message List. Otherwise re-raise the
118: -- error.
119: --
120: rollback to create_forum_swi;
121: if hr_multi_message.unexpected_error_add(l_proc) then
122: hr_utility.set_location(' Leaving:' || l_proc,40);
123: raise;
124: end if;
125: --

Line 130: p_return_status := hr_multi_message.get_return_status_disable;

126: -- Reset IN OUT and set OUT parameters
127: --
128: l_forum_id := null;
129: p_object_version_number := null;
130: p_return_status := hr_multi_message.get_return_status_disable;
131: hr_utility.set_location(' Leaving:' || l_proc,50);
132: end create_forum;
133: -- ----------------------------------------------------------------------------
134: -- |-----------------------------< update_forum >-----------------------------|

Line 171: hr_multi_message.enable_message_list;

167: savepoint update_forum_swi;
168: --
169: -- Initialise Multiple Message Detection
170: --
171: hr_multi_message.enable_message_list;
172: --
173: -- Remember IN OUT parameter IN values
174: --
175: l_object_version_number := p_object_version_number;

Line 216: p_return_status := hr_multi_message.get_return_status_disable;

212: -- Derive the API return status value based on whether
213: -- messages of any type exist in the Multiple Message List.
214: -- Also disable Multiple Message Detection.
215: --
216: p_return_status := hr_multi_message.get_return_status_disable;
217: hr_utility.set_location(' Leaving:' || l_proc,20);
218: --
219: exception
220: when hr_multi_message.error_message_exist then

Line 220: when hr_multi_message.error_message_exist then

216: p_return_status := hr_multi_message.get_return_status_disable;
217: hr_utility.set_location(' Leaving:' || l_proc,20);
218: --
219: exception
220: when hr_multi_message.error_message_exist then
221: --
222: -- Catch the Multiple Message List exception which
223: -- indicates API processing has been aborted because
224: -- at least one message exists in the list.

Line 231: p_return_status := hr_multi_message.get_return_status_disable;

227: --
228: -- Reset IN OUT parameters and set OUT parameters
229: --
230: p_object_version_number := l_object_version_number;
231: p_return_status := hr_multi_message.get_return_status_disable;
232: hr_utility.set_location(' Leaving:' || l_proc, 30);
233: when others then
234: --
235: -- When Multiple Message Detection is enabled catch

Line 242: if hr_multi_message.unexpected_error_add(l_proc) then

238: -- Multiple Message List. Otherwise re-raise the
239: -- error.
240: --
241: rollback to update_forum_swi;
242: if hr_multi_message.unexpected_error_add(l_proc) then
243: hr_utility.set_location(' Leaving:' || l_proc,40);
244: raise;
245: end if;
246: --

Line 250: p_return_status := hr_multi_message.get_return_status_disable;

246: --
247: -- Reset IN OUT and set OUT parameters
248: --
249: p_object_version_number := l_object_version_number;
250: p_return_status := hr_multi_message.get_return_status_disable;
251: hr_utility.set_location(' Leaving:' || l_proc,50);
252: end update_forum;
253: -- ----------------------------------------------------------------------------
254: -- |-----------------------------< delete_forum >-----------------------------|

Line 279: hr_multi_message.enable_message_list;

275: savepoint delete_forum_swi;
276: --
277: -- Initialise Multiple Message Detection
278: --
279: hr_multi_message.enable_message_list;
280: --
281: -- Remember IN OUT parameter IN values
282: --
283: --

Line 312: p_return_status := hr_multi_message.get_return_status_disable;

308: -- Derive the API return status value based on whether
309: -- messages of any type exist in the Multiple Message List.
310: -- Also disable Multiple Message Detection.
311: --
312: p_return_status := hr_multi_message.get_return_status_disable;
313: hr_utility.set_location(' Leaving:' || l_proc,20);
314: --
315: exception
316: when hr_multi_message.error_message_exist then

Line 316: when hr_multi_message.error_message_exist then

312: p_return_status := hr_multi_message.get_return_status_disable;
313: hr_utility.set_location(' Leaving:' || l_proc,20);
314: --
315: exception
316: when hr_multi_message.error_message_exist then
317: --
318: -- Catch the Multiple Message List exception which
319: -- indicates API processing has been aborted because
320: -- at least one message exists in the list.

Line 326: p_return_status := hr_multi_message.get_return_status_disable;

322: rollback to delete_forum_swi;
323: --
324: -- Reset IN OUT parameters and set OUT parameters
325: --
326: p_return_status := hr_multi_message.get_return_status_disable;
327: hr_utility.set_location(' Leaving:' || l_proc, 30);
328: when others then
329: --
330: -- When Multiple Message Detection is enabled catch

Line 337: if hr_multi_message.unexpected_error_add(l_proc) then

333: -- Multiple Message List. Otherwise re-raise the
334: -- error.
335: --
336: rollback to delete_forum_swi;
337: if hr_multi_message.unexpected_error_add(l_proc) then
338: hr_utility.set_location(' Leaving:' || l_proc,40);
339: raise;
340: end if;
341: --

Line 344: p_return_status := hr_multi_message.get_return_status_disable;

340: end if;
341: --
342: -- Reset IN OUT and set OUT parameters
343: --
344: p_return_status := hr_multi_message.get_return_status_disable;
345: hr_utility.set_location(' Leaving:' || l_proc,50);
346: end delete_forum;
347: end ota_forum_swi;