DBA Data[Home] [Help]

APPS.BEN_CPE_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ben_copy_entity_results cpe
      --   , EDIT_HERE table_name(s) 333
     where cpe.copy_entity_result_id = p_copy_entity_result_id;
Line: 110

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ben_copy_entity_results cpe
      --   , EDIT_HERE table_name(s) 333
     where cpe.copy_entity_result_id = p_copy_entity_result_id;
Line: 199

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in ben_cpe_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 224

End chk_non_updateable_args;
Line: 229

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

End insert_validate;
Line: 258

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

  chk_non_updateable_args
    (p_effective_date              => p_effective_date
      ,p_rec              => p_rec
    );
Line: 287

End update_validate;
Line: 292

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

End delete_validate;