DBA Data[Home] [Help]

APPS.OTA_CERT_MBR_ENROLLMENT_SWI dependencies on HR_MULTI_MESSAGE

Line 62: hr_multi_message.enable_message_list;

58: savepoint create_cert_mbr_enrollment_swi;
59: --
60: -- Initialise Multiple Message Detection
61: --
62: hr_multi_message.enable_message_list;
63: --
64: -- Remember IN OUT parameter IN values
65: --
66: --

Line 125: p_return_status := hr_multi_message.get_return_status_disable;

121: -- Derive the API return status value based on whether
122: -- messages of any type exist in the Multiple Message List.
123: -- Also disable Multiple Message Detection.
124: --
125: p_return_status := hr_multi_message.get_return_status_disable;
126: hr_utility.set_location(' Leaving:' || l_proc,20);
127: --
128: exception
129: when hr_multi_message.error_message_exist then

Line 129: when hr_multi_message.error_message_exist then

125: p_return_status := hr_multi_message.get_return_status_disable;
126: hr_utility.set_location(' Leaving:' || l_proc,20);
127: --
128: exception
129: when hr_multi_message.error_message_exist then
130: --
131: -- Catch the Multiple Message List exception which
132: -- indicates API processing has been aborted because
133: -- at least one message exists in the list.

Line 140: p_return_status := hr_multi_message.get_return_status_disable;

136: --
137: -- Reset IN OUT parameters and set OUT parameters
138: --
139: p_object_version_number := null;
140: p_return_status := hr_multi_message.get_return_status_disable;
141: hr_utility.set_location(' Leaving:' || l_proc, 30);
142: when others then
143: --
144: -- When Multiple Message Detection is enabled catch

Line 151: if hr_multi_message.unexpected_error_add(l_proc) then

147: -- Multiple Message List. Otherwise re-raise the
148: -- error.
149: --
150: rollback to create_cert_mbr_enrollment_swi;
151: if hr_multi_message.unexpected_error_add(l_proc) then
152: hr_utility.set_location(' Leaving:' || l_proc,40);
153: raise;
154: end if;
155: --

Line 159: p_return_status := hr_multi_message.get_return_status_disable;

155: --
156: -- Reset IN OUT and set OUT parameters
157: --
158: p_object_version_number := null;
159: p_return_status := hr_multi_message.get_return_status_disable;
160: hr_utility.set_location(' Leaving:' || l_proc,50);
161: end create_cert_mbr_enrollment;
162: -- ----------------------------------------------------------------------------
163: -- |----------------------< update_cert_mbr_enrollment >----------------------|

Line 216: hr_multi_message.enable_message_list;

212: savepoint update_cert_mbr_enrollment_swi;
213: --
214: -- Initialise Multiple Message Detection
215: --
216: hr_multi_message.enable_message_list;
217: --
218: -- Remember IN OUT parameter IN values
219: --
220: l_object_version_number := p_object_version_number;

Line 277: p_return_status := hr_multi_message.get_return_status_disable;

273: -- Derive the API return status value based on whether
274: -- messages of any type exist in the Multiple Message List.
275: -- Also disable Multiple Message Detection.
276: --
277: p_return_status := hr_multi_message.get_return_status_disable;
278: hr_utility.set_location(' Leaving:' || l_proc,20);
279: --
280: exception
281: when hr_multi_message.error_message_exist then

Line 281: when hr_multi_message.error_message_exist then

277: p_return_status := hr_multi_message.get_return_status_disable;
278: hr_utility.set_location(' Leaving:' || l_proc,20);
279: --
280: exception
281: when hr_multi_message.error_message_exist then
282: --
283: -- Catch the Multiple Message List exception which
284: -- indicates API processing has been aborted because
285: -- at least one message exists in the list.

Line 292: p_return_status := hr_multi_message.get_return_status_disable;

288: --
289: -- Reset IN OUT parameters and set OUT parameters
290: --
291: p_object_version_number := l_object_version_number;
292: p_return_status := hr_multi_message.get_return_status_disable;
293: hr_utility.set_location(' Leaving:' || l_proc, 30);
294: when others then
295: --
296: -- When Multiple Message Detection is enabled catch

Line 303: if hr_multi_message.unexpected_error_add(l_proc) then

299: -- Multiple Message List. Otherwise re-raise the
300: -- error.
301: --
302: rollback to update_cert_mbr_enrollment_swi;
303: if hr_multi_message.unexpected_error_add(l_proc) then
304: hr_utility.set_location(' Leaving:' || l_proc,40);
305: raise;
306: end if;
307: --

Line 311: p_return_status := hr_multi_message.get_return_status_disable;

307: --
308: -- Reset IN OUT and set OUT parameters
309: --
310: p_object_version_number := l_object_version_number;
311: p_return_status := hr_multi_message.get_return_status_disable;
312: hr_utility.set_location(' Leaving:' || l_proc,50);
313: end update_cert_mbr_enrollment;
314: -- ----------------------------------------------------------------------------
315: -- |----------------------< delete_cert_mbr_enrollment >----------------------|

Line 340: hr_multi_message.enable_message_list;

336: savepoint delete_cert_mbr_enrollment_swi;
337: --
338: -- Initialise Multiple Message Detection
339: --
340: hr_multi_message.enable_message_list;
341: --
342: -- Remember IN OUT parameter IN values
343: --
344: --

Line 373: p_return_status := hr_multi_message.get_return_status_disable;

369: -- Derive the API return status value based on whether
370: -- messages of any type exist in the Multiple Message List.
371: -- Also disable Multiple Message Detection.
372: --
373: p_return_status := hr_multi_message.get_return_status_disable;
374: hr_utility.set_location(' Leaving:' || l_proc,20);
375: --
376: exception
377: when hr_multi_message.error_message_exist then

Line 377: when hr_multi_message.error_message_exist then

373: p_return_status := hr_multi_message.get_return_status_disable;
374: hr_utility.set_location(' Leaving:' || l_proc,20);
375: --
376: exception
377: when hr_multi_message.error_message_exist then
378: --
379: -- Catch the Multiple Message List exception which
380: -- indicates API processing has been aborted because
381: -- at least one message exists in the list.

Line 387: p_return_status := hr_multi_message.get_return_status_disable;

383: rollback to delete_cert_mbr_enrollment_swi;
384: --
385: -- Reset IN OUT parameters and set OUT parameters
386: --
387: p_return_status := hr_multi_message.get_return_status_disable;
388: hr_utility.set_location(' Leaving:' || l_proc, 30);
389: when others then
390: --
391: -- When Multiple Message Detection is enabled catch

Line 398: if hr_multi_message.unexpected_error_add(l_proc) then

394: -- Multiple Message List. Otherwise re-raise the
395: -- error.
396: --
397: rollback to delete_cert_mbr_enrollment_swi;
398: if hr_multi_message.unexpected_error_add(l_proc) then
399: hr_utility.set_location(' Leaving:' || l_proc,40);
400: raise;
401: end if;
402: --

Line 405: p_return_status := hr_multi_message.get_return_status_disable;

401: end if;
402: --
403: -- Reset IN OUT and set OUT parameters
404: --
405: p_return_status := hr_multi_message.get_return_status_disable;
406: hr_utility.set_location(' Leaving:' || l_proc,50);
407: end delete_cert_mbr_enrollment;
408: end ota_cert_mbr_enrollment_swi;