DBA Data[Home] [Help]

APPS.BEN_PIL_ASSIGNMENT_SWI dependencies on HR_MULTI_MESSAGE

Line 37: hr_multi_message.enable_message_list;

33: savepoint create_pil_assignment_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 73: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 77: when hr_multi_message.error_message_exist then

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

Line 89: p_return_status := hr_multi_message.get_return_status_disable;

85: -- Reset IN OUT parameters and set OUT parameters
86: --
87: p_pil_assignment_id := null;
88: p_object_version_number := null;
89: p_return_status := hr_multi_message.get_return_status_disable;
90: hr_utility.set_location(' Leaving:' || l_proc, 30);
91: when others then
92: --
93: -- When Multiple Message Detection is enabled catch

Line 100: if hr_multi_message.unexpected_error_add(l_proc) then

96: -- Multiple Message List. Otherwise re-raise the
97: -- error.
98: --
99: rollback to create_pil_assignment_swi;
100: if hr_multi_message.unexpected_error_add(l_proc) then
101: hr_utility.set_location(' Leaving:' || l_proc,40);
102: raise;
103: end if;
104: --

Line 109: p_return_status := hr_multi_message.get_return_status_disable;

105: -- Reset IN OUT and set OUT parameters
106: --
107: p_pil_assignment_id := null;
108: p_object_version_number := null;
109: p_return_status := hr_multi_message.get_return_status_disable;
110: hr_utility.set_location(' Leaving:' || l_proc,50);
111: end create_pil_assignment;
112: -- ----------------------------------------------------------------------------
113: -- |-------------------------< delete_pil_assignment >------------------------|

Line 139: hr_multi_message.enable_message_list;

135: savepoint delete_pil_assignment_swi;
136: --
137: -- Initialise Multiple Message Detection
138: --
139: hr_multi_message.enable_message_list;
140: --
141: -- Remember IN OUT parameter IN values
142: --
143: l_object_version_number := p_object_version_number;

Line 173: p_return_status := hr_multi_message.get_return_status_disable;

169: -- Derive the API return status value based on whether
170: -- messages of any type exist in the Multiple Message List.
171: -- Also disable Multiple Message Detection.
172: --
173: p_return_status := hr_multi_message.get_return_status_disable;
174: hr_utility.set_location(' Leaving:' || l_proc,20);
175: --
176: exception
177: when hr_multi_message.error_message_exist then

Line 177: when hr_multi_message.error_message_exist then

173: p_return_status := hr_multi_message.get_return_status_disable;
174: hr_utility.set_location(' Leaving:' || l_proc,20);
175: --
176: exception
177: when hr_multi_message.error_message_exist then
178: --
179: -- Catch the Multiple Message List exception which
180: -- indicates API processing has been aborted because
181: -- at least one message exists in the list.

Line 188: p_return_status := hr_multi_message.get_return_status_disable;

184: --
185: -- Reset IN OUT parameters and set OUT parameters
186: --
187: p_object_version_number := l_object_version_number;
188: p_return_status := hr_multi_message.get_return_status_disable;
189: hr_utility.set_location(' Leaving:' || l_proc, 30);
190: when others then
191: --
192: -- When Multiple Message Detection is enabled catch

Line 199: if hr_multi_message.unexpected_error_add(l_proc) then

195: -- Multiple Message List. Otherwise re-raise the
196: -- error.
197: --
198: rollback to delete_pil_assignment_swi;
199: if hr_multi_message.unexpected_error_add(l_proc) then
200: hr_utility.set_location(' Leaving:' || l_proc,40);
201: raise;
202: end if;
203: --

Line 207: p_return_status := hr_multi_message.get_return_status_disable;

203: --
204: -- Reset IN OUT and set OUT parameters
205: --
206: p_object_version_number := l_object_version_number;
207: p_return_status := hr_multi_message.get_return_status_disable;
208: hr_utility.set_location(' Leaving:' || l_proc,50);
209: end delete_pil_assignment;
210: -- ----------------------------------------------------------------------------
211: -- |----------------------------------< lck >---------------------------------|

Line 234: hr_multi_message.enable_message_list;

230: savepoint lck_swi;
231: --
232: -- Initialise Multiple Message Detection
233: --
234: hr_multi_message.enable_message_list;
235: --
236: -- Remember IN OUT parameter IN values
237: --
238: --

