DBA Data[Home] [Help]

APPS.IRC_NOTES_SWI dependencies on HR_UTILITY

Line 29: hr_utility.set_location(' Entering:' || l_proc,10);

25: -- Other variables
26: l_note_id number;
27: l_proc varchar2(72) := g_package ||'create_note';
28: Begin
29: hr_utility.set_location(' Entering:' || l_proc,10);
30: --
31: -- Issue a savepoint
32: --
33: savepoint create_note_swi;

Line 76: hr_utility.set_location(' Leaving:' || l_proc,20);

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
80: --

Line 91: hr_utility.set_location(' Leaving:' || l_proc, 30);

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
95: -- any Application specific or other unexpected

Line 102: hr_utility.set_location(' Leaving:' || l_proc,40);

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: --
106: -- Reset IN OUT and set OUT parameters

Line 110: hr_utility.set_location(' Leaving:' || l_proc,50);

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 >-----------------------------|
114: -- ----------------------------------------------------------------------------

Line 133: hr_utility.set_location(' Entering:' || l_proc,10);

129: --
130: -- Other variables
131: l_proc varchar2(72) := g_package ||'update_note';
132: Begin
133: hr_utility.set_location(' Entering:' || l_proc,10);
134: --
135: -- Issue a savepoint
136: --
137: savepoint update_note_swi;

Line 178: hr_utility.set_location(' Leaving:' || l_proc,20);

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
182: --

Line 193: hr_utility.set_location(' Leaving:' || l_proc, 30);

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
197: -- any Application specific or other unexpected

Line 204: hr_utility.set_location(' Leaving:' || l_proc,40);

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: --
208: -- Reset IN OUT and set OUT parameters

Line 212: hr_utility.set_location(' Leaving:' || l_proc,50);

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 >-----------------------------|
216: -- ----------------------------------------------------------------------------

Line 232: hr_utility.set_location(' Entering:' || l_proc,10);

228: --
229: -- Other variables
230: l_proc varchar2(72) := g_package ||'delete_note';
231: Begin
232: hr_utility.set_location(' Entering:' || l_proc,10);
233: --
234: -- Issue a savepoint
235: --
236: savepoint delete_note_swi;

Line 274: hr_utility.set_location(' Leaving:' || l_proc,20);

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
278: --

Line 288: hr_utility.set_location(' Leaving:' || l_proc, 30);

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
292: -- any Application specific or other unexpected

Line 299: hr_utility.set_location(' Leaving:' || l_proc,40);

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: --
303: -- Reset IN OUT and set OUT parameters

Line 306: hr_utility.set_location(' Leaving:' || l_proc,50);

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;