DBA Data[Home] [Help]

APPS.PER_RI_SETUP_TASK_SWI dependencies on HR_MULTI_MESSAGE

Line 45: hr_multi_message.enable_message_list;

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

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_setup_task_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_setup_task;
126: -- ----------------------------------------------------------------------------
127: -- |---------------------------< delete_setup_task >--------------------------|

Line 152: hr_multi_message.enable_message_list;

148: savepoint delete_setup_task_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_setup_task_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_setup_task_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_setup_task;
220: -- ----------------------------------------------------------------------------
221: -- |---------------------------< update_setup_task >--------------------------|

Line 258: hr_multi_message.enable_message_list;

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

Line 303: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 307: when hr_multi_message.error_message_exist then

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

Line 318: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 329: if hr_multi_message.unexpected_error_add(l_proc) then

325: -- Multiple Message List. Otherwise re-raise the
326: -- error.
327: --
328: rollback to update_setup_task_swi;
329: if hr_multi_message.unexpected_error_add(l_proc) then
330: hr_utility.set_location(' Leaving:' || l_proc,40);
331: raise;
332: end if;
333: --

Line 337: p_return_status := hr_multi_message.get_return_status_disable;

333: --
334: -- Reset IN OUT and set OUT parameters
335: --
336: p_object_version_number := l_object_version_number;
337: p_return_status := hr_multi_message.get_return_status_disable;
338: hr_utility.set_location(' Leaving:' || l_proc,50);
339: end update_setup_task;
340: end per_ri_setup_task_swi;