DBA Data[Home] [Help]

APPS.PER_POSITION_STRUCTURE_SWI dependencies on HR_MULTI_MESSAGE

Line 64: hr_multi_message.enable_message_list;

60: savepoint create_position_structure_swi;
61: --
62: -- Initialise Multiple Message Detection
63: --
64: hr_multi_message.enable_message_list;
65: --
66: -- Remember IN OUT parameter IN values
67: --
68: --

Line 127: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 131: when hr_multi_message.error_message_exist then

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

Line 143: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 154: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 163: p_return_status := hr_multi_message.get_return_status_disable;

159: -- Reset IN OUT and set OUT parameters
160: --
161: p_position_structure_id := null;
162: p_object_version_number := null;
163: p_return_status := hr_multi_message.get_return_status_disable;
164: hr_utility.set_location(' Leaving:' || l_proc,50);
165: end create_position_structure;
166: -- ----------------------------------------------------------------------------
167: -- |---------------------< create_pos_struct_and_def_ver >--------------------|

Line 222: hr_multi_message.enable_message_list;

218: savepoint create_pos_struct_def_ver_swi;
219: --
220: -- Initialise Multiple Message Detection
221: --
222: hr_multi_message.enable_message_list;
223: --
224: -- Remember IN OUT parameter IN values
225: --
226: --

Line 285: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 289: when hr_multi_message.error_message_exist then

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

Line 301: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 312: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 321: p_return_status := hr_multi_message.get_return_status_disable;

317: -- Reset IN OUT and set OUT parameters
318: --
319: p_position_structure_id := null;
320: p_object_version_number := null;
321: p_return_status := hr_multi_message.get_return_status_disable;
322: hr_utility.set_location(' Leaving:' || l_proc,50);
323: end create_pos_struct_and_def_ver;
324: -- ----------------------------------------------------------------------------
325: -- |-----------------------< delete_position_structure >----------------------|

Line 350: hr_multi_message.enable_message_list;

346: savepoint delete_position_structure_swi;
347: --
348: -- Initialise Multiple Message Detection
349: --
350: hr_multi_message.enable_message_list;
351: --
352: -- Remember IN OUT parameter IN values
353: --
354: --

Line 383: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 387: when hr_multi_message.error_message_exist then

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

Line 397: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 408: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 415: p_return_status := hr_multi_message.get_return_status_disable;

411: end if;
412: --
413: -- Reset IN OUT and set OUT parameters
414: --
415: p_return_status := hr_multi_message.get_return_status_disable;
416: hr_utility.set_location(' Leaving:' || l_proc,50);
417: end delete_position_structure;
418: -- ----------------------------------------------------------------------------
419: -- |-----------------------< update_position_structure >----------------------|

Line 474: hr_multi_message.enable_message_list;

470: savepoint update_position_structure_swi;
471: --
472: -- Initialise Multiple Message Detection
473: --
474: hr_multi_message.enable_message_list;
475: --
476: -- Remember IN OUT parameter IN values
477: --
478: l_object_version_number := p_object_version_number;

Line 537: p_return_status := hr_multi_message.get_return_status_disable;

533: -- Derive the API return status value based on whether
534: -- messages of any type exist in the Multiple Message List.
535: -- Also disable Multiple Message Detection.
536: --
537: p_return_status := hr_multi_message.get_return_status_disable;
538: hr_utility.set_location(' Leaving:' || l_proc,20);
539: --
540: exception
541: when hr_multi_message.error_message_exist then

Line 541: when hr_multi_message.error_message_exist then

537: p_return_status := hr_multi_message.get_return_status_disable;
538: hr_utility.set_location(' Leaving:' || l_proc,20);
539: --
540: exception
541: when hr_multi_message.error_message_exist then
542: --
543: -- Catch the Multiple Message List exception which
544: -- indicates API processing has been aborted because
545: -- at least one message exists in the list.

Line 552: p_return_status := hr_multi_message.get_return_status_disable;

548: --
549: -- Reset IN OUT parameters and set OUT parameters
550: --
551: p_object_version_number := l_object_version_number;
552: p_return_status := hr_multi_message.get_return_status_disable;
553: hr_utility.set_location(' Leaving:' || l_proc, 30);
554: when others then
555: --
556: -- When Multiple Message Detection is enabled catch

Line 563: if hr_multi_message.unexpected_error_add(l_proc) then

559: -- Multiple Message List. Otherwise re-raise the
560: -- error.
561: --
562: rollback to update_position_structure_swi;
563: if hr_multi_message.unexpected_error_add(l_proc) then
564: hr_utility.set_location(' Leaving:' || l_proc,40);
565: raise;
566: end if;
567: --

Line 571: p_return_status := hr_multi_message.get_return_status_disable;

567: --
568: -- Reset IN OUT and set OUT parameters
569: --
570: p_object_version_number := l_object_version_number;
571: p_return_status := hr_multi_message.get_return_status_disable;
572: hr_utility.set_location(' Leaving:' || l_proc,50);
573: end update_position_structure;
574: end per_position_structure_swi;