DBA Data[Home] [Help]

APPS.PQH_DE_INS_END_REASONS_SWI dependencies on HR_MULTI_MESSAGE

Line 37: hr_multi_message.enable_message_list;

33: savepoint delete_pension_end_reasons_swi;
34: --
35: -- Initialise Multiple Message Detection
36: --
37: hr_multi_message.enable_message_list;
38: --
39: -- Remember IN OUT parameter IN values
40: --
41: --

Line 70: p_return_status := hr_multi_message.get_return_status_disable;

66: -- Derive the API return status value based on whether
67: -- messages of any type exist in the Multiple Message List.
68: -- Also disable Multiple Message Detection.
69: --
70: p_return_status := hr_multi_message.get_return_status_disable;
71: hr_utility.set_location(' Leaving:' || l_proc,20);
72: --
73: exception
74: when hr_multi_message.error_message_exist then

Line 74: when hr_multi_message.error_message_exist then

70: p_return_status := hr_multi_message.get_return_status_disable;
71: hr_utility.set_location(' Leaving:' || l_proc,20);
72: --
73: exception
74: when hr_multi_message.error_message_exist then
75: --
76: -- Catch the Multiple Message List exception which
77: -- indicates API processing has been aborted because
78: -- at least one message exists in the list.

Line 84: p_return_status := hr_multi_message.get_return_status_disable;

80: rollback to delete_pension_end_reasons_swi;
81: --
82: -- Reset IN OUT parameters and set OUT parameters
83: --
84: p_return_status := hr_multi_message.get_return_status_disable;
85: hr_utility.set_location(' Leaving:' || l_proc, 30);
86: when others then
87: --
88: -- When Multiple Message Detection is enabled catch

Line 95: if hr_multi_message.unexpected_error_add(l_proc) then

91: -- Multiple Message List. Otherwise re-raise the
92: -- error.
93: --
94: rollback to delete_pension_end_reasons_swi;
95: if hr_multi_message.unexpected_error_add(l_proc) then
96: hr_utility.set_location(' Leaving:' || l_proc,40);
97: raise;
98: end if;
99: --

Line 102: p_return_status := hr_multi_message.get_return_status_disable;

98: end if;
99: --
100: -- Reset IN OUT and set OUT parameters
101: --
102: p_return_status := hr_multi_message.get_return_status_disable;
103: hr_utility.set_location(' Leaving:' || l_proc,50);
104: end delete_pension_end_reasons;
105: -- ----------------------------------------------------------------------------
106: -- |----------------------< insert_pension_end_reasons >----------------------|

Line 137: hr_multi_message.enable_message_list;

133: savepoint insert_pension_end_reasons_swi;
134: --
135: -- Initialise Multiple Message Detection
136: --
137: hr_multi_message.enable_message_list;
138: --
139: -- Remember IN OUT parameter IN values
140: --
141: --

Line 179: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 183: when hr_multi_message.error_message_exist then

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

Line 195: p_return_status := hr_multi_message.get_return_status_disable;

191: -- Reset IN OUT parameters and set OUT parameters
192: --
193: p_ins_end_reason_id := null;
194: p_object_version_number := null;
195: p_return_status := hr_multi_message.get_return_status_disable;
196: hr_utility.set_location(' Leaving:' || l_proc, 30);
197: when others then
198: --
199: -- When Multiple Message Detection is enabled catch

Line 206: if hr_multi_message.unexpected_error_add(l_proc) then

202: -- Multiple Message List. Otherwise re-raise the
203: -- error.
204: --
205: rollback to insert_pension_end_reasons_swi;
206: if hr_multi_message.unexpected_error_add(l_proc) then
207: hr_utility.set_location(' Leaving:' || l_proc,40);
208: raise;
209: end if;
210: --

Line 215: p_return_status := hr_multi_message.get_return_status_disable;

211: -- Reset IN OUT and set OUT parameters
212: --
213: p_ins_end_reason_id := null;
214: p_object_version_number := null;
215: p_return_status := hr_multi_message.get_return_status_disable;
216: hr_utility.set_location(' Leaving:' || l_proc,50);
217: end insert_pension_end_reasons;
218: -- ----------------------------------------------------------------------------
219: -- |----------------------< update_pension_end_reasons >----------------------|

Line 251: hr_multi_message.enable_message_list;

247: savepoint update_pension_end_reasons_swi;
248: --
249: -- Initialise Multiple Message Detection
250: --
251: hr_multi_message.enable_message_list;
252: --
253: -- Remember IN OUT parameter IN values
254: --
255: l_object_version_number := p_object_version_number;

Line 291: p_return_status := hr_multi_message.get_return_status_disable;

287: -- Derive the API return status value based on whether
288: -- messages of any type exist in the Multiple Message List.
289: -- Also disable Multiple Message Detection.
290: --
291: p_return_status := hr_multi_message.get_return_status_disable;
292: hr_utility.set_location(' Leaving:' || l_proc,20);
293: --
294: exception
295: when hr_multi_message.error_message_exist then

Line 295: when hr_multi_message.error_message_exist then

291: p_return_status := hr_multi_message.get_return_status_disable;
292: hr_utility.set_location(' Leaving:' || l_proc,20);
293: --
294: exception
295: when hr_multi_message.error_message_exist then
296: --
297: -- Catch the Multiple Message List exception which
298: -- indicates API processing has been aborted because
299: -- at least one message exists in the list.

Line 306: p_return_status := hr_multi_message.get_return_status_disable;

302: --
303: -- Reset IN OUT parameters and set OUT parameters
304: --
305: p_object_version_number := l_object_version_number;
306: p_return_status := hr_multi_message.get_return_status_disable;
307: hr_utility.set_location(' Leaving:' || l_proc, 30);
308: when others then
309: --
310: -- When Multiple Message Detection is enabled catch

Line 317: if hr_multi_message.unexpected_error_add(l_proc) then

313: -- Multiple Message List. Otherwise re-raise the
314: -- error.
315: --
316: rollback to update_pension_end_reasons_swi;
317: if hr_multi_message.unexpected_error_add(l_proc) then
318: hr_utility.set_location(' Leaving:' || l_proc,40);
319: raise;
320: end if;
321: --

Line 325: p_return_status := hr_multi_message.get_return_status_disable;

321: --
322: -- Reset IN OUT and set OUT parameters
323: --
324: p_object_version_number := l_object_version_number;
325: p_return_status := hr_multi_message.get_return_status_disable;
326: hr_utility.set_location(' Leaving:' || l_proc,50);
327: end update_pension_end_reasons;
328: end pqh_de_ins_end_reasons_swi;