Line 263: p_return_status := hr_multi_message.get_return_status_disable;

259: -- Derive the API return status value based on whether
260: -- messages of any type exist in the Multiple Message List.
261: -- Also disable Multiple Message Detection.
262: --
263: p_return_status := hr_multi_message.get_return_status_disable;
264: hr_utility.set_location(' Leaving:' || l_proc,20);
265: --
266: exception
267: when hr_multi_message.error_message_exist then

Line 267: when hr_multi_message.error_message_exist then

263: p_return_status := hr_multi_message.get_return_status_disable;
264: hr_utility.set_location(' Leaving:' || l_proc,20);
265: --
266: exception
267: when hr_multi_message.error_message_exist then
268: --
269: -- Catch the Multiple Message List exception which
270: -- indicates API processing has been aborted because
271: -- at least one message exists in the list.

Line 277: p_return_status := hr_multi_message.get_return_status_disable;

273: rollback to lck_swi;
274: --
275: -- Reset IN OUT parameters and set OUT parameters
276: --
277: p_return_status := hr_multi_message.get_return_status_disable;
278: hr_utility.set_location(' Leaving:' || l_proc, 30);
279: when others then
280: --
281: -- When Multiple Message Detection is enabled catch

Line 288: if hr_multi_message.unexpected_error_add(l_proc) then

284: -- Multiple Message List. Otherwise re-raise the
285: -- error.
286: --
287: rollback to lck_swi;
288: if hr_multi_message.unexpected_error_add(l_proc) then
289: hr_utility.set_location(' Leaving:' || l_proc,40);
290: raise;
291: end if;
292: --

Line 295: p_return_status := hr_multi_message.get_return_status_disable;

291: end if;
292: --
293: -- Reset IN OUT and set OUT parameters
294: --
295: p_return_status := hr_multi_message.get_return_status_disable;
296: hr_utility.set_location(' Leaving:' || l_proc,50);
297: end lck;
298: -- ----------------------------------------------------------------------------
299: -- |-------------------------< update_pil_assignment >------------------------|

Line 328: hr_multi_message.enable_message_list;

324: savepoint update_pil_assignment_swi;
325: --
326: -- Initialise Multiple Message Detection
327: --
328: hr_multi_message.enable_message_list;
329: --
330: -- Remember IN OUT parameter IN values
331: --
332: l_object_version_number := p_object_version_number;

Line 365: p_return_status := hr_multi_message.get_return_status_disable;

361: -- Derive the API return status value based on whether
362: -- messages of any type exist in the Multiple Message List.
363: -- Also disable Multiple Message Detection.
364: --
365: p_return_status := hr_multi_message.get_return_status_disable;
366: hr_utility.set_location(' Leaving:' || l_proc,20);
367: --
368: exception
369: when hr_multi_message.error_message_exist then

Line 369: when hr_multi_message.error_message_exist then

365: p_return_status := hr_multi_message.get_return_status_disable;
366: hr_utility.set_location(' Leaving:' || l_proc,20);
367: --
368: exception
369: when hr_multi_message.error_message_exist then
370: --
371: -- Catch the Multiple Message List exception which
372: -- indicates API processing has been aborted because
373: -- at least one message exists in the list.

Line 380: p_return_status := hr_multi_message.get_return_status_disable;

376: --
377: -- Reset IN OUT parameters and set OUT parameters
378: --
379: p_object_version_number := l_object_version_number;
380: p_return_status := hr_multi_message.get_return_status_disable;
381: hr_utility.set_location(' Leaving:' || l_proc, 30);
382: when others then
383: --
384: -- When Multiple Message Detection is enabled catch

Line 391: if hr_multi_message.unexpected_error_add(l_proc) then

387: -- Multiple Message List. Otherwise re-raise the
388: -- error.
389: --
390: rollback to update_pil_assignment_swi;
391: if hr_multi_message.unexpected_error_add(l_proc) then
392: hr_utility.set_location(' Leaving:' || l_proc,40);
393: raise;
394: end if;
395: --

Line 399: p_return_status := hr_multi_message.get_return_status_disable;

395: --
396: -- Reset IN OUT and set OUT parameters
397: --
398: p_object_version_number := l_object_version_number;
399: p_return_status := hr_multi_message.get_return_status_disable;
400: hr_utility.set_location(' Leaving:' || l_proc,50);
401: end update_pil_assignment;
402: end ben_pil_assignment_swi;