DBA Data[Home] [Help]

APPS.OTA_ACTIVITY_CATEGORY_SWI dependencies on HR_MULTI_MESSAGE

Line 64: hr_multi_message.enable_message_list;

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

Line 129: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 133: when hr_multi_message.error_message_exist then

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

Line 144: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 155: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 163: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 193: hr_multi_message.enable_message_list;

189: savepoint delete_act_cat_inclusion_swi;
190: --
191: -- Initialise Multiple Message Detection
192: --
193: hr_multi_message.enable_message_list;
194: --
195: -- Remember IN OUT parameter IN values
196: --
197: --

Line 227: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 231: when hr_multi_message.error_message_exist then

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

Line 241: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 252: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 259: p_return_status := hr_multi_message.get_return_status_disable;

255: end if;
256: --
257: -- Reset IN OUT and set OUT parameters
258: --
259: p_return_status := hr_multi_message.get_return_status_disable;
260: hr_utility.set_location(' Leaving:' || l_proc,50);
261: end delete_act_cat_inclusion;
262: -- ----------------------------------------------------------------------------
263: -- |-----------------------< update_act_cat_inclusion >-----------------------|

Line 317: hr_multi_message.enable_message_list;

313: savepoint update_act_cat_inclusion_swi;
314: --
315: -- Initialise Multiple Message Detection
316: --
317: hr_multi_message.enable_message_list;
318: --
319: -- Remember IN OUT parameter IN values
320: --
321: l_object_version_number := p_object_version_number;

Line 379: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 383: when hr_multi_message.error_message_exist then

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

Line 394: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 405: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 413: p_return_status := hr_multi_message.get_return_status_disable;

409: --
410: -- Reset IN OUT and set OUT parameters
411: --
412: p_object_version_number := l_object_version_number;
413: p_return_status := hr_multi_message.get_return_status_disable;
414: hr_utility.set_location(' Leaving:' || l_proc,50);
415: end update_act_cat_inclusion;
416: -- ----------------------------------------------------------------------------
417: -- |------------------------< validate_delete_aci >-----------------------|

Line 438: hr_multi_message.enable_message_list;

434: savepoint validate_delete_aci_swi;
435: --
436: -- Initialise Multiple Message Detection
437: --
438: hr_multi_message.enable_message_list;
439: --
440: -- Remember IN OUT parameter IN values
441: --
442: --

Line 451: p_return_status := hr_multi_message.get_return_status_disable;

447: ,p_category_usage_id);
448:
449: --
450: --
451: p_return_status := hr_multi_message.get_return_status_disable;
452: hr_utility.set_location(' Leaving:' || l_proc,20);
453: --
454: exception
455: when hr_multi_message.error_message_exist then

Line 455: when hr_multi_message.error_message_exist then

451: p_return_status := hr_multi_message.get_return_status_disable;
452: hr_utility.set_location(' Leaving:' || l_proc,20);
453: --
454: exception
455: when hr_multi_message.error_message_exist then
456: --
457: -- Catch the Multiple Message List exception which
458: -- indicates API processing has been aborted because
459: -- at least one message exists in the list.

Line 465: p_return_status := hr_multi_message.get_return_status_disable;

461: rollback to validate_delete_aci_swi;
462: --
463: -- Reset IN OUT parameters and set OUT parameters
464: --
465: p_return_status := hr_multi_message.get_return_status_disable;
466: hr_utility.set_location(' Leaving:' || l_proc, 30);
467: when others then
468: --
469: -- When Multiple Message Detection is enabled catch

Line 476: if hr_multi_message.unexpected_error_add(l_proc) then

472: -- Multiple Message List. Otherwise re-raise the
473: -- error.
474: --
475: rollback to validate_delete_aci_swi;
476: if hr_multi_message.unexpected_error_add(l_proc) then
477: hr_utility.set_location(' Leaving:' || l_proc,40);
478: raise;
479: end if;
480: --

Line 483: p_return_status := hr_multi_message.get_return_status_disable;

479: end if;
480: --
481: -- Reset IN OUT and set OUT parameters
482: --
483: p_return_status := hr_multi_message.get_return_status_disable;
484: hr_utility.set_location(' Leaving:' || l_proc,50);
485: end validate_delete_aci;
486:
487: end ota_activity_category_swi;