DBA Data[Home] [Help]

APPS.OTA_BKNG_JUSTIFICATION_SWI dependencies on HR_MULTI_MESSAGE

Line 41: hr_multi_message.enable_message_list;

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

Line 83: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 87: when hr_multi_message.error_message_exist then

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

Line 98: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 109: if hr_multi_message.unexpected_error_add(l_proc) then

105: -- Multiple Message List. Otherwise re-raise the
106: -- error.
107: --
108: rollback to create_bkng_justification_swi;
109: if hr_multi_message.unexpected_error_add(l_proc) then
110: hr_utility.set_location(' Leaving:' || l_proc,40);
111: raise;
112: end if;
113: --

Line 117: p_return_status := hr_multi_message.get_return_status_disable;

113: --
114: -- Reset IN OUT and set OUT parameters
115: --
116: p_object_version_number := null;
117: p_return_status := hr_multi_message.get_return_status_disable;
118: hr_utility.set_location(' Leaving:' || l_proc,50);
119: end create_booking_justification;
120: -- ----------------------------------------------------------------------------
121: -- |---------------------< update_booking_justification >---------------------|

Line 153: hr_multi_message.enable_message_list;

149: savepoint update_bkng_justification_swi;
150: --
151: -- Initialise Multiple Message Detection
152: --
153: hr_multi_message.enable_message_list;
154: --
155: -- Remember IN OUT parameter IN values
156: --
157: l_object_version_number := p_object_version_number;

Line 193: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 197: when hr_multi_message.error_message_exist then

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

Line 208: p_return_status := hr_multi_message.get_return_status_disable;

204: --
205: -- Reset IN OUT parameters and set OUT parameters
206: --
207: p_object_version_number := l_object_version_number;
208: p_return_status := hr_multi_message.get_return_status_disable;
209: hr_utility.set_location(' Leaving:' || l_proc, 30);
210: when others then
211: --
212: -- When Multiple Message Detection is enabled catch

Line 219: if hr_multi_message.unexpected_error_add(l_proc) then

215: -- Multiple Message List. Otherwise re-raise the
216: -- error.
217: --
218: rollback to update_bkng_justification_swi;
219: if hr_multi_message.unexpected_error_add(l_proc) then
220: hr_utility.set_location(' Leaving:' || l_proc,40);
221: raise;
222: end if;
223: --

Line 227: p_return_status := hr_multi_message.get_return_status_disable;

223: --
224: -- Reset IN OUT and set OUT parameters
225: --
226: p_object_version_number := l_object_version_number;
227: p_return_status := hr_multi_message.get_return_status_disable;
228: hr_utility.set_location(' Leaving:' || l_proc,50);
229: end update_booking_justification;
230: -- ----------------------------------------------------------------------------
231: -- |---------------------< delete_booking_justification >---------------------|

Line 256: hr_multi_message.enable_message_list;

252: savepoint delete_bkng_justification_swi;
253: --
254: -- Initialise Multiple Message Detection
255: --
256: hr_multi_message.enable_message_list;
257: --
258: -- Remember IN OUT parameter IN values
259: --
260: --

Line 289: p_return_status := hr_multi_message.get_return_status_disable;

285: -- Derive the API return status value based on whether
286: -- messages of any type exist in the Multiple Message List.
287: -- Also disable Multiple Message Detection.
288: --
289: p_return_status := hr_multi_message.get_return_status_disable;
290: hr_utility.set_location(' Leaving:' || l_proc,20);
291: --
292: exception
293: when hr_multi_message.error_message_exist then

Line 293: when hr_multi_message.error_message_exist then

289: p_return_status := hr_multi_message.get_return_status_disable;
290: hr_utility.set_location(' Leaving:' || l_proc,20);
291: --
292: exception
293: when hr_multi_message.error_message_exist then
294: --
295: -- Catch the Multiple Message List exception which
296: -- indicates API processing has been aborted because
297: -- at least one message exists in the list.

Line 303: p_return_status := hr_multi_message.get_return_status_disable;

299: rollback to delete_bkng_justification_swi;
300: --
301: -- Reset IN OUT parameters and set OUT parameters
302: --
303: p_return_status := hr_multi_message.get_return_status_disable;
304: hr_utility.set_location(' Leaving:' || l_proc, 30);
305: when others then
306: --
307: -- When Multiple Message Detection is enabled catch

Line 314: if hr_multi_message.unexpected_error_add(l_proc) then

310: -- Multiple Message List. Otherwise re-raise the
311: -- error.
312: --
313: rollback to delete_bkng_justification_swi;
314: if hr_multi_message.unexpected_error_add(l_proc) then
315: hr_utility.set_location(' Leaving:' || l_proc,40);
316: raise;
317: end if;
318: --

Line 321: p_return_status := hr_multi_message.get_return_status_disable;

317: end if;
318: --
319: -- Reset IN OUT and set OUT parameters
320: --
321: p_return_status := hr_multi_message.get_return_status_disable;
322: hr_utility.set_location(' Leaving:' || l_proc,50);
323: end delete_booking_justification;
324: end ota_bkng_justification_swi;