DBA Data[Home] [Help]

APPS.HR_PERFORMANCE_RATINGS_SWI dependencies on HR_MULTI_MESSAGE

Line 63: hr_multi_message.enable_message_list;

59: savepoint create_performance_rating_swi;
60: --
61: -- Initialise Multiple Message Detection
62: --
63: hr_multi_message.enable_message_list;
64: --
65: -- Remember IN OUT parameter IN values
66: --
67: --

Line 128: p_return_status := hr_multi_message.get_return_status_disable;

124: -- Derive the API return status value based on whether
125: -- messages of any type exist in the Multiple Message List.
126: -- Also disable Multiple Message Detection.
127: --
128: p_return_status := hr_multi_message.get_return_status_disable;
129: hr_utility.set_location(' Leaving:' || l_proc,20);
130: --
131: exception
132: when hr_multi_message.error_message_exist then

Line 132: when hr_multi_message.error_message_exist then

128: p_return_status := hr_multi_message.get_return_status_disable;
129: hr_utility.set_location(' Leaving:' || l_proc,20);
130: --
131: exception
132: when hr_multi_message.error_message_exist then
133: --
134: -- Catch the Multiple Message List exception which
135: -- indicates API processing has been aborted because
136: -- at least one message exists in the list.

Line 143: p_return_status := hr_multi_message.get_return_status_disable;

139: --
140: -- Reset IN OUT parameters and set OUT parameters
141: --
142: p_object_version_number := null;
143: p_return_status := hr_multi_message.get_return_status_disable;
144: hr_utility.set_location(' Leaving:' || l_proc, 30);
145: when others then
146: --
147: -- When Multiple Message Detection is enabled catch

Line 154: if hr_multi_message.unexpected_error_add(l_proc) then

150: -- Multiple Message List. Otherwise re-raise the
151: -- error.
152: --
153: rollback to create_performance_rating_swi;
154: if hr_multi_message.unexpected_error_add(l_proc) then
155: hr_utility.set_location(' Leaving:' || l_proc,40);
156: raise;
157: end if;
158: --

Line 162: p_return_status := hr_multi_message.get_return_status_disable;

158: --
159: -- Reset IN OUT and set OUT parameters
160: --
161: p_object_version_number := null;
162: p_return_status := hr_multi_message.get_return_status_disable;
163: hr_utility.set_location(' Leaving:' || l_proc,50);
164: end create_performance_rating;
165: -- ----------------------------------------------------------------------------
166: -- |-----------------------< delete_performance_rating >----------------------|

Line 191: hr_multi_message.enable_message_list;

187: savepoint delete_performance_rating_swi;
188: --
189: -- Initialise Multiple Message Detection
190: --
191: hr_multi_message.enable_message_list;
192: --
193: -- Remember IN OUT parameter IN values
194: --
195: --

Line 224: p_return_status := hr_multi_message.get_return_status_disable;

220: -- Derive the API return status value based on whether
221: -- messages of any type exist in the Multiple Message List.
222: -- Also disable Multiple Message Detection.
223: --
224: p_return_status := hr_multi_message.get_return_status_disable;
225: hr_utility.set_location(' Leaving:' || l_proc,20);
226: --
227: exception
228: when hr_multi_message.error_message_exist then

Line 228: when hr_multi_message.error_message_exist then

224: p_return_status := hr_multi_message.get_return_status_disable;
225: hr_utility.set_location(' Leaving:' || l_proc,20);
226: --
227: exception
228: when hr_multi_message.error_message_exist then
229: --
230: -- Catch the Multiple Message List exception which
231: -- indicates API processing has been aborted because
232: -- at least one message exists in the list.

Line 238: p_return_status := hr_multi_message.get_return_status_disable;

234: rollback to delete_performance_rating_swi;
235: --
236: -- Reset IN OUT parameters and set OUT parameters
237: --
238: p_return_status := hr_multi_message.get_return_status_disable;
239: hr_utility.set_location(' Leaving:' || l_proc, 30);
240: when others then
241: --
242: -- When Multiple Message Detection is enabled catch

Line 249: if hr_multi_message.unexpected_error_add(l_proc) then

245: -- Multiple Message List. Otherwise re-raise the
246: -- error.
247: --
248: rollback to delete_performance_rating_swi;
249: if hr_multi_message.unexpected_error_add(l_proc) then
250: hr_utility.set_location(' Leaving:' || l_proc,40);
251: raise;
252: end if;
253: --

Line 256: p_return_status := hr_multi_message.get_return_status_disable;

252: end if;
253: --
254: -- Reset IN OUT and set OUT parameters
255: --
256: p_return_status := hr_multi_message.get_return_status_disable;
257: hr_utility.set_location(' Leaving:' || l_proc,50);
258: end delete_performance_rating;
259: -- ----------------------------------------------------------------------------
260: -- |-----------------------< update_performance_rating >----------------------|

Line 314: hr_multi_message.enable_message_list;

310: savepoint update_performance_rating_swi;
311: --
312: -- Initialise Multiple Message Detection
313: --
314: hr_multi_message.enable_message_list;
315: --
316: -- Remember IN OUT parameter IN values
317: --
318: l_object_version_number := p_object_version_number;

Line 376: p_return_status := hr_multi_message.get_return_status_disable;

372: -- Derive the API return status value based on whether
373: -- messages of any type exist in the Multiple Message List.
374: -- Also disable Multiple Message Detection.
375: --
376: p_return_status := hr_multi_message.get_return_status_disable;
377: hr_utility.set_location(' Leaving:' || l_proc,20);
378: --
379: exception
380: when hr_multi_message.error_message_exist then

Line 380: when hr_multi_message.error_message_exist then

376: p_return_status := hr_multi_message.get_return_status_disable;
377: hr_utility.set_location(' Leaving:' || l_proc,20);
378: --
379: exception
380: when hr_multi_message.error_message_exist then
381: --
382: -- Catch the Multiple Message List exception which
383: -- indicates API processing has been aborted because
384: -- at least one message exists in the list.

Line 391: p_return_status := hr_multi_message.get_return_status_disable;

387: --
388: -- Reset IN OUT parameters and set OUT parameters
389: --
390: p_object_version_number := l_object_version_number;
391: p_return_status := hr_multi_message.get_return_status_disable;
392: hr_utility.set_location(' Leaving:' || l_proc, 30);
393: when others then
394: --
395: -- When Multiple Message Detection is enabled catch

Line 402: if hr_multi_message.unexpected_error_add(l_proc) then

398: -- Multiple Message List. Otherwise re-raise the
399: -- error.
400: --
401: rollback to update_performance_rating_swi;
402: if hr_multi_message.unexpected_error_add(l_proc) then
403: hr_utility.set_location(' Leaving:' || l_proc,40);
404: raise;
405: end if;
406: --

Line 410: p_return_status := hr_multi_message.get_return_status_disable;

406: --
407: -- Reset IN OUT and set OUT parameters
408: --
409: p_object_version_number := l_object_version_number;
410: p_return_status := hr_multi_message.get_return_status_disable;
411: hr_utility.set_location(' Leaving:' || l_proc,50);
412: end update_performance_rating;
413:
414: -- ----------------------------------------------------------------------------