DBA Data[Home] [Help]

APPS.PAY_AU_MODULE_PARAMETERS_SWI dependencies on HR_MULTI_MESSAGE

Line 50: hr_multi_message.enable_message_list;

46: savepoint create_au_module_parameter_swi;
47: --
48: -- Initialise Multiple Message Detection
49: --
50: hr_multi_message.enable_message_list;
51: --
52: -- Remember IN OUT parameter IN values
53: --
54: --

Line 99: p_return_status := hr_multi_message.get_return_status_disable;

95: -- Derive the API return status value based on whether
96: -- messages of any type exist in the Multiple Message List.
97: -- Also disable Multiple Message Detection.
98: --
99: p_return_status := hr_multi_message.get_return_status_disable;
100: hr_utility.set_location(' Leaving:' || l_proc,20);
101: --
102: exception
103: when hr_multi_message.error_message_exist then

Line 103: when hr_multi_message.error_message_exist then

99: p_return_status := hr_multi_message.get_return_status_disable;
100: hr_utility.set_location(' Leaving:' || l_proc,20);
101: --
102: exception
103: when hr_multi_message.error_message_exist then
104: --
105: -- Catch the Multiple Message List exception which
106: -- indicates API processing has been aborted because
107: -- at least one message exists in the list.

Line 115: p_return_status := hr_multi_message.get_return_status_disable;

111: -- Reset IN OUT parameters and set OUT parameters
112: --
113: p_module_parameter_id := null;
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, 30);
117: when others then
118: --
119: -- When Multiple Message Detection is enabled catch

Line 126: if hr_multi_message.unexpected_error_add(l_proc) then

122: -- Multiple Message List. Otherwise re-raise the
123: -- error.
124: --
125: rollback to create_au_module_parameter_swi;
126: if hr_multi_message.unexpected_error_add(l_proc) then
127: hr_utility.set_location(' Leaving:' || l_proc,40);
128: raise;
129: end if;
130: --

Line 135: p_return_status := hr_multi_message.get_return_status_disable;

131: -- Reset IN OUT and set OUT parameters
132: --
133: p_module_parameter_id := null;
134: p_object_version_number := null;
135: p_return_status := hr_multi_message.get_return_status_disable;
136: hr_utility.set_location(' Leaving:' || l_proc,50);
137: end create_au_module_parameter;
138: -- ----------------------------------------------------------------------------
139: -- |----------------------< delete_au_module_parameter >----------------------|

Line 166: hr_multi_message.enable_message_list;

162: savepoint delete_au_module_parameter_swi;
163: --
164: -- Initialise Multiple Message Detection
165: --
166: hr_multi_message.enable_message_list;
167: --
168: -- Remember IN OUT parameter IN values
169: --
170: --

Line 199: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 203: when hr_multi_message.error_message_exist then

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

Line 213: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 224: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 231: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 276: hr_multi_message.enable_message_list;

272: savepoint update_au_module_parameter_swi;
273: --
274: -- Initialise Multiple Message Detection
275: --
276: hr_multi_message.enable_message_list;
277: --
278: -- Remember IN OUT parameter IN values
279: --
280: l_object_version_number := p_object_version_number;

Line 323: p_return_status := hr_multi_message.get_return_status_disable;

319: -- Derive the API return status value based on whether
320: -- messages of any type exist in the Multiple Message List.
321: -- Also disable Multiple Message Detection.
322: --
323: p_return_status := hr_multi_message.get_return_status_disable;
324: hr_utility.set_location(' Leaving:' || l_proc,20);
325: --
326: exception
327: when hr_multi_message.error_message_exist then

Line 327: when hr_multi_message.error_message_exist then

323: p_return_status := hr_multi_message.get_return_status_disable;
324: hr_utility.set_location(' Leaving:' || l_proc,20);
325: --
326: exception
327: when hr_multi_message.error_message_exist then
328: --
329: -- Catch the Multiple Message List exception which
330: -- indicates API processing has been aborted because
331: -- at least one message exists in the list.

Line 338: p_return_status := hr_multi_message.get_return_status_disable;

334: --
335: -- Reset IN OUT parameters and set OUT parameters
336: --
337: p_object_version_number := l_object_version_number;
338: p_return_status := hr_multi_message.get_return_status_disable;
339: hr_utility.set_location(' Leaving:' || l_proc, 30);
340: when others then
341: --
342: -- When Multiple Message Detection is enabled catch

Line 349: if hr_multi_message.unexpected_error_add(l_proc) then

345: -- Multiple Message List. Otherwise re-raise the
346: -- error.
347: --
348: rollback to update_au_module_parameter_swi;
349: if hr_multi_message.unexpected_error_add(l_proc) then
350: hr_utility.set_location(' Leaving:' || l_proc,40);
351: raise;
352: end if;
353: --

Line 357: p_return_status := hr_multi_message.get_return_status_disable;

353: --
354: -- Reset IN OUT and set OUT parameters
355: --
356: p_object_version_number := l_object_version_number;
357: p_return_status := hr_multi_message.get_return_status_disable;
358: hr_utility.set_location(' Leaving:' || l_proc,50);
359: end update_au_module_parameter;
360: begin
361: g_package := 'pay_au_module_parameters_swi.';