DBA Data[Home] [Help]

APPS.PER_RI_CONFIG_INFORMATION_SWI dependencies on HR_MULTI_MESSAGE

Line 69: hr_multi_message.enable_message_list;

65: savepoint create_config_information_swi;
66: --
67: -- Initialise Multiple Message Detection
68: --
69: hr_multi_message.enable_message_list;
70: --
71: -- Remember IN OUT parameter IN values
72: --
73: --

Line 137: p_return_status := hr_multi_message.get_return_status_disable;

133: -- Derive the API return status value based on whether
134: -- messages of any type exist in the Multiple Message List.
135: -- Also disable Multiple Message Detection.
136: --
137: p_return_status := hr_multi_message.get_return_status_disable;
138: hr_utility.set_location(' Leaving:' || l_proc,20);
139: --
140: exception
141: when hr_multi_message.error_message_exist then

Line 141: when hr_multi_message.error_message_exist then

137: p_return_status := hr_multi_message.get_return_status_disable;
138: hr_utility.set_location(' Leaving:' || l_proc,20);
139: --
140: exception
141: when hr_multi_message.error_message_exist then
142: --
143: -- Catch the Multiple Message List exception which
144: -- indicates API processing has been aborted because
145: -- at least one message exists in the list.

Line 153: p_return_status := hr_multi_message.get_return_status_disable;

149: -- Reset IN OUT parameters and set OUT parameters
150: --
151: p_object_version_number := null;
152: p_config_information_id := null;
153: p_return_status := hr_multi_message.get_return_status_disable;
154: hr_utility.set_location(' Leaving:' || l_proc, 30);
155: when others then
156: --
157: -- When Multiple Message Detection is enabled catch

Line 164: if hr_multi_message.unexpected_error_add(l_proc) then

160: -- Multiple Message List. Otherwise re-raise the
161: -- error.
162: --
163: rollback to create_config_information_swi;
164: if hr_multi_message.unexpected_error_add(l_proc) then
165: hr_utility.set_location(' Leaving:' || l_proc,40);
166: raise;
167: end if;
168: --

Line 173: p_return_status := hr_multi_message.get_return_status_disable;

169: -- Reset IN OUT and set OUT parameters
170: --
171: p_object_version_number := null;
172: p_config_information_id := null;
173: p_return_status := hr_multi_message.get_return_status_disable;
174: hr_utility.set_location(' Leaving:' || l_proc,50);
175: end create_config_information;
176: -- ----------------------------------------------------------------------------
177: -- |-----------------------< update_config_information >----------------------|

Line 238: hr_multi_message.enable_message_list;

234: savepoint update_config_information_swi;
235: --
236: -- Initialise Multiple Message Detection
237: --
238: hr_multi_message.enable_message_list;
239: --
240: -- Remember IN OUT parameter IN values
241: --
242: l_object_version_number := p_object_version_number;

Line 307: p_return_status := hr_multi_message.get_return_status_disable;

303: -- Derive the API return status value based on whether
304: -- messages of any type exist in the Multiple Message List.
305: -- Also disable Multiple Message Detection.
306: --
307: p_return_status := hr_multi_message.get_return_status_disable;
308: hr_utility.set_location(' Leaving:' || l_proc,20);
309: --
310: exception
311: when hr_multi_message.error_message_exist then

Line 311: when hr_multi_message.error_message_exist then

307: p_return_status := hr_multi_message.get_return_status_disable;
308: hr_utility.set_location(' Leaving:' || l_proc,20);
309: --
310: exception
311: when hr_multi_message.error_message_exist then
312: --
313: -- Catch the Multiple Message List exception which
314: -- indicates API processing has been aborted because
315: -- at least one message exists in the list.

Line 322: p_return_status := hr_multi_message.get_return_status_disable;

318: --
319: -- Reset IN OUT parameters and set OUT parameters
320: --
321: p_object_version_number := l_object_version_number;
322: p_return_status := hr_multi_message.get_return_status_disable;
323: hr_utility.set_location(' Leaving:' || l_proc, 30);
324: when others then
325: --
326: -- When Multiple Message Detection is enabled catch

Line 333: if hr_multi_message.unexpected_error_add(l_proc) then

329: -- Multiple Message List. Otherwise re-raise the
330: -- error.
331: --
332: rollback to update_config_information_swi;
333: if hr_multi_message.unexpected_error_add(l_proc) then
334: hr_utility.set_location(' Leaving:' || l_proc,40);
335: raise;
336: end if;
337: --

Line 341: p_return_status := hr_multi_message.get_return_status_disable;

337: --
338: -- Reset IN OUT and set OUT parameters
339: --
340: p_object_version_number := l_object_version_number;
341: p_return_status := hr_multi_message.get_return_status_disable;
342: hr_utility.set_location(' Leaving:' || l_proc,50);
343: end update_config_information;
344: -- ----------------------------------------------------------------------------
345: -- |-----------------------< delete_config_information >----------------------|

Line 370: hr_multi_message.enable_message_list;

366: savepoint delete_config_information_swi;
367: --
368: -- Initialise Multiple Message Detection
369: --
370: hr_multi_message.enable_message_list;
371: --
372: -- Remember IN OUT parameter IN values
373: --
374: --

Line 403: p_return_status := hr_multi_message.get_return_status_disable;

399: -- Derive the API return status value based on whether
400: -- messages of any type exist in the Multiple Message List.
401: -- Also disable Multiple Message Detection.
402: --
403: p_return_status := hr_multi_message.get_return_status_disable;
404: hr_utility.set_location(' Leaving:' || l_proc,20);
405: --
406: exception
407: when hr_multi_message.error_message_exist then

Line 407: when hr_multi_message.error_message_exist then

403: p_return_status := hr_multi_message.get_return_status_disable;
404: hr_utility.set_location(' Leaving:' || l_proc,20);
405: --
406: exception
407: when hr_multi_message.error_message_exist then
408: --
409: -- Catch the Multiple Message List exception which
410: -- indicates API processing has been aborted because
411: -- at least one message exists in the list.

Line 417: p_return_status := hr_multi_message.get_return_status_disable;

413: rollback to delete_config_information_swi;
414: --
415: -- Reset IN OUT parameters and set OUT parameters
416: --
417: p_return_status := hr_multi_message.get_return_status_disable;
418: hr_utility.set_location(' Leaving:' || l_proc, 30);
419: when others then
420: --
421: -- When Multiple Message Detection is enabled catch

Line 428: if hr_multi_message.unexpected_error_add(l_proc) then

424: -- Multiple Message List. Otherwise re-raise the
425: -- error.
426: --
427: rollback to delete_config_information_swi;
428: if hr_multi_message.unexpected_error_add(l_proc) then
429: hr_utility.set_location(' Leaving:' || l_proc,40);
430: raise;
431: end if;
432: --

Line 435: p_return_status := hr_multi_message.get_return_status_disable;

431: end if;
432: --
433: -- Reset IN OUT and set OUT parameters
434: --
435: p_return_status := hr_multi_message.get_return_status_disable;
436: hr_utility.set_location(' Leaving:' || l_proc,50);
437: end delete_config_information;
438: end per_ri_config_information_swi;