DBA Data[Home] [Help]

APPS.HR_PROGRESSION_POINT_SWI dependencies on HR_MULTI_MESSAGE

Line 75: hr_multi_message.enable_message_list;

71: savepoint create_progression_point_swi;
72: --
73: -- Initialise Multiple Message Detection
74: --
75: hr_multi_message.enable_message_list;
76: --
77: -- Remember IN OUT parameter IN values
78: --
79: --

Line 151: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 155: when hr_multi_message.error_message_exist then

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

Line 166: p_return_status := hr_multi_message.get_return_status_disable;

162: --
163: -- Reset IN OUT parameters and set OUT parameters
164: --
165: p_object_version_number := null;
166: p_return_status := hr_multi_message.get_return_status_disable;
167: hr_utility.set_location(' Leaving:' || l_proc, 30);
168: when others then
169: --
170: -- When Multiple Message Detection is enabled catch

Line 177: if hr_multi_message.unexpected_error_add(l_proc) then

173: -- Multiple Message List. Otherwise re-raise the
174: -- error.
175: --
176: rollback to create_progression_point_swi;
177: if hr_multi_message.unexpected_error_add(l_proc) then
178: hr_utility.set_location(' Leaving:' || l_proc,40);
179: raise;
180: end if;
181: --

Line 185: p_return_status := hr_multi_message.get_return_status_disable;

181: --
182: -- Reset IN OUT and set OUT parameters
183: --
184: p_object_version_number := null;
185: p_return_status := hr_multi_message.get_return_status_disable;
186: hr_utility.set_location(' Leaving:' || l_proc,50);
187: end create_progression_point;
188: -- ----------------------------------------------------------------------------
189: -- |-----------------------< delete_progression_point >-----------------------|

Line 214: hr_multi_message.enable_message_list;

210: savepoint delete_progression_point_swi;
211: --
212: -- Initialise Multiple Message Detection
213: --
214: hr_multi_message.enable_message_list;
215: --
216: -- Remember IN OUT parameter IN values
217: --
218: --

Line 247: p_return_status := hr_multi_message.get_return_status_disable;

243: -- Derive the API return status value based on whether
244: -- messages of any type exist in the Multiple Message List.
245: -- Also disable Multiple Message Detection.
246: --
247: p_return_status := hr_multi_message.get_return_status_disable;
248: hr_utility.set_location(' Leaving:' || l_proc,20);
249: --
250: exception
251: when hr_multi_message.error_message_exist then

Line 251: when hr_multi_message.error_message_exist then

247: p_return_status := hr_multi_message.get_return_status_disable;
248: hr_utility.set_location(' Leaving:' || l_proc,20);
249: --
250: exception
251: when hr_multi_message.error_message_exist then
252: --
253: -- Catch the Multiple Message List exception which
254: -- indicates API processing has been aborted because
255: -- at least one message exists in the list.

Line 261: p_return_status := hr_multi_message.get_return_status_disable;

257: rollback to delete_progression_point_swi;
258: --
259: -- Reset IN OUT parameters and set OUT parameters
260: --
261: p_return_status := hr_multi_message.get_return_status_disable;
262: hr_utility.set_location(' Leaving:' || l_proc, 30);
263: when others then
264: --
265: -- When Multiple Message Detection is enabled catch

Line 272: if hr_multi_message.unexpected_error_add(l_proc) then

268: -- Multiple Message List. Otherwise re-raise the
269: -- error.
270: --
271: rollback to delete_progression_point_swi;
272: if hr_multi_message.unexpected_error_add(l_proc) then
273: hr_utility.set_location(' Leaving:' || l_proc,40);
274: raise;
275: end if;
276: --

Line 279: p_return_status := hr_multi_message.get_return_status_disable;

275: end if;
276: --
277: -- Reset IN OUT and set OUT parameters
278: --
279: p_return_status := hr_multi_message.get_return_status_disable;
280: hr_utility.set_location(' Leaving:' || l_proc,50);
281: end delete_progression_point;
282: -- ----------------------------------------------------------------------------
283: -- |-----------------------< update_progression_point >-----------------------|

Line 349: hr_multi_message.enable_message_list;

345: savepoint update_progression_point_swi;
346: --
347: -- Initialise Multiple Message Detection
348: --
349: hr_multi_message.enable_message_list;
350: --
351: -- Remember IN OUT parameter IN values
352: --
353: l_object_version_number := p_object_version_number;

Line 423: p_return_status := hr_multi_message.get_return_status_disable;

419: -- Derive the API return status value based on whether
420: -- messages of any type exist in the Multiple Message List.
421: -- Also disable Multiple Message Detection.
422: --
423: p_return_status := hr_multi_message.get_return_status_disable;
424: hr_utility.set_location(' Leaving:' || l_proc,20);
425: --
426: exception
427: when hr_multi_message.error_message_exist then

Line 427: when hr_multi_message.error_message_exist then

423: p_return_status := hr_multi_message.get_return_status_disable;
424: hr_utility.set_location(' Leaving:' || l_proc,20);
425: --
426: exception
427: when hr_multi_message.error_message_exist then
428: --
429: -- Catch the Multiple Message List exception which
430: -- indicates API processing has been aborted because
431: -- at least one message exists in the list.

Line 438: p_return_status := hr_multi_message.get_return_status_disable;

434: --
435: -- Reset IN OUT parameters and set OUT parameters
436: --
437: p_object_version_number := l_object_version_number;
438: p_return_status := hr_multi_message.get_return_status_disable;
439: hr_utility.set_location(' Leaving:' || l_proc, 30);
440: when others then
441: --
442: -- When Multiple Message Detection is enabled catch

Line 449: if hr_multi_message.unexpected_error_add(l_proc) then

445: -- Multiple Message List. Otherwise re-raise the
446: -- error.
447: --
448: rollback to update_progression_point_swi;
449: if hr_multi_message.unexpected_error_add(l_proc) then
450: hr_utility.set_location(' Leaving:' || l_proc,40);
451: raise;
452: end if;
453: --

Line 457: p_return_status := hr_multi_message.get_return_status_disable;

453: --
454: -- Reset IN OUT and set OUT parameters
455: --
456: p_object_version_number := l_object_version_number;
457: p_return_status := hr_multi_message.get_return_status_disable;
458: hr_utility.set_location(' Leaving:' || l_proc,50);
459: end update_progression_point;
460: end hr_progression_point_swi;