DBA Data[Home] [Help]

APPS.IRC_DEFAULT_POSTING_SWI dependencies on HR_MULTI_MESSAGE

Line 80: hr_multi_message.enable_message_list;

76: savepoint create_default_posting_swi;
77: --
78: -- Initialise Multiple Message Detection
79: --
80: hr_multi_message.enable_message_list;
81: --
82: -- Remember IN OUT parameter IN values
83: --
84: --

Line 161: p_return_status := hr_multi_message.get_return_status_disable;

157: -- Derive the API return status value based on whether
158: -- messages of any type exist in the Multiple Message List.
159: -- Also disable Multiple Message Detection.
160: --
161: p_return_status := hr_multi_message.get_return_status_disable;
162: hr_utility.set_location(' Leaving:' || l_proc,20);
163: --
164: exception
165: when hr_multi_message.error_message_exist then

Line 165: when hr_multi_message.error_message_exist then

161: p_return_status := hr_multi_message.get_return_status_disable;
162: hr_utility.set_location(' Leaving:' || l_proc,20);
163: --
164: exception
165: when hr_multi_message.error_message_exist then
166: --
167: -- Catch the Multiple Message List exception which
168: -- indicates API processing has been aborted because
169: -- at least one message exists in the list.

Line 176: p_return_status := hr_multi_message.get_return_status_disable;

172: --
173: -- Reset IN OUT parameters and set OUT parameters
174: --
175: p_object_version_number := null;
176: p_return_status := hr_multi_message.get_return_status_disable;
177: hr_utility.set_location(' Leaving:' || l_proc, 30);
178: when others then
179: --
180: -- When Multiple Message Detection is enabled catch

Line 187: if hr_multi_message.unexpected_error_add(l_proc) then

183: -- Multiple Message List. Otherwise re-raise the
184: -- error.
185: --
186: rollback to create_default_posting_swi;
187: if hr_multi_message.unexpected_error_add(l_proc) then
188: hr_utility.set_location(' Leaving:' || l_proc,40);
189: raise;
190: end if;
191: --

Line 195: p_return_status := hr_multi_message.get_return_status_disable;

191: --
192: -- Reset IN OUT and set OUT parameters
193: --
194: p_object_version_number := null;
195: p_return_status := hr_multi_message.get_return_status_disable;
196: hr_utility.set_location(' Leaving:' || l_proc,50);
197: end create_default_posting;
198: -- ----------------------------------------------------------------------------
199: -- |------------------------< delete_default_posting >------------------------|

Line 224: hr_multi_message.enable_message_list;

220: savepoint delete_default_posting_swi;
221: --
222: -- Initialise Multiple Message Detection
223: --
224: hr_multi_message.enable_message_list;
225: --
226: -- Remember IN OUT parameter IN values
227: --
228: --

Line 257: p_return_status := hr_multi_message.get_return_status_disable;

253: -- Derive the API return status value based on whether
254: -- messages of any type exist in the Multiple Message List.
255: -- Also disable Multiple Message Detection.
256: --
257: p_return_status := hr_multi_message.get_return_status_disable;
258: hr_utility.set_location(' Leaving:' || l_proc,20);
259: --
260: exception
261: when hr_multi_message.error_message_exist then

Line 261: when hr_multi_message.error_message_exist then

257: p_return_status := hr_multi_message.get_return_status_disable;
258: hr_utility.set_location(' Leaving:' || l_proc,20);
259: --
260: exception
261: when hr_multi_message.error_message_exist then
262: --
263: -- Catch the Multiple Message List exception which
264: -- indicates API processing has been aborted because
265: -- at least one message exists in the list.

Line 271: p_return_status := hr_multi_message.get_return_status_disable;

267: rollback to delete_default_posting_swi;
268: --
269: -- Reset IN OUT parameters and set OUT parameters
270: --
271: p_return_status := hr_multi_message.get_return_status_disable;
272: hr_utility.set_location(' Leaving:' || l_proc, 30);
273: when others then
274: --
275: -- When Multiple Message Detection is enabled catch

Line 282: if hr_multi_message.unexpected_error_add(l_proc) then

278: -- Multiple Message List. Otherwise re-raise the
279: -- error.
280: --
281: rollback to delete_default_posting_swi;
282: if hr_multi_message.unexpected_error_add(l_proc) then
283: hr_utility.set_location(' Leaving:' || l_proc,40);
284: raise;
285: end if;
286: --

Line 289: p_return_status := hr_multi_message.get_return_status_disable;

285: end if;
286: --
287: -- Reset IN OUT and set OUT parameters
288: --
289: p_return_status := hr_multi_message.get_return_status_disable;
290: hr_utility.set_location(' Leaving:' || l_proc,50);
291: end delete_default_posting;
292: -- ----------------------------------------------------------------------------
293: -- |------------------------< update_default_posting >------------------------|

Line 364: hr_multi_message.enable_message_list;

360: savepoint update_default_posting_swi;
361: --
362: -- Initialise Multiple Message Detection
363: --
364: hr_multi_message.enable_message_list;
365: --
366: -- Remember IN OUT parameter IN values
367: --
368: l_object_version_number := p_object_version_number;

Line 443: p_return_status := hr_multi_message.get_return_status_disable;

439: -- Derive the API return status value based on whether
440: -- messages of any type exist in the Multiple Message List.
441: -- Also disable Multiple Message Detection.
442: --
443: p_return_status := hr_multi_message.get_return_status_disable;
444: hr_utility.set_location(' Leaving:' || l_proc,20);
445: --
446: exception
447: when hr_multi_message.error_message_exist then

Line 447: when hr_multi_message.error_message_exist then

443: p_return_status := hr_multi_message.get_return_status_disable;
444: hr_utility.set_location(' Leaving:' || l_proc,20);
445: --
446: exception
447: when hr_multi_message.error_message_exist then
448: --
449: -- Catch the Multiple Message List exception which
450: -- indicates API processing has been aborted because
451: -- at least one message exists in the list.

Line 458: p_return_status := hr_multi_message.get_return_status_disable;

454: --
455: -- Reset IN OUT parameters and set OUT parameters
456: --
457: p_object_version_number := l_object_version_number;
458: p_return_status := hr_multi_message.get_return_status_disable;
459: hr_utility.set_location(' Leaving:' || l_proc, 30);
460: when others then
461: --
462: -- When Multiple Message Detection is enabled catch

Line 469: if hr_multi_message.unexpected_error_add(l_proc) then

465: -- Multiple Message List. Otherwise re-raise the
466: -- error.
467: --
468: rollback to update_default_posting_swi;
469: if hr_multi_message.unexpected_error_add(l_proc) then
470: hr_utility.set_location(' Leaving:' || l_proc,40);
471: raise;
472: end if;
473: --

Line 477: p_return_status := hr_multi_message.get_return_status_disable;

473: --
474: -- Reset IN OUT and set OUT parameters
475: --
476: p_object_version_number := l_object_version_number;
477: p_return_status := hr_multi_message.get_return_status_disable;
478: hr_utility.set_location(' Leaving:' || l_proc,50);
479: end update_default_posting;
480: end irc_default_posting_swi;