DBA Data[Home] [Help]

APPS.BEN_CPI_BUS SQL Statements

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

Line: 34

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ben_cwb_person_info cpi
     where cpi.group_per_in_ler_id = p_group_per_in_ler_id
       and pbg.business_group_id (+) = cpi.business_group_id;
Line: 109

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ben_cwb_person_info cpi
     where cpi.group_per_in_ler_id = p_group_per_in_ler_id
       and pbg.business_group_id (+) = cpi.business_group_id;
Line: 206

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

End chk_non_updateable_args;
Line: 248

  (p_insert               IN boolean
  ,p_business_group_id    IN number
  ,p_legislation_code     IN varchar2
  ,p_legislation_subgroup IN varchar2 DEFAULT NULL) IS
--
BEGIN
  --
  -- Call the supporting procedure to check startup mode
  --
  IF (p_insert) THEN
    hr_startup_data_api_support.chk_startup_action
      (p_generic_allowed   => TRUE
      ,p_startup_allowed   => TRUE
      ,p_user_allowed      => TRUE
      ,p_business_group_id => p_business_group_id
      ,p_legislation_code  => p_legislation_code
      ,p_legislation_subgroup => p_legislation_subgroup
      );
Line: 282

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

End insert_validate;
Line: 329

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 376

End update_validate;
Line: 381

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

End delete_validate;