DBA Data[Home] [Help]

APPS.PER_PGS_SHD dependencies on HR_UTILITY

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

153: --
154: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
155: --
156: Begin
157: hr_utility.set_location('Entering:'||l_proc, 5);
158: --
159: -- Call the corresponding datetrack api
160: --
161: dt_api.find_dt_upd_modes

Line 172: hr_utility.set_location(' Leaving:'||l_proc, 10);

168: ,p_update_override => p_update_override
169: ,p_update_change_insert => p_update_change_insert
170: );
171: --
172: hr_utility.set_location(' Leaving:'||l_proc, 10);
173: End find_dt_upd_modes;
174: --
175: -- ----------------------------------------------------------------------------
176: -- |---------------------------< find_dt_del_modes >--------------------------|

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

187: l_proc varchar2(72) := g_package||'find_dt_del_modes';
188: --
189: --
190: Begin
191: hr_utility.set_location('Entering:'||l_proc, 5);
192: --
193: -- Call the corresponding datetrack api
194: --
195: dt_api.find_dt_del_modes

Line 206: hr_utility.set_location(' Leaving:'||l_proc, 10);

202: ,p_future_change => p_future_change
203: ,p_delete_next_change => p_delete_next_change
204: );
205: --
206: hr_utility.set_location(' Leaving:'||l_proc, 10);
207: End find_dt_del_modes;
208: --
209: -- ----------------------------------------------------------------------------
210: -- |-----------------------< upd_effective_end_date >-------------------------|

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

221: l_proc varchar2(72) := g_package||'upd_effective_end_date';
222: l_object_version_number number;
223: --
224: Begin
225: hr_utility.set_location('Entering:'||l_proc, 5);
226: --
227: -- Because we are updating a row we must get the next object
228: -- version number.
229: --

Line 237: hr_utility.set_location(l_proc, 10);

233: ,p_base_key_column => 'grade_spine_id'
234: ,p_base_key_value => p_base_key_value
235: );
236: --
237: hr_utility.set_location(l_proc, 10);
238: per_pgs_shd.g_api_dml := true; -- Set the api dml status
239: --
240: -- Update the specified datetrack row setting the effective
241: -- end date to the specified new effective end date.

Line 252: hr_utility.set_location(' Leaving:'||l_proc, 15);

248: between t.effective_start_date and t.effective_end_date;
249: --
250: per_pgs_shd.g_api_dml := false; -- Unset the api dml status
251: p_object_version_number := l_object_version_number;
252: hr_utility.set_location(' Leaving:'||l_proc, 15);
253: --
254: Exception
255: When Others Then
256: per_pgs_shd.g_api_dml := false; -- Unset the api dml status

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

301: --
302: --
303: --
304: Begin
305: hr_utility.set_location('Entering:'||l_proc, 5);
306: --
307: -- Ensure that all the mandatory arguments are not null
308: --
309: hr_api.mandatory_arg_error(p_api_name => l_proc

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

383: --
384: p_validation_start_date := l_validation_start_date;
385: p_validation_end_date := l_validation_end_date;
386: --
387: hr_utility.set_location(' Leaving:'||l_proc, 30);
388: --
389: -- We need to trap the ORA LOCK exception
390: --
391: Exception