DBA Data[Home] [Help]

APPS.PQH_FR_VALIDATIONS_SWI dependencies on HR_MULTI_MESSAGE

Line 42: hr_multi_message.enable_message_list;

38: savepoint delete_validation_swi;
39: --
40: -- Initialise Multiple Message Detection
41: --
42: hr_multi_message.enable_message_list;
43: --
44: -- Remember IN OUT parameter IN values
45: --
46: --

Line 83: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 87: when hr_multi_message.error_message_exist then

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

Line 97: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 108: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 115: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 159: hr_multi_message.enable_message_list;

155: savepoint insert_validation_swi;
156: --
157: -- Initialise Multiple Message Detection
158: --
159: hr_multi_message.enable_message_list;
160: --
161: -- Remember IN OUT parameter IN values
162: --
163: --

Line 208: p_return_status := hr_multi_message.get_return_status_disable;

204: -- Derive the API return status value based on whether
205: -- messages of any type exist in the Multiple Message List.
206: -- Also disable Multiple Message Detection.
207: --
208: p_return_status := hr_multi_message.get_return_status_disable;
209: hr_utility.set_location(' Leaving:' || l_proc,20);
210: --
211: exception
212: when hr_multi_message.error_message_exist then

Line 212: when hr_multi_message.error_message_exist then

208: p_return_status := hr_multi_message.get_return_status_disable;
209: hr_utility.set_location(' Leaving:' || l_proc,20);
210: --
211: exception
212: when hr_multi_message.error_message_exist then
213: --
214: -- Catch the Multiple Message List exception which
215: -- indicates API processing has been aborted because
216: -- at least one message exists in the list.

Line 224: p_return_status := hr_multi_message.get_return_status_disable;

220: -- Reset IN OUT parameters and set OUT parameters
221: --
222: p_validation_id := null;
223: p_object_version_number := null;
224: p_return_status := hr_multi_message.get_return_status_disable;
225: hr_utility.set_location(' Leaving:' || l_proc, 30);
226: when others then
227: --
228: -- When Multiple Message Detection is enabled catch

Line 235: if hr_multi_message.unexpected_error_add(l_proc) then

231: -- Multiple Message List. Otherwise re-raise the
232: -- error.
233: --
234: rollback to insert_validation_swi;
235: if hr_multi_message.unexpected_error_add(l_proc) then
236: hr_utility.set_location(' Leaving:' || l_proc,40);
237: raise;
238: end if;
239: --

Line 244: p_return_status := hr_multi_message.get_return_status_disable;

240: -- Reset IN OUT and set OUT parameters
241: --
242: p_validation_id := null;
243: p_object_version_number := null;
244: p_return_status := hr_multi_message.get_return_status_disable;
245: hr_utility.set_location(' Leaving:' || l_proc,50);
246: end insert_validation;
247: -- ----------------------------------------------------------------------------
248: -- |---------------------------< update_validation >--------------------------|

Line 289: hr_multi_message.enable_message_list;

285: savepoint update_validation_swi;
286: --
287: -- Initialise Multiple Message Detection
288: --
289: hr_multi_message.enable_message_list;
290: --
291: -- Remember IN OUT parameter IN values
292: --
293: l_object_version_number := p_object_version_number;

Line 336: p_return_status := hr_multi_message.get_return_status_disable;

332: -- Derive the API return status value based on whether
333: -- messages of any type exist in the Multiple Message List.
334: -- Also disable Multiple Message Detection.
335: --
336: p_return_status := hr_multi_message.get_return_status_disable;
337: hr_utility.set_location(' Leaving:' || l_proc,20);
338: --
339: exception
340: when hr_multi_message.error_message_exist then

Line 340: when hr_multi_message.error_message_exist then

336: p_return_status := hr_multi_message.get_return_status_disable;
337: hr_utility.set_location(' Leaving:' || l_proc,20);
338: --
339: exception
340: when hr_multi_message.error_message_exist then
341: --
342: -- Catch the Multiple Message List exception which
343: -- indicates API processing has been aborted because
344: -- at least one message exists in the list.

Line 351: p_return_status := hr_multi_message.get_return_status_disable;

347: --
348: -- Reset IN OUT parameters and set OUT parameters
349: --
350: p_object_version_number := l_object_version_number;
351: p_return_status := hr_multi_message.get_return_status_disable;
352: hr_utility.set_location(' Leaving:' || l_proc, 30);
353: when others then
354: --
355: -- When Multiple Message Detection is enabled catch

Line 362: if hr_multi_message.unexpected_error_add(l_proc) then

358: -- Multiple Message List. Otherwise re-raise the
359: -- error.
360: --
361: rollback to update_validation_swi;
362: if hr_multi_message.unexpected_error_add(l_proc) then
363: hr_utility.set_location(' Leaving:' || l_proc,40);
364: raise;
365: end if;
366: --

Line 370: p_return_status := hr_multi_message.get_return_status_disable;

366: --
367: -- Reset IN OUT and set OUT parameters
368: --
369: p_object_version_number := l_object_version_number;
370: p_return_status := hr_multi_message.get_return_status_disable;
371: hr_utility.set_location(' Leaving:' || l_proc,50);
372: end update_validation;
373: end pqh_fr_validations_swi;