DBA Data[Home] [Help]

APPS.HR_ELC_RESULT_API dependencies on HR_UTILITY

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

46: from per_jobs
47: where job_id = p_job_id;
48: ---
49: begin
50: hr_utility.set_location('Entering:'|| l_proc, 10);
51: --
52: -- Issue a savepoint
53: --
54: savepoint create_election_result;

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

102: p_role_id := l_role_id;
103: p_ovn_election_candidates := l_ovn_election_candidates;
104: p_ovn_per_roles := l_ovn_per_roles;
105: --
106: hr_utility.set_location(' Leaving:'||l_proc, 70);
107: exception
108: when hr_api.validate_enabled then
109: --
110: -- As the Validate_Enabled exception has been raised

Line 122: hr_utility.set_location(' Leaving:'||l_proc, 80);

118: --
119: p_role_id := null;
120: p_ovn_per_roles := null;
121:
122: hr_utility.set_location(' Leaving:'||l_proc, 80);
123: when others then
124: --
125: -- A validation or unexpected error has occured
126: --

Line 134: hr_utility.set_location(' Leaving:'||l_proc, 90);

130: --
131: p_role_id := null;
132: p_ovn_per_roles := null;
133: p_ovn_election_candidates := l_temp_ovn;
134: hr_utility.set_location(' Leaving:'||l_proc, 90);
135: raise;
136: end create_election_result;
137: --
138:

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

175: from per_jobs
176: where job_id = p_job_id;
177: ---
178: begin
179: hr_utility.set_location('Entering:'|| l_proc, 10);
180: --
181: -- Issue a savepoint
182: --
183: savepoint update_election_result;

Line 226: hr_utility.set_location(' Leaving:'||l_proc, 70);

222: --
223: p_ovn_election_candidates := l_ovn_election_candidates;
224: p_ovn_per_roles := l_ovn_per_roles;
225: --
226: hr_utility.set_location(' Leaving:'||l_proc, 70);
227: exception
228: when hr_api.validate_enabled then
229: --
230: -- As the Validate_Enabled exception has been raised

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

238: --
239: p_ovn_election_candidates := null;
240: p_ovn_per_roles := null;
241:
242: hr_utility.set_location(' Leaving:'||l_proc, 80);
243: when others then
244: --
245: -- A validation or unexpected error has occured
246: --

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

250: --
251: p_ovn_election_candidates := null;
252: p_ovn_per_roles := null;
253: --
254: hr_utility.set_location(' Leaving:'||l_proc, 90);
255: raise;
256: end update_election_result;
257: --
258: end hr_elc_result_api;