DBA Data[Home] [Help]

APPS.BEN_BDI_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: 192

    select null
    from   ben_oipl_f a
    where  a.oipl_id = p_oipl_id
    and    p_effective_date
           between a.effective_start_date
           and     a.effective_end_date;
Line: 273

    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: 354

    select null
    from   ben_pgm_f a
    where  a.pgm_id = p_pgm_id
    and    p_effective_date
           between a.effective_start_date
           and     a.effective_end_date;
Line: 433

    select null
    from   ben_benefit_actions a
    where  a.benefit_action_id = p_benefit_action_id;
Line: 547

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

End insert_validate;
Line: 611

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

End update_validate;
Line: 675

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

End delete_validate;
Line: 699

    select a.legislation_code
    from   per_business_groups a,
           ben_batch_dpnt_info b
    where b.batch_dpnt_id      = p_batch_dpnt_id
    and   a.business_group_id = b.business_group_id;