DBA Data[Home] [Help]

APPS.PER_REQUISITIONS_SWI dependencies on HR_MULTI_MESSAGE

Line 73: hr_multi_message.enable_message_list;

69: savepoint create_requisition_swi;
70: --
71: -- Initialise Multiple Message Detection
72: --
73: hr_multi_message.enable_message_list;
74: --
75: -- Remember IN OUT parameter IN values
76: --
77: --

Line 147: p_return_status := hr_multi_message.get_return_status_disable;

143: -- Derive the API return status value based on whether
144: -- messages of any type exist in the Multiple Message List.
145: -- Also disable Multiple Message Detection.
146: --
147: p_return_status := hr_multi_message.get_return_status_disable;
148: hr_utility.set_location(' Leaving:' || l_proc,20);
149: --
150: exception
151: when hr_multi_message.error_message_exist then

Line 151: when hr_multi_message.error_message_exist then

147: p_return_status := hr_multi_message.get_return_status_disable;
148: hr_utility.set_location(' Leaving:' || l_proc,20);
149: --
150: exception
151: when hr_multi_message.error_message_exist then
152: --
153: -- Catch the Multiple Message List exception which
154: -- indicates API processing has been aborted because
155: -- at least one error message exists in the list.

Line 162: p_return_status := hr_multi_message.get_return_status_disable;

158: --
159: -- Reset IN OUT paramters 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,30);
164: when others then
165: --
166: -- When Multiple Message Detection is enabled catch

Line 173: if hr_multi_message.unexpected_error_add(l_proc) then

169: -- Multiple Message List. Otherwise re-raise
170: -- the error.
171: --
172: rollback to create_requisition_swi;
173: if hr_multi_message.unexpected_error_add(l_proc) then
174: hr_utility.set_location(' Leaving:' || l_proc, 40);
175: raise;
176: end if;
177: --

Line 181: p_return_status := hr_multi_message.get_return_status_disable;

177: --
178: -- Reset IN OUT parameters and set OUT parameters
179: --
180: p_object_version_number := null;
181: p_return_status := hr_multi_message.get_return_status_disable;
182: hr_utility.set_location(' Leaving: ' || l_proc, 50);
183: end create_requisition;
184: -- ----------------------------------------------------------------------------
185: -- |--------------------------< update_requisition >--------------------------|

Line 247: hr_multi_message.enable_message_list;

243: savepoint update_requisition_swi;
244: --
245: -- Initialise Multiple Message Detection
246: --
247: hr_multi_message.enable_message_list;
248: --
249: -- Remember IN OUT parameter IN values
250: --
251: l_object_version_number := p_object_version_number;

Line 317: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 321: when hr_multi_message.error_message_exist then

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

Line 332: p_return_status := hr_multi_message.get_return_status_disable;

328: --
329: -- Reset IN OUT paramters and set OUT parameters
330: --
331: p_object_version_number := l_object_version_number;
332: p_return_status := hr_multi_message.get_return_status_disable;
333: hr_utility.set_location(' Leaving:' || l_proc,30);
334: when others then
335: --
336: -- When Multiple Message Detection is enabled catch

Line 343: if hr_multi_message.unexpected_error_add(l_proc) then

339: -- Multiple Message List. Otherwise re-raise
340: -- the error.
341: --
342: rollback to update_requisition_swi;
343: if hr_multi_message.unexpected_error_add(l_proc) then
344: hr_utility.set_location(' Leaving:' || l_proc, 40);
345: raise;
346: end if;
347: --

Line 351: p_return_status := hr_multi_message.get_return_status_disable;

347: --
348: -- Reset IN OUT parameters and set OUT parameters
349: --
350: p_object_version_number := l_object_version_number;
351: p_return_status := hr_multi_message.get_return_status_disable;
352: hr_utility.set_location(' Leaving: ' || l_proc, 50);
353: end update_requisition;
354: -- ----------------------------------------------------------------------------
355: -- |--------------------------< delete_requisition >--------------------------|

Line 380: hr_multi_message.enable_message_list;

376: savepoint delete_requisition_swi;
377: --
378: -- Initialise Multiple Message Detection
379: --
380: hr_multi_message.enable_message_list;
381: --
382: -- Remember IN OUT parameter IN values
383: --
384: --

Line 413: p_return_status := hr_multi_message.get_return_status_disable;

409: -- Derive the API return status value based on whether
410: -- messages of any type exist in the Multiple Message List.
411: -- Also disable Multiple Message Detection.
412: --
413: p_return_status := hr_multi_message.get_return_status_disable;
414: hr_utility.set_location(' Leaving:' || l_proc,20);
415: --
416: exception
417: when hr_multi_message.error_message_exist then

Line 417: when hr_multi_message.error_message_exist then

413: p_return_status := hr_multi_message.get_return_status_disable;
414: hr_utility.set_location(' Leaving:' || l_proc,20);
415: --
416: exception
417: when hr_multi_message.error_message_exist then
418: --
419: -- Catch the Multiple Message List exception which
420: -- indicates API processing has been aborted because
421: -- at least one error message exists in the list.

Line 427: p_return_status := hr_multi_message.get_return_status_disable;

423: rollback to delete_requisition_swi;
424: --
425: -- Reset IN OUT paramters and set OUT parameters
426: --
427: p_return_status := hr_multi_message.get_return_status_disable;
428: hr_utility.set_location(' Leaving:' || l_proc,30);
429: when others then
430: --
431: -- When Multiple Message Detection is enabled catch

Line 438: if hr_multi_message.unexpected_error_add(l_proc) then

434: -- Multiple Message List. Otherwise re-raise
435: -- the error.
436: --
437: rollback to delete_requisition_swi;
438: if hr_multi_message.unexpected_error_add(l_proc) then
439: hr_utility.set_location(' Leaving:' || l_proc, 40);
440: raise;
441: end if;
442: --

Line 445: p_return_status := hr_multi_message.get_return_status_disable;

441: end if;
442: --
443: -- Reset IN OUT parameters and set OUT parameters
444: --
445: p_return_status := hr_multi_message.get_return_status_disable;
446: hr_utility.set_location(' Leaving: ' || l_proc, 50);
447: end delete_requisition;
448: --
449: -- ----------------------------------------------------------------------------