DBA Data[Home] [Help]

APPS.PAY_FR_ARC_UTL dependencies on HR_UTILITY

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

34: l_report_param_val pay_report_format_parameters.parameter_value%TYPE;
35: l_proc CONSTANT VARCHAR2(62):= g_package||'.range_person_enh_enabled';
36: --
37: BEGIN
38: hr_utility.set_location('Entering: ' || l_proc,10);
39: open csr_action_parameter;
40: fetch csr_action_parameter into l_action_param_val;
41: close csr_action_parameter;
42: --

Line 47: hr_utility.set_location(' Leaving: ' || l_proc,99);

43: open csr_range_format_param;
44: fetch csr_range_format_param into l_report_param_val;
45: close csr_range_format_param;
46: --
47: hr_utility.set_location(' Leaving: ' || l_proc,99);
48: RETURN (nvl(l_action_param_val,'N')='Y' AND nvl(l_report_param_val,'N')='Y');
49: --
50: END range_person_enh_enabled;
51: --