DBA Data[Home] [Help]

APPS.IRC_INTERVIEW_DETAILS_SWI dependencies on HR_MULTI_MESSAGE

Line 65: hr_multi_message.enable_message_list;

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

Line 131: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 135: when hr_multi_message.error_message_exist then

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

Line 148: p_return_status := hr_multi_message.get_return_status_disable;

144: --
145: p_object_version_number := null;
146: p_start_date := null;
147: p_end_date := 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_interview_details_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 169: p_return_status := hr_multi_message.get_return_status_disable;

165: --
166: p_object_version_number := null;
167: p_start_date := null;
168: p_end_date := null;
169: p_return_status := hr_multi_message.get_return_status_disable;
170: hr_utility.set_location(' Leaving:' || l_proc,50);
171: end create_irc_interview_details;
172: -- ----------------------------------------------------------------------------
173: -- |-------------------------< update_irc_interview_details >--------------------|

Line 229: hr_multi_message.enable_message_list;

225: savepoint update_interview_details_swi;
226: --
227: -- Initialise Multiple Message Detection
228: --
229: hr_multi_message.enable_message_list;
230: --
231: -- Remember IN OUT parameter IN values
232: --
233: l_object_version_number := p_object_version_number;

Line 293: p_return_status := hr_multi_message.get_return_status_disable;

289: -- Derive the API return status value based on whether
290: -- messages of any type exist in the Multiple Message List.
291: -- Also disable Multiple Message Detection.
292: --
293: p_return_status := hr_multi_message.get_return_status_disable;
294: hr_utility.set_location(' Leaving:' || l_proc,20);
295: --
296: exception
297: when hr_multi_message.error_message_exist then

Line 297: when hr_multi_message.error_message_exist then

293: p_return_status := hr_multi_message.get_return_status_disable;
294: hr_utility.set_location(' Leaving:' || l_proc,20);
295: --
296: exception
297: when hr_multi_message.error_message_exist then
298: --
299: -- Catch the Multiple Message List exception which
300: -- indicates API processing has been aborted because
301: -- at least one message exists in the list.

Line 310: p_return_status := hr_multi_message.get_return_status_disable;

306: --
307: p_object_version_number := l_object_version_number;
308: p_start_date := null;
309: p_end_date := null;
310: p_return_status := hr_multi_message.get_return_status_disable;
311: hr_utility.set_location(' Leaving:' || l_proc, 30);
312: when others then
313: --
314: -- When Multiple Message Detection is enabled catch

Line 321: if hr_multi_message.unexpected_error_add(l_proc) then

317: -- Multiple Message List. Otherwise re-raise the
318: -- error.
319: --
320: rollback to update_interview_details_swi;
321: if hr_multi_message.unexpected_error_add(l_proc) then
322: hr_utility.set_location(' Leaving:' || l_proc,40);
323: raise;
324: end if;
325: --

Line 331: p_return_status := hr_multi_message.get_return_status_disable;

327: --
328: p_object_version_number := l_object_version_number;
329: p_start_date := null;
330: p_end_date := null;
331: p_return_status := hr_multi_message.get_return_status_disable;
332: hr_utility.set_location(' Leaving:' || l_proc,50);
333: end update_irc_interview_details;
334: ---
335: end irc_interview_details_swi;