DBA Data[Home] [Help]

APPS.PER_RI_CONFIG_LOCATION_SWI dependencies on HR_MULTI_MESSAGE

Line 61: hr_multi_message.enable_message_list;

57: savepoint create_location_swi;
58: --
59: -- Initialise Multiple Message Detection
60: --
61: hr_multi_message.enable_message_list;
62: --
63: -- Remember IN OUT parameter IN values
64: --
65: --

Line 121: p_return_status := hr_multi_message.get_return_status_disable;

117: -- Derive the API return status value based on whether
118: -- messages of any type exist in the Multiple Message List.
119: -- Also disable Multiple Message Detection.
120: --
121: p_return_status := hr_multi_message.get_return_status_disable;
122: hr_utility.set_location(' Leaving:' || l_proc,20);
123: --
124: exception
125: when hr_multi_message.error_message_exist then

Line 125: when hr_multi_message.error_message_exist then

121: p_return_status := hr_multi_message.get_return_status_disable;
122: hr_utility.set_location(' Leaving:' || l_proc,20);
123: --
124: exception
125: when hr_multi_message.error_message_exist then
126: --
127: -- Catch the Multiple Message List exception which
128: -- indicates API processing has been aborted because
129: -- at least one message exists in the list.

Line 137: p_return_status := hr_multi_message.get_return_status_disable;

133: -- Reset IN OUT parameters and set OUT parameters
134: --
135: p_object_version_number := null;
136: p_location_id := null;
137: p_return_status := hr_multi_message.get_return_status_disable;
138: hr_utility.set_location(' Leaving:' || l_proc, 30);
139: when others then
140: --
141: -- When Multiple Message Detection is enabled catch

Line 148: if hr_multi_message.unexpected_error_add(l_proc) then

144: -- Multiple Message List. Otherwise re-raise the
145: -- error.
146: --
147: rollback to create_location_swi;
148: if hr_multi_message.unexpected_error_add(l_proc) then
149: hr_utility.set_location(' Leaving:' || l_proc,40);
150: raise;
151: end if;
152: --

Line 157: p_return_status := hr_multi_message.get_return_status_disable;

153: -- Reset IN OUT and set OUT parameters
154: --
155: p_object_version_number := null;
156: p_location_id := null;
157: p_return_status := hr_multi_message.get_return_status_disable;
158: hr_utility.set_location(' Leaving:' || l_proc,50);
159: end create_location;
160: -- ----------------------------------------------------------------------------
161: -- |----------------------------< update_location >---------------------------|

Line 214: hr_multi_message.enable_message_list;

210: savepoint update_location_swi;
211: --
212: -- Initialise Multiple Message Detection
213: --
214: hr_multi_message.enable_message_list;
215: --
216: -- Remember IN OUT parameter IN values
217: --
218: 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 message exists in the list.

Line 290: p_return_status := hr_multi_message.get_return_status_disable;

286: --
287: -- Reset IN OUT parameters 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 the
298: -- error.
299: --
300: rollback to update_location_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 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_location;
312: -- ----------------------------------------------------------------------------
313: -- |----------------------------< delete_location >---------------------------|

Line 338: hr_multi_message.enable_message_list;

334: savepoint delete_location_swi;
335: --
336: -- Initialise Multiple Message Detection
337: --
338: hr_multi_message.enable_message_list;
339: --
340: -- Remember IN OUT parameter IN values
341: --
342: --

Line 371: p_return_status := hr_multi_message.get_return_status_disable;

367: -- Derive the API return status value based on whether
368: -- messages of any type exist in the Multiple Message List.
369: -- Also disable Multiple Message Detection.
370: --
371: p_return_status := hr_multi_message.get_return_status_disable;
372: hr_utility.set_location(' Leaving:' || l_proc,20);
373: --
374: exception
375: when hr_multi_message.error_message_exist then

Line 375: when hr_multi_message.error_message_exist then

371: p_return_status := hr_multi_message.get_return_status_disable;
372: hr_utility.set_location(' Leaving:' || l_proc,20);
373: --
374: exception
375: when hr_multi_message.error_message_exist then
376: --
377: -- Catch the Multiple Message List exception which
378: -- indicates API processing has been aborted because
379: -- at least one message exists in the list.

Line 385: p_return_status := hr_multi_message.get_return_status_disable;

381: rollback to delete_location_swi;
382: --
383: -- Reset IN OUT parameters and set OUT parameters
384: --
385: p_return_status := hr_multi_message.get_return_status_disable;
386: hr_utility.set_location(' Leaving:' || l_proc, 30);
387: when others then
388: --
389: -- When Multiple Message Detection is enabled catch

Line 396: if hr_multi_message.unexpected_error_add(l_proc) then

392: -- Multiple Message List. Otherwise re-raise the
393: -- error.
394: --
395: rollback to delete_location_swi;
396: if hr_multi_message.unexpected_error_add(l_proc) then
397: hr_utility.set_location(' Leaving:' || l_proc,40);
398: raise;
399: end if;
400: --

Line 403: p_return_status := hr_multi_message.get_return_status_disable;

399: end if;
400: --
401: -- Reset IN OUT and set OUT parameters
402: --
403: p_return_status := hr_multi_message.get_return_status_disable;
404: hr_utility.set_location(' Leaving:' || l_proc,50);
405: end delete_location;
406: end per_ri_config_location_swi;