DBA Data[Home] [Help]

APPS.BEN_DETERMINE_DATE dependencies on BEN_PL_F

Line 170: from ben_pl_f pln

166:
167: cursor c_pl_name
168: is
169: select name
170: from ben_pl_f pln
171: where pl_id=p_pl_id
172: and p_effective_Date between effective_start_date and effective_end_date;
173:
174: cursor c_opt_name

Line 206: l_pl_name ben_pl_f.name%type;

202:
203: l_formula_type_id ff_formulas_f.formula_type_id%type;
204: l_formula_type_name ff_formula_types.formula_type_name%type;
205: l_pgm_name ben_pgm_f.name%type;
206: l_pl_name ben_pl_f.name%type;
207: l_opt_name ben_opt_f.name%type;
208: l_dummy number;
209: l_national_identifier per_all_people_f.national_identifier%type;
210:

Line 682: from ben_pl_f pl

678: l_opt c_opt%rowtype;
679: --
680: cursor c_pl_typ(l_pl_id number) is
681: select pl.pl_typ_id
682: from ben_pl_f pl
683: where pl.pl_id = l_pl_id
684: and pl.business_group_id = p_business_group_id
685: and nvl(l_lf_evt_ocrd_dt,p_effective_date)
686: between pl.effective_start_date

Line 6943: l_pln_name ben_pl_f.name%type;

6939: l_fonm_cvg_strt_dt date;
6940: --
6941: -- Bug No 3965571
6942: --
6943: l_pln_name ben_pl_f.name%type;
6944: l_pgm_name ben_pgm_f.name%type;
6945: l_opt_name ben_opt_f.name%type;
6946: --
6947: -- Cursor declaration.

Line 7051: from ben_pl_f pln

7047: pln.rt_strt_dt_cd,
7048: pln.rt_strt_dt_rl,
7049: pln.rt_end_dt_cd,
7050: pln.rt_end_dt_rl
7051: from ben_pl_f pln
7052: where pln.pl_id=c_pl_id
7053: and c_effective_date
7054: between pln.effective_start_date and pln.effective_end_date
7055: union

Line 7110: from ben_pl_f

7106: rt_strt_dt_cd,
7107: rt_strt_dt_rl,
7108: rt_end_dt_cd,
7109: rt_end_dt_rl
7110: from ben_pl_f
7111: where pl_id=l_pl_id and
7112: business_group_id =p_business_group_id and
7113: nvl(p_lf_evt_ocrd_dt,p_effective_date) between
7114: effective_start_date and effective_end_date

Line 7236: from ben_pl_f pln

7232: pln.rt_strt_dt_cd,
7233: pln.rt_strt_dt_rl,
7234: pln.rt_end_dt_cd,
7235: pln.rt_end_dt_rl
7236: from ben_pl_f pln
7237: where pln.pl_id=c_pl_id
7238: and c_effective_date
7239: between pln.effective_start_date and pln.effective_end_date
7240: and ( enrt_cvg_strt_dt_cd is not null

Line 7312: from ben_pl_f

7308: rt_strt_dt_cd,
7309: rt_strt_dt_rl,
7310: rt_end_dt_cd,
7311: rt_end_dt_rl
7312: from ben_pl_f
7313: where pl_id=l_pl_id and
7314: business_group_id =p_business_group_id and
7315: nvl(p_lf_evt_ocrd_dt,p_effective_date) between
7316: effective_start_date and effective_end_date

Line 7355: ben_pl_f pln

7351: )
7352: is
7353: select ptp.ptip_id
7354: from ben_ptip_f ptp,
7355: ben_pl_f pln
7356: where ptp.pl_typ_id = pln.pl_typ_id
7357: and c_effective_date
7358: between pln.effective_start_date and pln.effective_end_date
7359: and ptp.pgm_id = c_pgm_id

Line 7462: from ben_pl_f pln

7458: (c_pl_id in number
7459: ,c_effective_date in date)
7460: is
7461: select pln.name
7462: from ben_pl_f pln
7463: where pln.pl_id = c_pl_id and pln.business_group_id = p_business_group_id
7464: and c_effective_date between pln.effective_start_date and pln.effective_end_date;
7465:
7466: cursor c_pgm