DBA Data[Home] [Help]

APPS.BEN_RTS_BUS SQL Statements

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

Line: 43

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ben_cwb_person_rates rts
      --   , EDIT_HERE table_name(s) 333
     where rts.group_per_in_ler_id = p_group_per_in_ler_id
       and rts.pl_id = p_pl_id
       and rts.oipl_id = p_oipl_id;
Line: 138

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ben_cwb_person_rates rts
      --   , EDIT_HERE table_name(s) 333
     where rts.group_per_in_ler_id = p_group_per_in_ler_id
       and rts.pl_id = p_pl_id
       and rts.oipl_id = p_oipl_id;
Line: 246

Procedure chk_non_updateable_args
  (p_rec in ben_rts_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 296

End chk_non_updateable_args;
Line: 301

Procedure insert_validate
  (p_rec                          in ben_rts_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 317

End insert_validate;
Line: 322

Procedure update_validate
  (p_rec                          in ben_rts_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 333

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 341

End update_validate;
Line: 346

Procedure delete_validate
  (p_rec                          in ben_rts_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 362

End delete_validate;