DBA Data[Home] [Help]

APPS.GHR_PDH_API dependencies on HR_UTILITY

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

29: where pdh.position_description_id = p_position_description_id
30: order by pdh.pd_routing_history_id desc;
31:
32: begin
33: hr_utility.set_location('Entering:'|| l_proc, 5);
34: --
35: -- Issue a savepoint if operating in validation only mode.
36: --
37:

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

37:
38: -- if p_validate then
39: savepoint upd_date_notif_sent;
40: -- end if;
41: hr_utility.set_location(l_proc, 6);
42:
43:
44: for cur_routing_history in C_routing_history_id loop
45: l_pdh_pd_routing_history_id := cur_routing_history.pd_routing_history_id;

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

55: ,p_object_version_number => l_pdh_object_version_number
56: ,p_validate => p_validate
57: );
58: -- else
59: -- hr_utility.set_message(8301,'GHR_38112_INVALID_API');
60: -- hr_utility.raise_error;
61: -- end if;
62:
63: if p_validate then

Line 60: -- hr_utility.raise_error;

56: ,p_validate => p_validate
57: );
58: -- else
59: -- hr_utility.set_message(8301,'GHR_38112_INVALID_API');
60: -- hr_utility.raise_error;
61: -- end if;
62:
63: if p_validate then
64: raise hr_api.validate_enabled;

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

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

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

82: when others then
83: rollback to upd_date_notif_sent;
84: raise;
85:
86: hr_utility.set_location(' Leaving:'||l_proc, 12);
87:
88: end upd_date_notif_sent;
89: end ghr_pdh_api;