DBA Data[Home] [Help]

APPS.BEN_EIV_BUS SQL Statements

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

Line: 28

    select pbg.legislation_code
      from per_business_groups pbg
         , ben_extra_input_values eiv
     where eiv.extra_input_value_id = p_extra_input_value_id
       and pbg.business_group_id = eiv.business_group_id;
Line: 122

cursor c1 is select null
             from   ben_extra_input_values
             Where  extra_input_value_id <> nvl(p_extra_input_value_id,-1)
             and    acty_base_rt_id = p_acty_base_rt_id
             and    input_value_id = p_input_value_id;
Line: 183

cursor c1 is select input_va_calc_rl
             from   ben_acty_base_rt_f
             Where  acty_base_rt_id = p_acty_base_rt_id
               and  p_effective_date between
                       effective_start_date and effective_end_date;
Line: 208

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

End insert_validate;
Line: 245

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

End update_validate;
Line: 275

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

End delete_validate;