DBA Data[Home] [Help]

APPS.BEN_EGD_BUS SQL Statements

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

Line: 112

    select null
    from   ben_elig_per_opt_f a
    where  a.elig_per_opt_id = p_elig_per_opt_id
    and    p_effective_date
           between a.effective_start_date
           and     a.effective_end_date;
Line: 193

    select null
    from   ben_elig_per_f a
    where  a.elig_per_id = p_elig_per_id
    and    p_effective_date
           between a.effective_start_date
           and     a.effective_end_date;
Line: 274

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

    select null
    from   ben_per_in_ler a ,
           ben_ler_f b
    where  a.per_in_ler_id = p_per_in_ler_id
      and  a.per_in_ler_stat_cd not in ('VOIDD', 'BCKDT')
      and  a.ler_id = b.ler_id
      and  b.typ_cd <> 'COMP'
      and    p_effective_date
           between b.effective_start_date
           and     b.effective_end_date;
Line: 615

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

End insert_validate;
Line: 680

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

End update_validate;
Line: 745

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

End delete_validate;
Line: 769

    select a.legislation_code
    from   per_business_groups a,
           ben_elig_dpnt b
    where b.elig_dpnt_id      = p_elig_dpnt_id
    and   a.business_group_id = b.business_group_id;