DBA Data[Home] [Help]

APPS.IRC_ASG_STATUS_SWI dependencies on HR_MULTI_MESSAGE

Line 40: hr_multi_message.enable_message_list;

36: savepoint create_irc_asg_status_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 81: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 85: when hr_multi_message.error_message_exist then

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

Line 96: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 107: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 115: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 144: hr_multi_message.enable_message_list;

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

Line 177: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 181: when hr_multi_message.error_message_exist then

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

Line 191: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 202: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 209: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 242: hr_multi_message.enable_message_list;

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

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 error message exists in the list.

Line 294: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 305: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 313: p_return_status := hr_multi_message.get_return_status_disable;

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