DBA Data[Home] [Help]

APPS.PER_RI_CONFIGURATION_SWI dependencies on HR_MULTI_MESSAGE

Line 40: hr_multi_message.enable_message_list;

36: savepoint create_configuration_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 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 message exists in the list.

Line 94: p_return_status := hr_multi_message.get_return_status_disable;

90: --
91: -- Reset IN OUT parameters 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 the
102: -- error.
103: --
104: rollback to create_configuration_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 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_configuration;
116: -- ----------------------------------------------------------------------------
117: -- |-------------------------< update_configuration >-------------------------|

Line 149: hr_multi_message.enable_message_list;

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

Line 189: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 193: when hr_multi_message.error_message_exist then

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

Line 204: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 215: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 223: p_return_status := hr_multi_message.get_return_status_disable;

219: --
220: -- Reset IN OUT and set OUT parameters
221: --
222: p_object_version_number := l_object_version_number;
223: p_return_status := hr_multi_message.get_return_status_disable;
224: hr_utility.set_location(' Leaving:' || l_proc,50);
225: end update_configuration;
226: -- ----------------------------------------------------------------------------
227: -- |-------------------------< delete_configuration >-------------------------|

Line 252: hr_multi_message.enable_message_list;

248: savepoint delete_configuration_swi;
249: --
250: -- Initialise Multiple Message Detection
251: --
252: hr_multi_message.enable_message_list;
253: --
254: -- Remember IN OUT parameter IN values
255: --
256: --

Line 285: p_return_status := hr_multi_message.get_return_status_disable;

281: -- Derive the API return status value based on whether
282: -- messages of any type exist in the Multiple Message List.
283: -- Also disable Multiple Message Detection.
284: --
285: p_return_status := hr_multi_message.get_return_status_disable;
286: hr_utility.set_location(' Leaving:' || l_proc,20);
287: --
288: exception
289: when hr_multi_message.error_message_exist then

Line 289: when hr_multi_message.error_message_exist then

285: p_return_status := hr_multi_message.get_return_status_disable;
286: hr_utility.set_location(' Leaving:' || l_proc,20);
287: --
288: exception
289: when hr_multi_message.error_message_exist then
290: --
291: -- Catch the Multiple Message List exception which
292: -- indicates API processing has been aborted because
293: -- at least one message exists in the list.

Line 299: p_return_status := hr_multi_message.get_return_status_disable;

295: rollback to delete_configuration_swi;
296: --
297: -- Reset IN OUT parameters and set OUT parameters
298: --
299: p_return_status := hr_multi_message.get_return_status_disable;
300: hr_utility.set_location(' Leaving:' || l_proc, 30);
301: when others then
302: --
303: -- When Multiple Message Detection is enabled catch

Line 310: if hr_multi_message.unexpected_error_add(l_proc) then

306: -- Multiple Message List. Otherwise re-raise the
307: -- error.
308: --
309: rollback to delete_configuration_swi;
310: if hr_multi_message.unexpected_error_add(l_proc) then
311: hr_utility.set_location(' Leaving:' || l_proc,40);
312: raise;
313: end if;
314: --

Line 317: p_return_status := hr_multi_message.get_return_status_disable;

313: end if;
314: --
315: -- Reset IN OUT and set OUT parameters
316: --
317: p_return_status := hr_multi_message.get_return_status_disable;
318: hr_utility.set_location(' Leaving:' || l_proc,50);
319: end delete_configuration;
320: end per_ri_configuration_swi;