DBA Data[Home] [Help]

APPS.PAY_AU_PROCESS_PARAMETERS_SWI dependencies on HR_MULTI_MESSAGE

Line 41: hr_multi_message.enable_message_list;

37: savepoint create_au_process_para_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 97: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 108: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 117: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 148: hr_multi_message.enable_message_list;

144: savepoint delete_au_process_para_swi;
145: --
146: -- Initialise Multiple Message Detection
147: --
148: hr_multi_message.enable_message_list;
149: --
150: -- Remember IN OUT parameter IN values
151: --
152: --

Line 181: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 185: when hr_multi_message.error_message_exist then

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

Line 195: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 206: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 213: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 249: hr_multi_message.enable_message_list;

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

Line 287: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 291: when hr_multi_message.error_message_exist then

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

Line 302: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 313: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 321: p_return_status := hr_multi_message.get_return_status_disable;

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