DBA Data[Home] [Help]

APPS.GHR_PRH_API dependencies on HR_UTILITY

Line 33: hr_utility.set_location('Entering:'|| l_proc, 5);

29: where prh.pa_request_id = p_pa_request_id
30: order by prh.pa_routing_history_id desc;
31:
32: begin
33: hr_utility.set_location('Entering:'|| l_proc, 5);
34: --
35:
36: savepoint upd_date_notif_sent;
37: hr_utility.set_location(l_proc, 6);

Line 37: hr_utility.set_location(l_proc, 6);

33: hr_utility.set_location('Entering:'|| l_proc, 5);
34: --
35:
36: savepoint upd_date_notif_sent;
37: hr_utility.set_location(l_proc, 6);
38:
39:
40: for cur_routing_history in C_routing_history_id loop
41: l_prh_pa_routing_history_id := cur_routing_history.pa_routing_history_id;

Line 55: -- hr_utility.set_message(8301,'GHR_38112_INVALID_API');

51: ,p_object_version_number => l_prh_object_version_number
52: ,p_validate => p_validate
53: );
54: -- else
55: -- hr_utility.set_message(8301,'GHR_38112_INVALID_API');
56: -- hr_utility.raise_error;
57: -- end if;
58:
59: if p_validate then

Line 56: -- hr_utility.raise_error;

52: ,p_validate => p_validate
53: );
54: -- else
55: -- hr_utility.set_message(8301,'GHR_38112_INVALID_API');
56: -- hr_utility.raise_error;
57: -- end if;
58:
59: if p_validate then
60: raise hr_api.validate_enabled;

Line 65: hr_utility.set_location(' Leaving:'||l_proc, 11);

61: end if;
62:
63: -- Set all output arguments
64: --
65: hr_utility.set_location(' Leaving:'||l_proc, 11);
66: exception
67: when hr_api.validate_enabled then
68: --
69: -- As the Validate_Enabled exception has been raised

Line 81: hr_utility.set_location(' Leaving:'||l_proc, 12);

77: when others then
78: ROLLBACK TO upd_date_notif_sent;
79: raise;
80:
81: hr_utility.set_location(' Leaving:'||l_proc, 12);
82:
83: end upd_date_notif_sent;
84: end ghr_prh_api;