DBA Data[Home] [Help]

APPS.PQP_MILEAGE_CLAIM_PKG dependencies on HR_UTILITY

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

99: p_element_entry_id := null;
100: p_element_entry_date := null;
101: p_return_status := hr_multi_message.get_return_status_disable;
102:
103: hr_utility.set_location(' Leaving:' || l_proc,40);
104:
105: when others then
106: --
107: -- When Multiple Message Detection is enabled catch

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

120: p_mileage_claim_element :=null;
121: p_element_entry_id := null;
122: p_element_entry_date := null;
123: p_return_status := hr_multi_message.get_return_status_disable;
124: hr_utility.set_location(' Leaving:' || l_proc,50);
125: --raise;
126: END;
127:
128:

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

169: l_start_date :=FND_DATE.DATE_TO_CHARDATE(p_start_date);
170: l_end_date :=FND_DATE.DATE_TO_CHARDATE(p_end_date);
171: l_start_date_o :=p_start_date_o;
172: l_end_date_o :=p_end_date_o;
173: hr_utility.set_location(' Entering:' || l_proc,10);
174: --
175: -- Issue a savepoint
176: --
177: savepoint update_mileage_claim;

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

219: -- messages of any type exist in the Multiple Message List.
220: -- Also disable Multiple Message Detection.
221: --
222: p_return_status := hr_multi_message.get_return_status_disable;
223: hr_utility.set_location(' Leaving:' || l_proc,20);
224: --
225: exception
226: when hr_multi_message.error_message_exist then
227: --

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

235: p_mileage_claim_element :=null;
236: p_element_entry_id := null;
237: p_element_entry_date := null;
238: p_return_status := hr_multi_message.get_return_status_disable;
239: hr_utility.set_location(' Leaving:' || l_proc, 30);
240: when others then
241: --
242: -- When Multiple Message Detection is enabled catch
243: -- any Application specific or other unexpected

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

246: -- error.
247: --
248: rollback to update_mileage_claim;
249: if hr_multi_message.unexpected_error_add(l_proc) then
250: hr_utility.set_location(' Leaving:' || l_proc,40);
251: p_return_status := hr_multi_message.get_return_status_disable;
252: -- raise;
253: end if;
254: --

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

257: p_mileage_claim_element :=null;
258: p_element_entry_id := null;
259: p_element_entry_date := null;
260: p_return_status := hr_multi_message.get_return_status_disable;
261: hr_utility.set_location(' Leaving:' || l_proc,50);
262: --raise;
263:
264:
265: END;

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

275: )
276: IS
277: l_proc varchar2(72) := g_package ||'delete_mileage_claim';
278: BEGIN
279: hr_utility.set_location(' Entering:' || l_proc,10);
280: --
281: -- Issue a savepoint
282: --
283: savepoint delete_mileage_claim;

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

300: -- messages of any type exist in the Multiple Message List.
301: -- Also disable Multiple Message Detection.
302: --
303: p_return_status := hr_multi_message.get_return_status_disable;
304: hr_utility.set_location(' Leaving:' || l_proc,20);
305: --
306: exception
307: when hr_multi_message.error_message_exist then
308: --

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

317: p_mileage_claim_element :=null;
318: p_element_entry_id := null;
319: p_element_entry_date := null;
320: p_return_status := hr_multi_message.get_return_status_disable;
321: hr_utility.set_location(' Leaving:' || l_proc, 30);
322: when others then
323: --
324: -- When Multiple Message Detection is enabled catch
325: -- any Application specific or other unexpected

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

329: --
330: rollback to delete_mileage_claim;
331: if hr_multi_message.unexpected_error_add(l_proc) then
332: p_return_status := hr_multi_message.get_return_status_disable;
333: hr_utility.set_location(' Leaving:' || l_proc,40);
334: -- raise;
335: end if;
336: --
337: -- Reset IN OUT and set OUT parameters

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

339: p_mileage_claim_element :=null;
340: p_element_entry_id := null;
341: p_element_entry_date := null;
342: p_return_status := hr_multi_message.get_return_status_disable;
343: hr_utility.set_location(' Leaving:' || l_proc,50);
344: --raise;
345:
346: END;
347: