DBA Data[Home] [Help]

APPS.HR_SCORECARD_SHARING_SWI dependencies on HR_MULTI_MESSAGE

Line 68: hr_multi_message.enable_message_list;

64: savepoint create_sharing_instance_swi;
65: --
66: -- Initialise Multiple Message Detection
67: --
68: hr_multi_message.enable_message_list;
69: --
70: -- Remember IN OUT parameter IN values
71: --
72: --

Line 137: p_return_status := hr_multi_message.get_return_status_disable;

133: -- Derive the API return status value based on whether
134: -- messages of any type exist in the Multiple Message List.
135: -- Also disable Multiple Message Detection.
136: --
137: p_return_status := hr_multi_message.get_return_status_disable;
138: hr_utility.set_location(' Leaving:' || l_proc,20);
139: --
140: exception
141: when hr_multi_message.error_message_exist then

Line 141: when hr_multi_message.error_message_exist then

137: p_return_status := hr_multi_message.get_return_status_disable;
138: hr_utility.set_location(' Leaving:' || l_proc,20);
139: --
140: exception
141: when hr_multi_message.error_message_exist then
142: --
143: -- Catch the Multiple Message List exception which
144: -- indicates API processing has been aborted because
145: -- at least one message exists in the list.

Line 152: p_return_status := hr_multi_message.get_return_status_disable;

148: --
149: -- Reset IN OUT parameters and set OUT parameters
150: --
151: p_object_version_number := null;
152: p_return_status := hr_multi_message.get_return_status_disable;
153: hr_utility.set_location(' Leaving:' || l_proc, 30);
154: when others then
155: --
156: -- When Multiple Message Detection is enabled catch

Line 163: if hr_multi_message.unexpected_error_add(l_proc) then

159: -- Multiple Message List. Otherwise re-raise the
160: -- error.
161: --
162: rollback to create_sharing_instance_swi;
163: if hr_multi_message.unexpected_error_add(l_proc) then
164: hr_utility.set_location(' Leaving:' || l_proc,40);
165: raise;
166: end if;
167: --

Line 171: p_return_status := hr_multi_message.get_return_status_disable;

167: --
168: -- Reset IN OUT and set OUT parameters
169: --
170: p_object_version_number := null;
171: p_return_status := hr_multi_message.get_return_status_disable;
172: hr_utility.set_location(' Leaving:' || l_proc,50);
173: end create_sharing_instance;
174: -- ----------------------------------------------------------------------------
175: -- |------------------------< delete_sharing_instance >-----------------------|

Line 200: hr_multi_message.enable_message_list;

196: savepoint delete_sharing_instance_swi;
197: --
198: -- Initialise Multiple Message Detection
199: --
200: hr_multi_message.enable_message_list;
201: --
202: -- Remember IN OUT parameter IN values
203: --
204: --

Line 233: p_return_status := hr_multi_message.get_return_status_disable;

229: -- Derive the API return status value based on whether
230: -- messages of any type exist in the Multiple Message List.
231: -- Also disable Multiple Message Detection.
232: --
233: p_return_status := hr_multi_message.get_return_status_disable;
234: hr_utility.set_location(' Leaving:' || l_proc,20);
235: --
236: exception
237: when hr_multi_message.error_message_exist then

Line 237: when hr_multi_message.error_message_exist then

233: p_return_status := hr_multi_message.get_return_status_disable;
234: hr_utility.set_location(' Leaving:' || l_proc,20);
235: --
236: exception
237: when hr_multi_message.error_message_exist then
238: --
239: -- Catch the Multiple Message List exception which
240: -- indicates API processing has been aborted because
241: -- at least one message exists in the list.

Line 247: p_return_status := hr_multi_message.get_return_status_disable;

243: rollback to delete_sharing_instance_swi;
244: --
245: -- Reset IN OUT parameters and set OUT parameters
246: --
247: p_return_status := hr_multi_message.get_return_status_disable;
248: hr_utility.set_location(' Leaving:' || l_proc, 30);
249: when others then
250: --
251: -- When Multiple Message Detection is enabled catch

Line 258: if hr_multi_message.unexpected_error_add(l_proc) then

254: -- Multiple Message List. Otherwise re-raise the
255: -- error.
256: --
257: rollback to delete_sharing_instance_swi;
258: if hr_multi_message.unexpected_error_add(l_proc) then
259: hr_utility.set_location(' Leaving:' || l_proc,40);
260: raise;
261: end if;
262: --

Line 265: p_return_status := hr_multi_message.get_return_status_disable;

261: end if;
262: --
263: -- Reset IN OUT and set OUT parameters
264: --
265: p_return_status := hr_multi_message.get_return_status_disable;
266: hr_utility.set_location(' Leaving:' || l_proc,50);
267: end delete_sharing_instance;
268: end hr_scorecard_sharing_swi;