DBA Data[Home] [Help]

APPS.BEN_USE_CVG_RT_DATE dependencies on HR_UTILITY

Line 36: g_debug boolean := hr_utility.debug_enabled;

32: */
33: --------------------------------------------------------------------------------
34: --
35: g_package varchar2(80) := 'ben_use_cvg_rt_date';
36: g_debug boolean := hr_utility.debug_enabled;
37: --
38: -- to to get whether coverage fonm calc is define or not
39: procedure get_csd_rsd_Status( p_pgm_id in number default null
40: ,p_ptip_id in number default null

Line 103: g_debug := hr_utility.debug_enabled;

99: and pl.effective_end_date
100: and rownum = 1; -- 5095721
101:
102: Begin
103: g_debug := hr_utility.debug_enabled;
104: if g_debug then
105: hr_utility.set_location ('Entering '||l_package,10);
106: hr_utility.set_location ('p_plip_id '||p_plip_id,10);
107: hr_utility.set_location ('p_pl_id '||p_pl_id,10);

Line 105: hr_utility.set_location ('Entering '||l_package,10);

101:
102: Begin
103: g_debug := hr_utility.debug_enabled;
104: if g_debug then
105: hr_utility.set_location ('Entering '||l_package,10);
106: hr_utility.set_location ('p_plip_id '||p_plip_id,10);
107: hr_utility.set_location ('p_pl_id '||p_pl_id,10);
108: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);
109:

Line 106: hr_utility.set_location ('p_plip_id '||p_plip_id,10);

102: Begin
103: g_debug := hr_utility.debug_enabled;
104: if g_debug then
105: hr_utility.set_location ('Entering '||l_package,10);
106: hr_utility.set_location ('p_plip_id '||p_plip_id,10);
107: hr_utility.set_location ('p_pl_id '||p_pl_id,10);
108: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);
109:
110: end if;

Line 107: hr_utility.set_location ('p_pl_id '||p_pl_id,10);

103: g_debug := hr_utility.debug_enabled;
104: if g_debug then
105: hr_utility.set_location ('Entering '||l_package,10);
106: hr_utility.set_location ('p_plip_id '||p_plip_id,10);
107: hr_utility.set_location ('p_pl_id '||p_pl_id,10);
108: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);
109:
110: end if;
111: -- initalise the global

Line 108: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);

104: if g_debug then
105: hr_utility.set_location ('Entering '||l_package,10);
106: hr_utility.set_location ('p_plip_id '||p_plip_id,10);
107: hr_utility.set_location ('p_pl_id '||p_pl_id,10);
108: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);
109:
110: end if;
111: -- initalise the global
112: ben_manage_life_events.g_fonm_cvg_strt_dt := null ;

Line 151: hr_utility.set_location ('status '||p_status,10);

147: end if ;
148:
149: if g_debug then
150:
151: hr_utility.set_location ('status '||p_status,10);
152: hr_utility.set_location ('Leaving '||l_package,10);
153: end if;
154:
155: End ;

Line 152: hr_utility.set_location ('Leaving '||l_package,10);

148:
149: if g_debug then
150:
151: hr_utility.set_location ('status '||p_status,10);
152: hr_utility.set_location ('Leaving '||l_package,10);
153: end if;
154:
155: End ;
156: --

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

227: l_proc varchar2(400) := g_package||'.get_fonm' ;
228: begin
229:
230: if g_debug then
231: hr_utility.set_location ('Entering '||l_proc,10);
232: end if;
233:
234: p_fonm := ben_manage_life_events.fonm ;
235: p_fonm_cvg_strt_dt := ben_manage_life_events.g_fonm_cvg_strt_dt ;

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

236: p_fonm_rt_strt_dt := ben_manage_life_events.g_fonm_rt_strt_dt ;
237:
238:
239: if g_debug then
240: hr_utility.set_location ('Leaving '||l_proc,10);
241: end if;
242:
243: end get_fonm ;
244:

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

250: l_proc varchar2(400) := g_package||'.set_fonm' ;
251: begin
252:
253: if g_debug then
254: hr_utility.set_location ('Entering '||l_proc,10);
255: end if;
256:
257: ben_manage_life_events.fonm := p_fonm ;
258: if p_fonm = 'N' then

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

270: end if ;
271:
272:
273: if g_debug then
274: hr_utility.set_location ('Leaving '||l_proc,10);
275: end if;
276: end set_fonm ;
277:
278: procedure clear_fonm_globals is

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

280: l_proc varchar2(400) := g_package||'.clear_fonm_globals';
281:
282: begin
283: --
284: hr_utility.set_location ('Entering '||l_proc,10);
285:
286: ben_manage_life_events.fonm := null ;
287: ben_manage_life_events.g_fonm_cvg_strt_dt := null ;
288: ben_manage_life_events.g_fonm_rt_strt_dt := null;

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

286: ben_manage_life_events.fonm := null ;
287: ben_manage_life_events.g_fonm_cvg_strt_dt := null ;
288: ben_manage_life_events.g_fonm_rt_strt_dt := null;
289:
290: hr_utility.set_location ('Leaving '||l_proc,10);
291: --
292: end clear_fonm_globals;
293:
294: end ben_use_cvg_rt_date;