DBA Data[Home] [Help]

APPS.BEN_CPD_BUS SQL Statements

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

Line: 37

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ben_cwb_pl_dsgn cpd
     where cpd.pl_id = p_pl_id
       and cpd.lf_evt_ocrd_dt = p_lf_evt_ocrd_dt
       and cpd.oipl_id = p_oipl_id
       and pbg.business_group_id (+) = cpd.business_group_id;
Line: 126

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ben_cwb_pl_dsgn cpd
     where cpd.pl_id = p_pl_id
       and cpd.lf_evt_ocrd_dt = p_lf_evt_ocrd_dt
       and cpd.oipl_id = p_oipl_id
       and pbg.business_group_id (+) = cpd.business_group_id;
Line: 233

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

End chk_non_updateable_args;
Line: 289

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

End insert_validate;
Line: 306

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 324

End update_validate;
Line: 329

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

End delete_validate;