DBA Data[Home] [Help]

APPS.IRC_ASSIGNMENT_DETAILS_SWI dependencies on HR_UTILITY

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

31: -- Other variables
32: l_assignment_details_id number;
33: l_proc varchar2(72) := g_package ||'create_assignment_details';
34: Begin
35: hr_utility.set_location(' Entering:' || l_proc,10);
36: --
37: -- Issue a savepoint
38: --
39: savepoint create_assignment_details_swi;

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

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

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

102: p_effective_start_date := null;
103: p_effective_end_date := null;
104: p_object_version_number := null;
105: p_return_status := hr_multi_message.get_return_status_disable;
106: hr_utility.set_location(' Leaving:' || l_proc, 30);
107: when others then
108: --
109: -- When Multiple Message Detection is enabled catch
110: -- any Application specific or other unexpected

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

113: -- error.
114: --
115: rollback to create_assignment_details_swi;
116: if hr_multi_message.unexpected_error_add(l_proc) then
117: hr_utility.set_location(' Leaving:' || l_proc,40);
118: raise;
119: end if;
120: --
121: -- Reset IN OUT and set OUT parameters

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

124: p_effective_start_date := null;
125: p_effective_end_date := null;
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_assignment_details;
130: -- ----------------------------------------------------------------------------
131: -- |-----------------------< update_assignment_details >----------------------|
132: -- ----------------------------------------------------------------------------

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

155: --
156: -- Other variables
157: l_proc varchar2(72) := g_package ||'update_assignment_details';
158: Begin
159: hr_utility.set_location(' Entering:' || l_proc,10);
160: --
161: -- Issue a savepoint
162: --
163: savepoint update_assignment_details_swi;

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

208: -- messages of any type exist in the Multiple Message List.
209: -- Also disable Multiple Message Detection.
210: --
211: p_return_status := hr_multi_message.get_return_status_disable;
212: hr_utility.set_location(' Leaving:' || l_proc,20);
213: --
214: exception
215: when hr_multi_message.error_message_exist then
216: --

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

227: p_details_version := null;
228: p_effective_start_date := null;
229: p_effective_end_date := null;
230: p_return_status := hr_multi_message.get_return_status_disable;
231: hr_utility.set_location(' Leaving:' || l_proc, 30);
232: when others then
233: --
234: -- When Multiple Message Detection is enabled catch
235: -- any Application specific or other unexpected

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

238: -- error.
239: --
240: rollback to update_assignment_details_swi;
241: if hr_multi_message.unexpected_error_add(l_proc) then
242: hr_utility.set_location(' Leaving:' || l_proc,40);
243: raise;
244: end if;
245: --
246: -- Reset IN OUT and set OUT parameters

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

250: p_details_version := null;
251: p_effective_start_date := null;
252: p_effective_end_date := null;
253: p_return_status := hr_multi_message.get_return_status_disable;
254: hr_utility.set_location(' Leaving:' || l_proc,50);
255: end update_assignment_details;
256: end irc_assignment_details_swi;