DBA Data[Home] [Help]

APPS.IRC_NOTES_SWI dependencies on HR_MULTI_MESSAGE

Line 37: hr_multi_message.enable_message_list;

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

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

Line 79: when hr_multi_message.error_message_exist then

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

Line 90: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 101: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 109: p_return_status := hr_multi_message.get_return_status_disable;

105: --
106: -- Reset IN OUT and set OUT parameters
107: --
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_note;
112: -- ----------------------------------------------------------------------------
113: -- |------------------------------< update_note >-----------------------------|

Line 141: hr_multi_message.enable_message_list;

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

Line 177: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 181: when hr_multi_message.error_message_exist then

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

Line 192: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 203: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 211: p_return_status := hr_multi_message.get_return_status_disable;

207: --
208: -- Reset IN OUT and set OUT parameters
209: --
210: p_object_version_number := l_object_version_number;
211: p_return_status := hr_multi_message.get_return_status_disable;
212: hr_utility.set_location(' Leaving:' || l_proc,50);
213: end update_note;
214: -- ----------------------------------------------------------------------------
215: -- |------------------------------< delete_note >-----------------------------|

Line 240: hr_multi_message.enable_message_list;

236: savepoint delete_note_swi;
237: --
238: -- Initialise Multiple Message Detection
239: --
240: hr_multi_message.enable_message_list;
241: --
242: -- Remember IN OUT parameter IN values
243: --
244: --

Line 273: p_return_status := hr_multi_message.get_return_status_disable;

269: -- Derive the API return status value based on whether
270: -- messages of any type exist in the Multiple Message List.
271: -- Also disable Multiple Message Detection.
272: --
273: p_return_status := hr_multi_message.get_return_status_disable;
274: hr_utility.set_location(' Leaving:' || l_proc,20);
275: --
276: exception
277: when hr_multi_message.error_message_exist then

Line 277: when hr_multi_message.error_message_exist then

273: p_return_status := hr_multi_message.get_return_status_disable;
274: hr_utility.set_location(' Leaving:' || l_proc,20);
275: --
276: exception
277: when hr_multi_message.error_message_exist then
278: --
279: -- Catch the Multiple Message List exception which
280: -- indicates API processing has been aborted because
281: -- at least one message exists in the list.

Line 287: p_return_status := hr_multi_message.get_return_status_disable;

283: rollback to delete_note_swi;
284: --
285: -- Reset IN OUT parameters and set OUT parameters
286: --
287: p_return_status := hr_multi_message.get_return_status_disable;
288: hr_utility.set_location(' Leaving:' || l_proc, 30);
289: when others then
290: --
291: -- When Multiple Message Detection is enabled catch

Line 298: if hr_multi_message.unexpected_error_add(l_proc) then

294: -- Multiple Message List. Otherwise re-raise the
295: -- error.
296: --
297: rollback to delete_note_swi;
298: if hr_multi_message.unexpected_error_add(l_proc) then
299: hr_utility.set_location(' Leaving:' || l_proc,40);
300: raise;
301: end if;
302: --

Line 305: p_return_status := hr_multi_message.get_return_status_disable;

301: end if;
302: --
303: -- Reset IN OUT and set OUT parameters
304: --
305: p_return_status := hr_multi_message.get_return_status_disable;
306: hr_utility.set_location(' Leaving:' || l_proc,50);
307: end delete_note;
308: end irc_notes_swi;