DBA Data[Home] [Help]

APPS.HR_NL_ABSENCE_ACTION_SWI dependencies on HR_MULTI_MESSAGE

Line 44: hr_multi_message.enable_message_list;

40: savepoint create_absence_action_swi;
41: --
42: -- Initialise Multiple Message Detection
43: --
44: hr_multi_message.enable_message_list;
45: --
46: -- Remember IN OUT parameter IN values
47: --
48: --

Line 89: p_return_status := hr_multi_message.get_return_status_disable;

85: -- Derive the API return status value based on whether
86: -- messages of any type exist in the Multiple Message List.
87: -- Also disable Multiple Message Detection.
88: --
89: p_return_status := hr_multi_message.get_return_status_disable;
90: hr_utility.set_location(' Leaving:' || l_proc,20);
91: --
92: exception
93: when hr_multi_message.error_message_exist then

Line 93: when hr_multi_message.error_message_exist then

89: p_return_status := hr_multi_message.get_return_status_disable;
90: hr_utility.set_location(' Leaving:' || l_proc,20);
91: --
92: exception
93: when hr_multi_message.error_message_exist then
94: --
95: -- Catch the Multiple Message List exception which
96: -- indicates API processing has been aborted because
97: -- at least one message exists in the list.

Line 104: p_return_status := hr_multi_message.get_return_status_disable;

100: --
101: -- Reset IN OUT parameters and set OUT parameters
102: --
103: p_object_version_number := null;
104: p_return_status := hr_multi_message.get_return_status_disable;
105: hr_utility.set_location(' Leaving:' || l_proc, 30);
106: when others then
107: --
108: -- When Multiple Message Detection is enabled catch

Line 115: if hr_multi_message.unexpected_error_add(l_proc) then

111: -- Multiple Message List. Otherwise re-raise the
112: -- error.
113: --
114: rollback to create_absence_action_swi;
115: if hr_multi_message.unexpected_error_add(l_proc) then
116: hr_utility.set_location(' Leaving:' || l_proc,40);
117: raise;
118: end if;
119: --

Line 123: p_return_status := hr_multi_message.get_return_status_disable;

119: --
120: -- Reset IN OUT and set OUT parameters
121: --
122: p_object_version_number := null;
123: p_return_status := hr_multi_message.get_return_status_disable;
124: hr_utility.set_location(' Leaving:' || l_proc,50);
125: end create_absence_action;
126: -- ----------------------------------------------------------------------------
127: -- |-------------------------< delete_absence_action >------------------------|

Line 152: hr_multi_message.enable_message_list;

148: savepoint delete_absence_action_swi;
149: --
150: -- Initialise Multiple Message Detection
151: --
152: hr_multi_message.enable_message_list;
153: --
154: -- Remember IN OUT parameter IN values
155: --
156: --

Line 185: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 189: when hr_multi_message.error_message_exist then

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

Line 199: p_return_status := hr_multi_message.get_return_status_disable;

195: rollback to delete_absence_action_swi;
196: --
197: -- Reset IN OUT parameters and set OUT parameters
198: --
199: p_return_status := hr_multi_message.get_return_status_disable;
200: hr_utility.set_location(' Leaving:' || l_proc, 30);
201: when others then
202: --
203: -- When Multiple Message Detection is enabled catch

Line 210: if hr_multi_message.unexpected_error_add(l_proc) then

206: -- Multiple Message List. Otherwise re-raise the
207: -- error.
208: --
209: rollback to delete_absence_action_swi;
210: if hr_multi_message.unexpected_error_add(l_proc) then
211: hr_utility.set_location(' Leaving:' || l_proc,40);
212: raise;
213: end if;
214: --

Line 217: p_return_status := hr_multi_message.get_return_status_disable;

213: end if;
214: --
215: -- Reset IN OUT and set OUT parameters
216: --
217: p_return_status := hr_multi_message.get_return_status_disable;
218: hr_utility.set_location(' Leaving:' || l_proc,50);
219: end delete_absence_action;
220: -- ----------------------------------------------------------------------------
221: -- |-------------------------< update_absence_action >------------------------|

Line 256: hr_multi_message.enable_message_list;

252: savepoint update_absence_action_swi;
253: --
254: -- Initialise Multiple Message Detection
255: --
256: hr_multi_message.enable_message_list;
257: --
258: -- Remember IN OUT parameter IN values
259: --
260: l_object_version_number := p_object_version_number;

Line 299: p_return_status := hr_multi_message.get_return_status_disable;

295: -- Derive the API return status value based on whether
296: -- messages of any type exist in the Multiple Message List.
297: -- Also disable Multiple Message Detection.
298: --
299: p_return_status := hr_multi_message.get_return_status_disable;
300: hr_utility.set_location(' Leaving:' || l_proc,20);
301: --
302: exception
303: when hr_multi_message.error_message_exist then

Line 303: when hr_multi_message.error_message_exist then

299: p_return_status := hr_multi_message.get_return_status_disable;
300: hr_utility.set_location(' Leaving:' || l_proc,20);
301: --
302: exception
303: when hr_multi_message.error_message_exist then
304: --
305: -- Catch the Multiple Message List exception which
306: -- indicates API processing has been aborted because
307: -- at least one message exists in the list.

Line 314: p_return_status := hr_multi_message.get_return_status_disable;

310: --
311: -- Reset IN OUT parameters and set OUT parameters
312: --
313: p_object_version_number := l_object_version_number;
314: p_return_status := hr_multi_message.get_return_status_disable;
315: hr_utility.set_location(' Leaving:' || l_proc, 30);
316: when others then
317: --
318: -- When Multiple Message Detection is enabled catch

Line 325: if hr_multi_message.unexpected_error_add(l_proc) then

321: -- Multiple Message List. Otherwise re-raise the
322: -- error.
323: --
324: rollback to update_absence_action_swi;
325: if hr_multi_message.unexpected_error_add(l_proc) then
326: hr_utility.set_location(' Leaving:' || l_proc,40);
327: raise;
328: end if;
329: --

Line 333: p_return_status := hr_multi_message.get_return_status_disable;

329: --
330: -- Reset IN OUT and set OUT parameters
331: --
332: p_object_version_number := l_object_version_number;
333: p_return_status := hr_multi_message.get_return_status_disable;
334: hr_utility.set_location(' Leaving:' || l_proc,50);
335: end update_absence_action;
336: end hr_nl_absence_action_swi;