DBA Data[Home] [Help]

APPS.BEN_ACT_BUS SQL Statements

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

Line: 40

    select bg.legislation_code
    from   per_business_groups_perf bg,
           ben_benefit_actions bba, ben_person_actions bpa
    where bba.benefit_action_id      = bpa.benefit_action_id
    and   bba.business_group_id = bg.business_group_id
    and   bpa.person_action_id = p_person_action_id;
Line: 186

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

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

End insert_validate;
Line: 333

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

End update_validate;
Line: 366

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

End delete_validate;