DBA Data[Home] [Help]

APPS.PER_ESTAB_ATTENDANCES_SWI dependencies on HR_MULTI_MESSAGE

Line 66: hr_multi_message.enable_message_list;

62: savepoint create_attended_estab_swi;
63: --
64: -- Initialise Multiple Message Detection
65: --
66: hr_multi_message.enable_message_list;
67: --
68: -- Remember IN OUT parameter IN values
69: --
70: --

Line 133: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 137: when hr_multi_message.error_message_exist then

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

Line 148: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 159: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 167: p_return_status := hr_multi_message.get_return_status_disable;

163: --
164: -- Reset IN OUT and set OUT parameters
165: --
166: p_object_version_number := null;
167: p_return_status := hr_multi_message.get_return_status_disable;
168: hr_utility.set_location(' Leaving:' || l_proc,50);
169: end create_attended_estab;
170: -- ----------------------------------------------------------------------------
171: -- |-------------------------< delete_attended_estab >------------------------|

Line 196: hr_multi_message.enable_message_list;

192: savepoint delete_attended_estab_swi;
193: --
194: -- Initialise Multiple Message Detection
195: --
196: hr_multi_message.enable_message_list;
197: --
198: -- Remember IN OUT parameter IN values
199: --
200: --

Line 229: p_return_status := hr_multi_message.get_return_status_disable;

225: -- Derive the API return status value based on whether
226: -- messages of any type exist in the Multiple Message List.
227: -- Also disable Multiple Message Detection.
228: --
229: p_return_status := hr_multi_message.get_return_status_disable;
230: hr_utility.set_location(' Leaving:' || l_proc,20);
231: --
232: exception
233: when hr_multi_message.error_message_exist then

Line 233: when hr_multi_message.error_message_exist then

229: p_return_status := hr_multi_message.get_return_status_disable;
230: hr_utility.set_location(' Leaving:' || l_proc,20);
231: --
232: exception
233: when hr_multi_message.error_message_exist then
234: --
235: -- Catch the Multiple Message List exception which
236: -- indicates API processing has been aborted because
237: -- at least one message exists in the list.

Line 243: p_return_status := hr_multi_message.get_return_status_disable;

239: rollback to delete_attended_estab_swi;
240: --
241: -- Reset IN OUT parameters and set OUT parameters
242: --
243: p_return_status := hr_multi_message.get_return_status_disable;
244: hr_utility.set_location(' Leaving:' || l_proc, 30);
245: when others then
246: --
247: -- When Multiple Message Detection is enabled catch

Line 254: if hr_multi_message.unexpected_error_add(l_proc) then

250: -- Multiple Message List. Otherwise re-raise the
251: -- error.
252: --
253: rollback to delete_attended_estab_swi;
254: if hr_multi_message.unexpected_error_add(l_proc) then
255: hr_utility.set_location(' Leaving:' || l_proc,40);
256: raise;
257: end if;
258: --

Line 261: p_return_status := hr_multi_message.get_return_status_disable;

257: end if;
258: --
259: -- Reset IN OUT and set OUT parameters
260: --
261: p_return_status := hr_multi_message.get_return_status_disable;
262: hr_utility.set_location(' Leaving:' || l_proc,50);
263: end delete_attended_estab;
264: -- ----------------------------------------------------------------------------
265: -- |-------------------------< update_attended_estab >------------------------|

Line 319: hr_multi_message.enable_message_list;

315: savepoint update_attended_estab_swi;
316: --
317: -- Initialise Multiple Message Detection
318: --
319: hr_multi_message.enable_message_list;
320: --
321: -- Remember IN OUT parameter IN values
322: --
323: l_object_version_number := p_object_version_number;

Line 381: p_return_status := hr_multi_message.get_return_status_disable;

377: -- Derive the API return status value based on whether
378: -- messages of any type exist in the Multiple Message List.
379: -- Also disable Multiple Message Detection.
380: --
381: p_return_status := hr_multi_message.get_return_status_disable;
382: hr_utility.set_location(' Leaving:' || l_proc,20);
383: --
384: exception
385: when hr_multi_message.error_message_exist then

Line 385: when hr_multi_message.error_message_exist then

381: p_return_status := hr_multi_message.get_return_status_disable;
382: hr_utility.set_location(' Leaving:' || l_proc,20);
383: --
384: exception
385: when hr_multi_message.error_message_exist then
386: --
387: -- Catch the Multiple Message List exception which
388: -- indicates API processing has been aborted because
389: -- at least one message exists in the list.

Line 396: p_return_status := hr_multi_message.get_return_status_disable;

392: --
393: -- Reset IN OUT parameters and set OUT parameters
394: --
395: p_object_version_number := l_object_version_number;
396: p_return_status := hr_multi_message.get_return_status_disable;
397: hr_utility.set_location(' Leaving:' || l_proc, 30);
398: when others then
399: --
400: -- When Multiple Message Detection is enabled catch

Line 407: if hr_multi_message.unexpected_error_add(l_proc) then

403: -- Multiple Message List. Otherwise re-raise the
404: -- error.
405: --
406: rollback to update_attended_estab_swi;
407: if hr_multi_message.unexpected_error_add(l_proc) then
408: hr_utility.set_location(' Leaving:' || l_proc,40);
409: raise;
410: end if;
411: --

Line 415: p_return_status := hr_multi_message.get_return_status_disable;

411: --
412: -- Reset IN OUT and set OUT parameters
413: --
414: p_object_version_number := l_object_version_number;
415: p_return_status := hr_multi_message.get_return_status_disable;
416: hr_utility.set_location(' Leaving:' || l_proc,50);
417: end update_attended_estab;
418: end per_estab_attendances_swi;