DBA Data[Home] [Help]

APPS.BEN_CRT_BUS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 112

    select null
    from   per_all_people_f a
    where  a.person_id = p_person_id
    and    p_effective_date
           between a.effective_start_date
           and     a.effective_end_date;
Line: 194

    select null
    from   ben_pl_f a
    where  a.pl_id = p_pl_id
    and    p_effective_date
           between a.effective_start_date
           and     a.effective_end_date;
Line: 202

    select null
    from ben_pl_F pln
    where pln.pl_id = p_pl_id
    and    p_effective_date
           between pln.effective_start_date
           and     pln.effective_end_date
    and pln.pl_stat_cd = 'A';
Line: 254

       fnd_message.set_name('BEN','BEN_93965_SELECT_ACTIVE_PLAN');
Line: 346

    select null
    from   ben_pl_typ_f a
    where  a.pl_typ_id = p_pl_typ_id
    and    p_effective_date
           between a.effective_start_date
           and     a.effective_end_date;
Line: 740

Procedure insert_validate(p_rec in ben_crt_shd.g_rec_type
                         ,p_effective_date in date) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 813

End insert_validate;
Line: 818

Procedure update_validate(p_rec in ben_crt_shd.g_rec_type
                         ,p_effective_date in date) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 891

End update_validate;
Line: 896

Procedure delete_validate(p_rec in ben_crt_shd.g_rec_type
                         ,p_effective_date in date) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 907

End delete_validate;
Line: 920

    select a.legislation_code
    from   per_business_groups a,
           ben_crt_ordr b
    where b.crt_ordr_id      = p_crt_ordr_id
    and   a.business_group_id = b.business_group_id;