DBA Data[Home] [Help]

APPS.PQH_COPY_ENTITY_ATTRIBS_SWI dependencies on HR_MULTI_MESSAGE

Line 68: hr_multi_message.enable_message_list;

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

Line 135: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 139: when hr_multi_message.error_message_exist then

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

Line 151: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 162: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 171: p_return_status := hr_multi_message.get_return_status_disable;

167: -- Reset IN OUT and set OUT parameters
168: --
169: p_copy_entity_attrib_id := null;
170: p_object_version_number := null;
171: p_return_status := hr_multi_message.get_return_status_disable;
172: hr_utility.set_location(' Leaving:' || l_proc,50);
173: end create_copy_entity_attrib;
174: -- ----------------------------------------------------------------------------
175: -- |-----------------------< delete_copy_entity_attrib >----------------------|

Line 201: hr_multi_message.enable_message_list;

197: savepoint delete_copy_entity_attrib_swi;
198: --
199: -- Initialise Multiple Message Detection
200: --
201: hr_multi_message.enable_message_list;
202: --
203: -- Remember IN OUT parameter IN values
204: --
205: --

Line 235: p_return_status := hr_multi_message.get_return_status_disable;

231: -- Derive the API return status value based on whether
232: -- messages of any type exist in the Multiple Message List.
233: -- Also disable Multiple Message Detection.
234: --
235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc,20);
237: --
238: exception
239: when hr_multi_message.error_message_exist then

Line 239: when hr_multi_message.error_message_exist then

235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc,20);
237: --
238: exception
239: when hr_multi_message.error_message_exist then
240: --
241: -- Catch the Multiple Message List exception which
242: -- indicates API processing has been aborted because
243: -- at least one message exists in the list.

Line 249: p_return_status := hr_multi_message.get_return_status_disable;

245: rollback to delete_copy_entity_attrib_swi;
246: --
247: -- Reset IN OUT parameters and set OUT parameters
248: --
249: p_return_status := hr_multi_message.get_return_status_disable;
250: hr_utility.set_location(' Leaving:' || l_proc, 30);
251: when others then
252: --
253: -- When Multiple Message Detection is enabled catch

Line 260: if hr_multi_message.unexpected_error_add(l_proc) then

256: -- Multiple Message List. Otherwise re-raise the
257: -- error.
258: --
259: rollback to delete_copy_entity_attrib_swi;
260: if hr_multi_message.unexpected_error_add(l_proc) then
261: hr_utility.set_location(' Leaving:' || l_proc,40);
262: raise;
263: end if;
264: --

Line 267: p_return_status := hr_multi_message.get_return_status_disable;

263: end if;
264: --
265: -- Reset IN OUT and set OUT parameters
266: --
267: p_return_status := hr_multi_message.get_return_status_disable;
268: hr_utility.set_location(' Leaving:' || l_proc,50);
269: end delete_copy_entity_attrib;
270: -- ----------------------------------------------------------------------------
271: -- |-----------------------< update_copy_entity_attrib >----------------------|

Line 331: hr_multi_message.enable_message_list;

327: savepoint update_copy_entity_attrib_swi;
328: --
329: -- Initialise Multiple Message Detection
330: --
331: hr_multi_message.enable_message_list;
332: --
333: -- Remember IN OUT parameter IN values
334: --
335: l_object_version_number := p_object_version_number;

Line 399: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 403: when hr_multi_message.error_message_exist then

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

Line 414: p_return_status := hr_multi_message.get_return_status_disable;

410: --
411: -- Reset IN OUT parameters and set OUT parameters
412: --
413: p_object_version_number := l_object_version_number;
414: p_return_status := hr_multi_message.get_return_status_disable;
415: hr_utility.set_location(' Leaving:' || l_proc, 30);
416: when others then
417: --
418: -- When Multiple Message Detection is enabled catch

Line 425: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 433: p_return_status := hr_multi_message.get_return_status_disable;

429: --
430: -- Reset IN OUT and set OUT parameters
431: --
432: p_object_version_number := l_object_version_number;
433: p_return_status := hr_multi_message.get_return_status_disable;
434: hr_utility.set_location(' Leaving:' || l_proc,50);
435: end update_copy_entity_attrib;
436: end pqh_copy_entity_attribs_swi;