DBA Data[Home] [Help]

APPS.PER_SPS_SHD dependencies on HR_UTILITY

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

178: --
179: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
180: --
181: Begin
182: hr_utility.set_location('Entering:'||l_proc, 5);
183: --
184: -- Call the corresponding datetrack api
185: --
186: dt_api.find_dt_upd_modes

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

193: ,p_update_override => p_update_override
194: ,p_update_change_insert => p_update_change_insert
195: );
196: --
197: hr_utility.set_location(' Leaving:'||l_proc, 10);
198: End find_dt_upd_modes;
199: --
200: -- ----------------------------------------------------------------------------
201: -- |---------------------------< find_dt_del_modes >--------------------------|

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

221: and p_effective_date
222: between t.effective_start_date and t.effective_end_date;
223: --
224: Begin
225: hr_utility.set_location('Entering:'||l_proc, 5);
226: Open C_sel1;
227: Fetch C_Sel1 Into
228: l_parent_key_value1;
229: If C_Sel1%NOTFOUND then

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

250: ,p_future_change => p_future_change
251: ,p_delete_next_change => p_delete_next_change
252: );
253: --
254: hr_utility.set_location(' Leaving:'||l_proc, 10);
255: End find_dt_del_modes;
256: --
257: -- ----------------------------------------------------------------------------
258: -- |-----------------------< upd_effective_end_date >-------------------------|

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

269: l_proc varchar2(72) := g_package||'upd_effective_end_date';
270: l_object_version_number number;
271: --
272: Begin
273: hr_utility.set_location('Entering:'||l_proc, 5);
274: --
275: -- Because we are updating a row we must get the next object
276: -- version number.
277: --

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

281: ,p_base_key_column => 'step_id'
282: ,p_base_key_value => p_base_key_value
283: );
284: --
285: hr_utility.set_location(l_proc, 10);
286: per_sps_shd.g_api_dml := true; -- Set the api dml status
287: --
288: -- Update the specified datetrack row setting the effective
289: -- end date to the specified new effective end date.

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

296: between t.effective_start_date and t.effective_end_date;
297: --
298: per_sps_shd.g_api_dml := false; -- Unset the api dml status
299: p_object_version_number := l_object_version_number;
300: hr_utility.set_location(' Leaving:'||l_proc, 15);
301: --
302: Exception
303: When Others Then
304: per_sps_shd.g_api_dml := false; -- Unset the api dml status

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

379: --
380: --
381: --
382: Begin
383: hr_utility.set_location('Entering:'||l_proc, 5);
384: --
385: -- Ensure that all the mandatory arguments are not null
386: --
387: hr_api.mandatory_arg_error(p_api_name => l_proc

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

402: hr_api.mandatory_arg_error(p_api_name => l_proc
403: ,p_argument => 'object_version_number'
404: ,p_argument_value => p_object_version_number
405: );
406: hr_utility.set_location(l_proc, 10);
407:
408: --
409: -- Check to ensure the datetrack mode is not INSERT.
410: --

Line 432: hr_utility.set_location(l_proc, 20);

428: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
429: fnd_message.raise_error;
430: End If;
431:
432: hr_utility.set_location(l_proc, 20);
433:
434: --
435: --
436: -- Validate the datetrack mode mode getting the validation start

Line 461: hr_utility.set_location(l_proc, 30);

457: ,p_validation_start_date => l_validation_start_date
458: ,p_validation_end_date => l_validation_end_date
459: );
460: Else
461: hr_utility.set_location(l_proc, 30);
462: --
463: -- We are doing a datetrack 'INSERT' which is illegal within this
464: -- procedure therefore we must error (note: to lck on insert the
465: -- private procedure ins_lck should be called).

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

474: --
475: p_validation_start_date := l_validation_start_date;
476: p_validation_end_date := l_validation_end_date;
477: --
478: hr_utility.set_location(' Leaving:'||l_proc, 40);
479: --
480: -- We need to trap the ORA LOCK exception
481: --
482: Exception