DBA Data[Home] [Help]

APPS.HR_CAL_ENTRY_VALUE_SWI dependencies on HR_MULTI_MESSAGE

Line 46: hr_multi_message.enable_message_list;

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

Line 93: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 97: when hr_multi_message.error_message_exist then

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

Line 108: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 119: if hr_multi_message.unexpected_error_add(l_proc) then

115: -- Multiple Message List. Otherwise re-raise the
116: -- error.
117: --
118: rollback to create_entry_value_swi;
119: if hr_multi_message.unexpected_error_add(l_proc) then
120: hr_utility.set_location(' Leaving:' || l_proc,40);
121: raise;
122: end if;
123: --

Line 127: p_return_status := hr_multi_message.get_return_status_disable;

123: --
124: -- Reset IN OUT and set OUT parameters
125: --
126: p_object_version_number := null;
127: p_return_status := hr_multi_message.get_return_status_disable;
128: hr_utility.set_location(' Leaving:' || l_proc,50);
129: end create_entry_value;
130: -- ----------------------------------------------------------------------------
131: -- |--------------------------< delete_entry_value >--------------------------|

Line 156: hr_multi_message.enable_message_list;

152: savepoint delete_entry_value_swi;
153: --
154: -- Initialise Multiple Message Detection
155: --
156: hr_multi_message.enable_message_list;
157: --
158: -- Remember IN OUT parameter IN values
159: --
160: --

Line 189: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 193: when hr_multi_message.error_message_exist then

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

Line 203: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 214: if hr_multi_message.unexpected_error_add(l_proc) then

210: -- Multiple Message List. Otherwise re-raise the
211: -- error.
212: --
213: rollback to delete_entry_value_swi;
214: if hr_multi_message.unexpected_error_add(l_proc) then
215: hr_utility.set_location(' Leaving:' || l_proc,40);
216: raise;
217: end if;
218: --

Line 221: p_return_status := hr_multi_message.get_return_status_disable;

217: end if;
218: --
219: -- Reset IN OUT and set OUT parameters
220: --
221: p_return_status := hr_multi_message.get_return_status_disable;
222: hr_utility.set_location(' Leaving:' || l_proc,50);
223: end delete_entry_value;
224: -- ----------------------------------------------------------------------------
225: -- |--------------------------< update_entry_value >--------------------------|

Line 256: hr_multi_message.enable_message_list;

252: savepoint update_entry_value_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 295: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 299: when hr_multi_message.error_message_exist then

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

Line 310: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 321: if hr_multi_message.unexpected_error_add(l_proc) then

317: -- Multiple Message List. Otherwise re-raise the
318: -- error.
319: --
320: rollback to update_entry_value_swi;
321: if hr_multi_message.unexpected_error_add(l_proc) then
322: hr_utility.set_location(' Leaving:' || l_proc,40);
323: raise;
324: end if;
325: --

Line 329: p_return_status := hr_multi_message.get_return_status_disable;

325: --
326: -- Reset IN OUT and set OUT parameters
327: --
328: p_object_version_number := l_object_version_number;
329: p_return_status := hr_multi_message.get_return_status_disable;
330: hr_utility.set_location(' Leaving:' || l_proc,50);
331: end update_entry_value;
332: end hr_cal_entry_value_swi;