DBA Data[Home] [Help]

APPS.OTA_CHAT_MESSAGE_SWI dependencies on HR_UTILITY

Line 35: hr_utility.set_location(' Entering:' || l_proc,10);

31: -- Other variables
32: l_chat_message_id number;
33: l_proc varchar2(72) := g_package ||'create_chat_message';
34: Begin
35: hr_utility.set_location(' Entering:' || l_proc,10);
36: --
37: -- Issue a savepoint
38: --
39: savepoint create_chat_message_swi;

Line 88: hr_utility.set_location(' Leaving:' || l_proc,20);

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

Line 103: hr_utility.set_location(' Leaving:' || l_proc, 30);

99: -- Reset IN OUT parameters and set OUT parameters
100: --
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
107: -- any Application specific or other unexpected

Line 114: hr_utility.set_location(' Leaving:' || l_proc,40);

110: -- error.
111: --
112: rollback to create_chat_message_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: --
118: -- Reset IN OUT and set OUT parameters

Line 122: hr_utility.set_location(' Leaving:' || l_proc,50);

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

Line 154: hr_utility.set_location(' Entering:' || l_proc,10);

150: l_effective_date date := trunc(p_effective_date);
151: l_object_version_number number := p_object_version_number;
152: l_proc varchar2(72) := g_package ||'update_chat_message';
153: Begin
154: hr_utility.set_location(' Entering:' || l_proc,10);
155: --
156: -- Issue a savepoint
157: --
158: savepoint update_chat_message_swi;

Line 201: hr_utility.set_location(' Leaving:' || l_proc,20);

197: -- messages of any type exist in the Multiple Message List.
198: -- Also disable Multiple Message Detection.
199: --
200: p_return_status := hr_multi_message.get_return_status_disable;
201: hr_utility.set_location(' Leaving:' || l_proc,20);
202: --
203: exception
204: when hr_multi_message.error_message_exist then
205: --

Line 216: hr_utility.set_location(' Leaving:' || l_proc, 30);

212: -- Reset IN OUT parameters and set OUT parameters
213: --
214: p_object_version_number := l_object_version_number;
215: p_return_status := hr_multi_message.get_return_status_disable;
216: hr_utility.set_location(' Leaving:' || l_proc, 30);
217: when others then
218: --
219: -- When Multiple Message Detection is enabled catch
220: -- any Application specific or other unexpected

Line 227: hr_utility.set_location(' Leaving:' || l_proc,40);

223: -- error.
224: --
225: rollback to update_chat_message_swi;
226: if hr_multi_message.unexpected_error_add(l_proc) then
227: hr_utility.set_location(' Leaving:' || l_proc,40);
228: raise;
229: end if;
230: --
231: -- Reset IN OUT and set OUT parameters

Line 235: hr_utility.set_location(' Leaving:' || l_proc,50);

231: -- Reset IN OUT and set OUT parameters
232: --
233: p_object_version_number := l_object_version_number;
234: p_return_status := hr_multi_message.get_return_status_disable;
235: hr_utility.set_location(' Leaving:' || l_proc,50);
236: end update_chat_message;
237: -- ----------------------------------------------------------------------------
238: -- |--------------------------< delete_chat_message >-------------------------|
239: -- ----------------------------------------------------------------------------

Line 255: hr_utility.set_location(' Entering:' || l_proc,10);

251: --
252: -- Other variables
253: l_proc varchar2(72) := g_package ||'delete_chat_message';
254: Begin
255: hr_utility.set_location(' Entering:' || l_proc,10);
256: --
257: -- Issue a savepoint
258: --
259: savepoint delete_chat_message_swi;

Line 297: hr_utility.set_location(' Leaving:' || l_proc,20);

293: -- messages of any type exist in the Multiple Message List.
294: -- Also disable Multiple Message Detection.
295: --
296: p_return_status := hr_multi_message.get_return_status_disable;
297: hr_utility.set_location(' Leaving:' || l_proc,20);
298: --
299: exception
300: when hr_multi_message.error_message_exist then
301: --

Line 311: hr_utility.set_location(' Leaving:' || l_proc, 30);

307: --
308: -- Reset IN OUT parameters and set OUT parameters
309: --
310: p_return_status := hr_multi_message.get_return_status_disable;
311: hr_utility.set_location(' Leaving:' || l_proc, 30);
312: when others then
313: --
314: -- When Multiple Message Detection is enabled catch
315: -- any Application specific or other unexpected

Line 322: hr_utility.set_location(' Leaving:' || l_proc,40);

318: -- error.
319: --
320: rollback to delete_chat_message_swi;
321: if hr_multi_message.unexpected_error_add(l_proc) then
322: hr_utility.set_location(' Leaving:' || l_proc,40);
323: raise;
324: end if;
325: --
326: -- Reset IN OUT and set OUT parameters

Line 329: hr_utility.set_location(' Leaving:' || l_proc,50);

325: --
326: -- Reset IN OUT and set OUT parameters
327: --
328: p_return_status := hr_multi_message.get_return_status_disable;
329: hr_utility.set_location(' Leaving:' || l_proc,50);
330: end delete_chat_message;
331: end ota_chat_message_swi;