DBA Data[Home] [Help]

APPS.AME_APPROVER_TYPE_SWI dependencies on HR_UTILITY

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

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

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

74: -- messages of any type exist in the Multiple Message List.
75: -- Also disable Multiple Message Detection.
76: --
77: p_return_status := hr_multi_message.get_return_status_disable;
78: hr_utility.set_location(' Leaving:' || l_proc,20);
79: --
80: exception
81: when hr_multi_message.error_message_exist then
82: --

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

91: p_object_version_number := null;
92: p_start_date := null;
93: p_end_date := null;
94: p_return_status := hr_multi_message.get_return_status_disable;
95: hr_utility.set_location(' Leaving:' || l_proc, 30);
96: when others then
97: --
98: -- When Multiple Message Detection is enabled catch
99: -- any Application specific or other unexpected

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

102: -- error.
103: --
104: rollback to create_ame_approver_type_swi;
105: if hr_multi_message.unexpected_error_add(l_proc) then
106: hr_utility.set_location(' Leaving:' || l_proc,40);
107: raise;
108: end if;
109: --
110: -- Reset IN OUT and set OUT parameters

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

112: p_object_version_number := null;
113: p_start_date := null;
114: p_end_date := null;
115: p_return_status := hr_multi_message.get_return_status_disable;
116: hr_utility.set_location(' Leaving:' || l_proc,50);
117: end create_ame_approver_type;
118: --
119: -- ----------------------------------------------------------------------------
120: -- |------------------------< delete_ame_approver_type >----------------------|

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

136: --
137: -- Other variables
138: l_proc varchar2(72) := g_package ||'delete_ame_approver_type';
139: Begin
140: hr_utility.set_location(' Entering:' || l_proc,10);
141: --
142: -- Issue a savepoint
143: --
144: savepoint delete_ame_apt_type_swi;

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

181: -- messages of any type exist in the Multiple Message List.
182: -- Also disable Multiple Message Detection.
183: --
184: p_return_status := hr_multi_message.get_return_status_disable;
185: hr_utility.set_location(' Leaving:' || l_proc,20);
186: --
187: exception
188: when hr_multi_message.error_message_exist then
189: --

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

198: p_object_version_number := l_object_version_number;
199: p_start_date := null;
200: p_end_date := null;
201: p_return_status := hr_multi_message.get_return_status_disable;
202: hr_utility.set_location(' Leaving:' || l_proc, 30);
203: when others then
204: --
205: -- When Multiple Message Detection is enabled catch
206: -- any Application specific or other unexpected

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

209: -- error.
210: --
211: rollback to delete_ame_apt_type_swi;
212: if hr_multi_message.unexpected_error_add(l_proc) then
213: hr_utility.set_location(' Leaving:' || l_proc,40);
214: raise;
215: end if;
216: --
217: -- Reset IN OUT and set OUT parameters

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

219: p_object_version_number := l_object_version_number;
220: p_start_date := null;
221: p_end_date := null;
222: p_return_status := hr_multi_message.get_return_status_disable;
223: hr_utility.set_location(' Leaving:' || l_proc,50);
224: end delete_ame_approver_type;
225:
226: end ame_approver_type_swi;