DBA Data[Home] [Help]

APPS.OTA_CHAT_SWI dependencies on HR_MULTI_MESSAGE

Line 45: hr_multi_message.enable_message_list;

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

Line 89: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 93: when hr_multi_message.error_message_exist then

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

Line 105: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 116: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 125: p_return_status := hr_multi_message.get_return_status_disable;

121: -- Reset IN OUT and set OUT parameters
122: --
123: l_chat_id := null;
124: p_object_version_number := null;
125: p_return_status := hr_multi_message.get_return_status_disable;
126: hr_utility.set_location(' Leaving:' || l_proc,50);
127: end create_chat;
128: -- ----------------------------------------------------------------------------
129: -- |------------------------------< update_chat >-----------------------------|

Line 165: hr_multi_message.enable_message_list;

161: savepoint update_chat_swi;
162: --
163: -- Initialise Multiple Message Detection
164: --
165: hr_multi_message.enable_message_list;
166: --
167: -- Remember IN OUT parameter IN values
168: --
169: l_object_version_number := p_object_version_number;

Line 209: p_return_status := hr_multi_message.get_return_status_disable;

205: -- Derive the API return status value based on whether
206: -- messages of any type exist in the Multiple Message List.
207: -- Also disable Multiple Message Detection.
208: --
209: p_return_status := hr_multi_message.get_return_status_disable;
210: hr_utility.set_location(' Leaving:' || l_proc,20);
211: --
212: exception
213: when hr_multi_message.error_message_exist then

Line 213: when hr_multi_message.error_message_exist then

209: p_return_status := hr_multi_message.get_return_status_disable;
210: hr_utility.set_location(' Leaving:' || l_proc,20);
211: --
212: exception
213: when hr_multi_message.error_message_exist then
214: --
215: -- Catch the Multiple Message List exception which
216: -- indicates API processing has been aborted because
217: -- at least one message exists in the list.

Line 224: p_return_status := hr_multi_message.get_return_status_disable;

220: --
221: -- Reset IN OUT parameters and set OUT parameters
222: --
223: p_object_version_number := l_object_version_number;
224: p_return_status := hr_multi_message.get_return_status_disable;
225: hr_utility.set_location(' Leaving:' || l_proc, 30);
226: when others then
227: --
228: -- When Multiple Message Detection is enabled catch

Line 235: if hr_multi_message.unexpected_error_add(l_proc) then

231: -- Multiple Message List. Otherwise re-raise the
232: -- error.
233: --
234: rollback to update_chat_swi;
235: if hr_multi_message.unexpected_error_add(l_proc) then
236: hr_utility.set_location(' Leaving:' || l_proc,40);
237: raise;
238: end if;
239: --

Line 243: p_return_status := hr_multi_message.get_return_status_disable;

239: --
240: -- Reset IN OUT and set OUT parameters
241: --
242: p_object_version_number := l_object_version_number;
243: p_return_status := hr_multi_message.get_return_status_disable;
244: hr_utility.set_location(' Leaving:' || l_proc,50);
245: end update_chat;
246: -- ----------------------------------------------------------------------------
247: -- |------------------------------< delete_chat >-----------------------------|

Line 272: hr_multi_message.enable_message_list;

268: savepoint delete_chat_swi;
269: --
270: -- Initialise Multiple Message Detection
271: --
272: hr_multi_message.enable_message_list;
273: --
274: -- Remember IN OUT parameter IN values
275: --
276: --

Line 305: p_return_status := hr_multi_message.get_return_status_disable;

301: -- Derive the API return status value based on whether
302: -- messages of any type exist in the Multiple Message List.
303: -- Also disable Multiple Message Detection.
304: --
305: p_return_status := hr_multi_message.get_return_status_disable;
306: hr_utility.set_location(' Leaving:' || l_proc,20);
307: --
308: exception
309: when hr_multi_message.error_message_exist then

Line 309: when hr_multi_message.error_message_exist then

305: p_return_status := hr_multi_message.get_return_status_disable;
306: hr_utility.set_location(' Leaving:' || l_proc,20);
307: --
308: exception
309: when hr_multi_message.error_message_exist then
310: --
311: -- Catch the Multiple Message List exception which
312: -- indicates API processing has been aborted because
313: -- at least one message exists in the list.

Line 319: p_return_status := hr_multi_message.get_return_status_disable;

315: rollback to delete_chat_swi;
316: --
317: -- Reset IN OUT parameters and set OUT parameters
318: --
319: p_return_status := hr_multi_message.get_return_status_disable;
320: hr_utility.set_location(' Leaving:' || l_proc, 30);
321: when others then
322: --
323: -- When Multiple Message Detection is enabled catch

Line 330: if hr_multi_message.unexpected_error_add(l_proc) then

326: -- Multiple Message List. Otherwise re-raise the
327: -- error.
328: --
329: rollback to delete_chat_swi;
330: if hr_multi_message.unexpected_error_add(l_proc) then
331: hr_utility.set_location(' Leaving:' || l_proc,40);
332: raise;
333: end if;
334: --

Line 337: p_return_status := hr_multi_message.get_return_status_disable;

333: end if;
334: --
335: -- Reset IN OUT and set OUT parameters
336: --
337: p_return_status := hr_multi_message.get_return_status_disable;
338: hr_utility.set_location(' Leaving:' || l_proc,50);
339: end delete_chat;
340: end ota_chat_swi;