DBA Data[Home] [Help]

APPS.HR_PAY_SCALE_SWI dependencies on HR_MULTI_MESSAGE

Line 98: hr_multi_message.enable_message_list;

94: savepoint create_pay_scale_swi;
95: --
96: -- Initialise Multiple Message Detection
97: --
98: hr_multi_message.enable_message_list;
99: --
100: -- Remember IN OUT parameter IN values
101: --
102: --

Line 197: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 201: when hr_multi_message.error_message_exist then

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

Line 212: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 223: if hr_multi_message.unexpected_error_add(l_proc) then

219: -- Multiple Message List. Otherwise re-raise the
220: -- error.
221: --
222: rollback to create_pay_scale_swi;
223: if hr_multi_message.unexpected_error_add(l_proc) then
224: hr_utility.set_location(' Leaving:' || l_proc,40);
225: raise;
226: end if;
227: --

Line 231: p_return_status := hr_multi_message.get_return_status_disable;

227: --
228: -- Reset IN OUT and set OUT parameters
229: --
230: p_object_version_number := null;
231: p_return_status := hr_multi_message.get_return_status_disable;
232: hr_utility.set_location(' Leaving:' || l_proc,50);
233: end create_pay_scale;
234: -- ----------------------------------------------------------------------------
235: -- |---------------------------< delete_pay_scale >---------------------------|

Line 260: hr_multi_message.enable_message_list;

256: savepoint delete_pay_scale_swi;
257: --
258: -- Initialise Multiple Message Detection
259: --
260: hr_multi_message.enable_message_list;
261: --
262: -- Remember IN OUT parameter IN values
263: --
264: --

Line 293: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 297: when hr_multi_message.error_message_exist then

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

Line 307: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 318: if hr_multi_message.unexpected_error_add(l_proc) then

314: -- Multiple Message List. Otherwise re-raise the
315: -- error.
316: --
317: rollback to delete_pay_scale_swi;
318: if hr_multi_message.unexpected_error_add(l_proc) then
319: hr_utility.set_location(' Leaving:' || l_proc,40);
320: raise;
321: end if;
322: --

Line 325: p_return_status := hr_multi_message.get_return_status_disable;

321: end if;
322: --
323: -- Reset IN OUT and set OUT parameters
324: --
325: p_return_status := hr_multi_message.get_return_status_disable;
326: hr_utility.set_location(' Leaving:' || l_proc,50);
327: end delete_pay_scale;
328: -- ----------------------------------------------------------------------------
329: -- |---------------------------< update_pay_scale >---------------------------|

Line 418: hr_multi_message.enable_message_list;

414: savepoint update_pay_scale_swi;
415: --
416: -- Initialise Multiple Message Detection
417: --
418: hr_multi_message.enable_message_list;
419: --
420: -- Remember IN OUT parameter IN values
421: --
422: l_object_version_number := p_object_version_number;

Line 515: p_return_status := hr_multi_message.get_return_status_disable;

511: -- Derive the API return status value based on whether
512: -- messages of any type exist in the Multiple Message List.
513: -- Also disable Multiple Message Detection.
514: --
515: p_return_status := hr_multi_message.get_return_status_disable;
516: hr_utility.set_location(' Leaving:' || l_proc,20);
517: --
518: exception
519: when hr_multi_message.error_message_exist then

Line 519: when hr_multi_message.error_message_exist then

515: p_return_status := hr_multi_message.get_return_status_disable;
516: hr_utility.set_location(' Leaving:' || l_proc,20);
517: --
518: exception
519: when hr_multi_message.error_message_exist then
520: --
521: -- Catch the Multiple Message List exception which
522: -- indicates API processing has been aborted because
523: -- at least one message exists in the list.

Line 530: p_return_status := hr_multi_message.get_return_status_disable;

526: --
527: -- Reset IN OUT parameters and set OUT parameters
528: --
529: p_object_version_number := l_object_version_number;
530: p_return_status := hr_multi_message.get_return_status_disable;
531: hr_utility.set_location(' Leaving:' || l_proc, 30);
532: when others then
533: --
534: -- When Multiple Message Detection is enabled catch

Line 541: if hr_multi_message.unexpected_error_add(l_proc) then

537: -- Multiple Message List. Otherwise re-raise the
538: -- error.
539: --
540: rollback to update_pay_scale_swi;
541: if hr_multi_message.unexpected_error_add(l_proc) then
542: hr_utility.set_location(' Leaving:' || l_proc,40);
543: raise;
544: end if;
545: --

Line 549: p_return_status := hr_multi_message.get_return_status_disable;

545: --
546: -- Reset IN OUT and set OUT parameters
547: --
548: p_object_version_number := l_object_version_number;
549: p_return_status := hr_multi_message.get_return_status_disable;
550: hr_utility.set_location(' Leaving:' || l_proc,50);
551: end update_pay_scale;
552: end hr_pay_scale_swi;