DBA Data[Home] [Help]

APPS.HXC_PERIOD_EVALUATION dependencies on HR_UTILITY

Line 4: g_debug boolean := hr_utility.debug_enabled;

1: package body hxc_period_evaluation as
2: /* $Header: hxcperevl.pkb 120.3 2006/05/31 10:19:54 sechandr noship $ */
3:
4: g_debug boolean := hr_utility.debug_enabled;
5:
6: FUNCTION make_date(p_day varchar2,
7: p_month_year varchar2) RETURN DATE
8: IS

Line 132: g_debug := hr_utility.debug_enabled;

128: WHERE period_type = p_proc_period_type;
129:
130: BEGIN
131:
132: g_debug := hr_utility.debug_enabled;
133:
134: --
135: if g_debug then
136: l_proc := 'hxc_period_evaluation.GET_PERIOD_DETAILS';

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

133:
134: --
135: if g_debug then
136: l_proc := 'hxc_period_evaluation.GET_PERIOD_DETAILS';
137: hr_utility.set_location(l_proc, 10);
138: end if;
139: --
140:
141: --Let us check the cached table

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

164: g_per_time_period_types_ct(l_iter).number_per_fiscal_year := l_no_periods;
165: end if;
166: --
167: if g_debug then
168: hr_utility.set_location(l_proc, 20);
169: end if;
170: --
171: -- Use the number of periods in a fiscal year to deduce the base
172: -- period and multiple.

Line 203: hr_utility.set_message(801, 'PAY_6601_PAYROLL_INV_PERIOD_TP');

199: p_base_period_type := 'W';
200: p_multiple := 1;
201: ELSE
202: -- Unknown period type.
203: hr_utility.set_message(801, 'PAY_6601_PAYROLL_INV_PERIOD_TP');
204: hr_utility.raise_error;
205: END IF;
206: --
207: if g_debug then

Line 204: hr_utility.raise_error;

200: p_multiple := 1;
201: ELSE
202: -- Unknown period type.
203: hr_utility.set_message(801, 'PAY_6601_PAYROLL_INV_PERIOD_TP');
204: hr_utility.raise_error;
205: END IF;
206: --
207: if g_debug then
208: hr_utility.set_location(l_proc, 30);

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

204: hr_utility.raise_error;
205: END IF;
206: --
207: if g_debug then
208: hr_utility.set_location(l_proc, 30);
209: end if;
210: --
211: END get_period_details;
212: