DBA Data[Home] [Help]

APPS.PAY_AU_PROCESS_MODULES_SWI dependencies on HR_MULTI_MESSAGE

Line 41: hr_multi_message.enable_message_list;

37: savepoint create_au_process_module_swi;
38: --
39: -- Initialise Multiple Message Detection
40: --
41: hr_multi_message.enable_message_list;
42: --
43: -- Remember IN OUT parameter IN values
44: --
45: --

Line 81: p_return_status := hr_multi_message.get_return_status_disable;

77: -- Derive the API return status value based on whether
78: -- messages of any type exist in the Multiple Message List.
79: -- Also disable Multiple Message Detection.
80: --
81: p_return_status := hr_multi_message.get_return_status_disable;
82: hr_utility.set_location(' Leaving:' || l_proc,20);
83: --
84: exception
85: when hr_multi_message.error_message_exist then

Line 85: when hr_multi_message.error_message_exist then

81: p_return_status := hr_multi_message.get_return_status_disable;
82: hr_utility.set_location(' Leaving:' || l_proc,20);
83: --
84: exception
85: when hr_multi_message.error_message_exist then
86: --
87: -- Catch the Multiple Message List exception which
88: -- indicates API processing has been aborted because
89: -- at least one message exists in the list.

Line 96: p_return_status := hr_multi_message.get_return_status_disable;

92: --
93: -- Reset IN OUT parameters and set OUT parameters
94: --
95: p_object_version_number := null;
96: p_return_status := hr_multi_message.get_return_status_disable;
97: hr_utility.set_location(' Leaving:' || l_proc, 30);
98: when others then
99: --
100: -- When Multiple Message Detection is enabled catch

Line 107: if hr_multi_message.unexpected_error_add(l_proc) then

103: -- Multiple Message List. Otherwise re-raise the
104: -- error.
105: --
106: rollback to create_au_process_module_swi;
107: if hr_multi_message.unexpected_error_add(l_proc) then
108: hr_utility.set_location(' Leaving:' || l_proc,40);
109: raise;
110: end if;
111: --

Line 115: p_return_status := hr_multi_message.get_return_status_disable;

111: --
112: -- Reset IN OUT and set OUT parameters
113: --
114: p_object_version_number := null;
115: p_return_status := hr_multi_message.get_return_status_disable;
116: hr_utility.set_location(' Leaving:' || l_proc,50);
117: end create_au_process_module;
118: -- ----------------------------------------------------------------------------
119: -- |-----------------------< delete_au_process_module >-----------------------|

Line 146: hr_multi_message.enable_message_list;

142: savepoint delete_au_process_module_swi;
143: --
144: -- Initialise Multiple Message Detection
145: --
146: hr_multi_message.enable_message_list;
147: --
148: -- Remember IN OUT parameter IN values
149: --
150: --

Line 179: p_return_status := hr_multi_message.get_return_status_disable;

175: -- Derive the API return status value based on whether
176: -- messages of any type exist in the Multiple Message List.
177: -- Also disable Multiple Message Detection.
178: --
179: p_return_status := hr_multi_message.get_return_status_disable;
180: hr_utility.set_location(' Leaving:' || l_proc,20);
181: --
182: exception
183: when hr_multi_message.error_message_exist then

Line 183: when hr_multi_message.error_message_exist then

179: p_return_status := hr_multi_message.get_return_status_disable;
180: hr_utility.set_location(' Leaving:' || l_proc,20);
181: --
182: exception
183: when hr_multi_message.error_message_exist then
184: --
185: -- Catch the Multiple Message List exception which
186: -- indicates API processing has been aborted because
187: -- at least one message exists in the list.

Line 193: p_return_status := hr_multi_message.get_return_status_disable;

189: rollback to delete_au_process_module_swi;
190: --
191: -- Reset IN OUT parameters and set OUT parameters
192: --
193: p_return_status := hr_multi_message.get_return_status_disable;
194: hr_utility.set_location(' Leaving:' || l_proc, 30);
195: when others then
196: --
197: -- When Multiple Message Detection is enabled catch

Line 204: if hr_multi_message.unexpected_error_add(l_proc) then

200: -- Multiple Message List. Otherwise re-raise the
201: -- error.
202: --
203: rollback to delete_au_process_module_swi;
204: if hr_multi_message.unexpected_error_add(l_proc) then
205: hr_utility.set_location(' Leaving:' || l_proc,40);
206: raise;
207: end if;
208: --

Line 211: p_return_status := hr_multi_message.get_return_status_disable;

207: end if;
208: --
209: -- Reset IN OUT and set OUT parameters
210: --
211: p_return_status := hr_multi_message.get_return_status_disable;
212: hr_utility.set_location(' Leaving:' || l_proc,50);
213: end delete_au_process_module;
214: -- ----------------------------------------------------------------------------
215: -- |-----------------------< update_au_process_module >-----------------------|

Line 247: hr_multi_message.enable_message_list;

243: savepoint update_au_process_module_swi;
244: --
245: -- Initialise Multiple Message Detection
246: --
247: hr_multi_message.enable_message_list;
248: --
249: -- Remember IN OUT parameter IN values
250: --
251: l_object_version_number := p_object_version_number;

Line 285: p_return_status := hr_multi_message.get_return_status_disable;

281: -- Derive the API return status value based on whether
282: -- messages of any type exist in the Multiple Message List.
283: -- Also disable Multiple Message Detection.
284: --
285: p_return_status := hr_multi_message.get_return_status_disable;
286: hr_utility.set_location(' Leaving:' || l_proc,20);
287: --
288: exception
289: when hr_multi_message.error_message_exist then

Line 289: when hr_multi_message.error_message_exist then

285: p_return_status := hr_multi_message.get_return_status_disable;
286: hr_utility.set_location(' Leaving:' || l_proc,20);
287: --
288: exception
289: when hr_multi_message.error_message_exist then
290: --
291: -- Catch the Multiple Message List exception which
292: -- indicates API processing has been aborted because
293: -- at least one message exists in the list.

Line 300: p_return_status := hr_multi_message.get_return_status_disable;

296: --
297: -- Reset IN OUT parameters and set OUT parameters
298: --
299: p_object_version_number := l_object_version_number;
300: p_return_status := hr_multi_message.get_return_status_disable;
301: hr_utility.set_location(' Leaving:' || l_proc, 30);
302: when others then
303: --
304: -- When Multiple Message Detection is enabled catch

Line 311: if hr_multi_message.unexpected_error_add(l_proc) then

307: -- Multiple Message List. Otherwise re-raise the
308: -- error.
309: --
310: rollback to update_au_process_module_swi;
311: if hr_multi_message.unexpected_error_add(l_proc) then
312: hr_utility.set_location(' Leaving:' || l_proc,40);
313: raise;
314: end if;
315: --

Line 319: p_return_status := hr_multi_message.get_return_status_disable;

315: --
316: -- Reset IN OUT and set OUT parameters
317: --
318: p_object_version_number := l_object_version_number;
319: p_return_status := hr_multi_message.get_return_status_disable;
320: hr_utility.set_location(' Leaving:' || l_proc,50);
321: end update_au_process_module;
322: begin
323: g_package := 'pay_au_process_modules_swi.';