DBA Data[Home] [Help]

APPS.IRC_LINKED_CANDIDATES_SWI dependencies on HR_MULTI_MESSAGE

Line 40: hr_multi_message.enable_message_list;

36: savepoint create_linked_candidates_swi;
37: --
38: -- Initialise Multiple Message Detection
39: --
40: hr_multi_message.enable_message_list;
41: --
42: -- Remember IN OUT parameter IN values
43: --
44: --

Line 80: p_return_status := hr_multi_message.get_return_status_disable;

76: -- Derive the API return status value based on whether
77: -- messages of any type exist in the Multiple Message List.
78: -- Also disable Multiple Message Detection.
79: --
80: p_return_status := hr_multi_message.get_return_status_disable;
81: hr_utility.set_location(' Leaving:' || l_proc,20);
82: --
83: exception
84: when hr_multi_message.error_message_exist then

Line 84: when hr_multi_message.error_message_exist then

80: p_return_status := hr_multi_message.get_return_status_disable;
81: hr_utility.set_location(' Leaving:' || l_proc,20);
82: --
83: exception
84: when hr_multi_message.error_message_exist then
85: --
86: -- Catch the Multiple Message List exception which
87: -- indicates API processing has been aborted because
88: -- at least one message exists in the list.

Line 95: p_return_status := hr_multi_message.get_return_status_disable;

91: --
92: -- Reset IN OUT parameters and set OUT parameters
93: --
94: p_object_version_number := null;
95: p_return_status := hr_multi_message.get_return_status_disable;
96: hr_utility.set_location(' Leaving:' || l_proc, 30);
97: when others then
98: --
99: -- When Multiple Message Detection is enabled catch

Line 106: if hr_multi_message.unexpected_error_add(l_proc) then

102: -- Multiple Message List. Otherwise re-raise the
103: -- error.
104: --
105: rollback to create_linked_candidates_swi;
106: if hr_multi_message.unexpected_error_add(l_proc) then
107: hr_utility.set_location(' Leaving:' || l_proc,40);
108: raise;
109: end if;
110: --

Line 114: p_return_status := hr_multi_message.get_return_status_disable;

110: --
111: -- Reset IN OUT and set OUT parameters
112: --
113: p_object_version_number := null;
114: p_return_status := hr_multi_message.get_return_status_disable;
115: hr_utility.set_location(' Leaving:' || l_proc,50);
116: end create_linked_candidate;
117: -- ----------------------------------------------------------------------------
118: -- |-------------------------< update_linked_candidate >----------------------|

Line 148: hr_multi_message.enable_message_list;

144: savepoint update_linked_candidates_swi;
145: --
146: -- Initialise Multiple Message Detection
147: --
148: hr_multi_message.enable_message_list;
149: --
150: -- Remember IN OUT parameter IN values
151: --
152: l_object_version_number := p_object_version_number;

Line 186: p_return_status := hr_multi_message.get_return_status_disable;

182: -- Derive the API return status value based on whether
183: -- messages of any type exist in the Multiple Message List.
184: -- Also disable Multiple Message Detection.
185: --
186: p_return_status := hr_multi_message.get_return_status_disable;
187: hr_utility.set_location(' Leaving:' || l_proc,20);
188: --
189: exception
190: when hr_multi_message.error_message_exist then

Line 190: when hr_multi_message.error_message_exist then

186: p_return_status := hr_multi_message.get_return_status_disable;
187: hr_utility.set_location(' Leaving:' || l_proc,20);
188: --
189: exception
190: when hr_multi_message.error_message_exist then
191: --
192: -- Catch the Multiple Message List exception which
193: -- indicates API processing has been aborted because
194: -- at least one message exists in the list.

Line 201: p_return_status := hr_multi_message.get_return_status_disable;

197: --
198: -- Reset IN OUT parameters and set OUT parameters
199: --
200: p_object_version_number := l_object_version_number;
201: p_return_status := hr_multi_message.get_return_status_disable;
202: hr_utility.set_location(' Leaving:' || l_proc, 30);
203: when others then
204: --
205: -- When Multiple Message Detection is enabled catch

Line 212: if hr_multi_message.unexpected_error_add(l_proc) then

208: -- Multiple Message List. Otherwise re-raise the
209: -- error.
210: --
211: rollback to update_linked_candidates_swi;
212: if hr_multi_message.unexpected_error_add(l_proc) then
213: hr_utility.set_location(' Leaving:' || l_proc,40);
214: raise;
215: end if;
216: --

Line 220: p_return_status := hr_multi_message.get_return_status_disable;

216: --
217: -- Reset IN OUT and set OUT parameters
218: --
219: p_object_version_number := l_object_version_number;
220: p_return_status := hr_multi_message.get_return_status_disable;
221: hr_utility.set_location(' Leaving:' || l_proc,50);
222: end update_linked_candidate;
223: -- ----------------------------------------------------------------------------
224: -- |-------------------------< delete_linked_candidate >----------------------|

Line 248: hr_multi_message.enable_message_list;

244: savepoint delete_linked_candidates_swi;
245: --
246: -- Initialise Multiple Message Detection
247: --
248: hr_multi_message.enable_message_list;
249: --
250: --
251: -- Convert constant values to their corresponding boolean value
252: --

Line 279: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 283: when hr_multi_message.error_message_exist then

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

Line 293: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 304: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 311: p_return_status := hr_multi_message.get_return_status_disable;

307: end if;
308: --
309: -- Reset IN OUT and set OUT parameters
310: --
311: p_return_status := hr_multi_message.get_return_status_disable;
312: hr_utility.set_location(' Leaving:' || l_proc,50);
313: end delete_linked_candidate;
314: ---
315: end IRC_LINKED_CANDIDATES_SWI;