DBA Data[Home] [Help]

APPS.IRC_ASG_STATUS_SWI dependencies on HR_MULTI_MESSAGE

Line 39: hr_multi_message.enable_message_list;

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

Line 79: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 83: when hr_multi_message.error_message_exist then

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

Line 94: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 105: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 113: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 142: hr_multi_message.enable_message_list;

138: savepoint delete_irc_asg_status_swi;
139: --
140: -- Initialise Multiple Message Detection
141: --
142: hr_multi_message.enable_message_list;
143: --
144: -- Remember IN OUT parameter IN values
145: --
146: --

Line 175: p_return_status := hr_multi_message.get_return_status_disable;

171: -- Derive the API return status value based on whether
172: -- messages of any type exist in the Multiple Message List.
173: -- Also disable Multiple Message Detection.
174: --
175: p_return_status := hr_multi_message.get_return_status_disable;
176: hr_utility.set_location(' Leaving:' || l_proc,20);
177: --
178: exception
179: when hr_multi_message.error_message_exist then

Line 179: when hr_multi_message.error_message_exist then

175: p_return_status := hr_multi_message.get_return_status_disable;
176: hr_utility.set_location(' Leaving:' || l_proc,20);
177: --
178: exception
179: when hr_multi_message.error_message_exist then
180: --
181: -- Catch the Multiple Message List exception which
182: -- indicates API processing has been aborted because
183: -- at least one error message exists in the list.

Line 189: p_return_status := hr_multi_message.get_return_status_disable;

185: rollback to delete_irc_asg_status_swi;
186: --
187: -- Reset IN OUT paramters and set OUT parameters
188: --
189: p_return_status := hr_multi_message.get_return_status_disable;
190: hr_utility.set_location(' Leaving:' || l_proc,30);
191: when others then
192: --
193: -- When Multiple Message Detection is enabled catch

Line 200: if hr_multi_message.unexpected_error_add(l_proc) then

196: -- Multiple Message List. Otherwise re-raise
197: -- the error.
198: --
199: rollback to delete_irc_asg_status_swi;
200: if hr_multi_message.unexpected_error_add(l_proc) then
201: hr_utility.set_location(' Leaving:' || l_proc, 40);
202: raise;
203: end if;
204: --

Line 207: p_return_status := hr_multi_message.get_return_status_disable;

203: end if;
204: --
205: -- Reset IN OUT parameters and set OUT parameters
206: --
207: p_return_status := hr_multi_message.get_return_status_disable;
208: hr_utility.set_location(' Leaving: ' || l_proc, 50);
209: end delete_irc_asg_status;
210: -- ----------------------------------------------------------------------------
211: -- |-------------------------< update_irc_asg_status >------------------------|

Line 239: hr_multi_message.enable_message_list;

235: savepoint update_irc_asg_status_swi;
236: --
237: -- Initialise Multiple Message Detection
238: --
239: hr_multi_message.enable_message_list;
240: --
241: -- Remember IN OUT parameter IN values
242: --
243: l_object_version_number := p_object_version_number;

Line 275: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 279: when hr_multi_message.error_message_exist then

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

Line 290: p_return_status := hr_multi_message.get_return_status_disable;

286: --
287: -- Reset IN OUT paramters and set OUT parameters
288: --
289: p_object_version_number := l_object_version_number;
290: p_return_status := hr_multi_message.get_return_status_disable;
291: hr_utility.set_location(' Leaving:' || l_proc,30);
292: when others then
293: --
294: -- When Multiple Message Detection is enabled catch

Line 301: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 309: p_return_status := hr_multi_message.get_return_status_disable;

305: --
306: -- Reset IN OUT parameters and set OUT parameters
307: --
308: p_object_version_number := l_object_version_number;
309: p_return_status := hr_multi_message.get_return_status_disable;
310: hr_utility.set_location(' Leaving: ' || l_proc, 50);
311: end update_irc_asg_status;
312: end irc_asg_status_swi;