DBA Data[Home] [Help]

APPS.PAY_PEL_SHD dependencies on HR_UTILITY

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

250: --
251: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
252: --
253: Begin
254: hr_utility.set_location('Entering:'||l_proc, 5);
255: --
256: -- Call the corresponding datetrack api
257: --
258: dt_api.find_dt_upd_modes

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

265: ,p_update_override => p_update_override
266: ,p_update_change_insert => p_update_change_insert
267: );
268: --
269: hr_utility.set_location(' Leaving:'||l_proc, 10);
270: End find_dt_upd_modes;
271: --
272: -- ----------------------------------------------------------------------------
273: -- |---------------------------< find_dt_del_modes >--------------------------|

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

295: and p_effective_date
296: between t.effective_start_date and t.effective_end_date;
297: --
298: Begin
299: hr_utility.set_location('Entering:'||l_proc, 5);
300: Open C_sel1;
301: Fetch C_Sel1 Into
302: l_parent_key_value1
303: ,l_parent_key_value2;

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

328: ,p_future_change => p_future_change
329: ,p_delete_next_change => p_delete_next_change
330: );
331: --
332: hr_utility.set_location(' Leaving:'||l_proc, 10);
333: End find_dt_del_modes;
334: --
335: -- ----------------------------------------------------------------------------
336: -- |-----------------------< upd_effective_end_date >-------------------------|

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

347: l_proc varchar2(72) := g_package||'upd_effective_end_date';
348: l_object_version_number pay_element_links_f.OBJECT_VERSION_NUMBER%TYPE;
349: --
350: Begin
351: hr_utility.set_location('Entering:'||l_proc, 5);
352: --
353: -- Because we are updating a row we must get the next object
354: -- version number.
355: --

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

359: ,p_base_key_column => 'element_link_id'
360: ,p_base_key_value => p_base_key_value
361: );
362: --
363: hr_utility.set_location(l_proc, 10);
364: pay_pel_shd.g_api_dml := true; -- Set the api dml status
365: --
366: -- Update the specified datetrack row setting the effective
367: -- end date to the specified new effective end date.

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

374: between t.effective_start_date and t.effective_end_date;
375: --
376: pay_pel_shd.g_api_dml := false; -- Unset the api dml status
377: p_object_version_number := l_object_version_number;
378: hr_utility.set_location(' Leaving:'||l_proc, 15);
379: --
380: Exception
381: When Others Then
382: pay_pel_shd.g_api_dml := false; -- Unset the api dml status

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

469: from hr_comments hc
470: where hc.comment_id = pay_pel_shd.g_old_rec.comment_id;
471: --
472: Begin
473: hr_utility.set_location('Entering:'||l_proc, 5);
474: --
475: -- Ensure that all the mandatory arguments are not null
476: --
477: hr_api.mandatory_arg_error(p_api_name => l_proc

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

580: --
581: p_validation_start_date := l_validation_start_date;
582: p_validation_end_date := l_validation_end_date;
583: --
584: hr_utility.set_location(' Leaving:'||l_proc, 30);
585: --
586: -- We need to trap the ORA LOCK exception
587: --
588: Exception