DBA Data[Home] [Help]

APPS.BEN_CSO_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ben_cwb_stock_optn_dtls cso
     where cso.cwb_stock_optn_dtls_id = p_cwb_stock_optn_dtls_id
       and pbg.business_group_id (+) = cso.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ben_cwb_stock_optn_dtls cso
     where cso.cwb_stock_optn_dtls_id = p_cwb_stock_optn_dtls_id
       and pbg.business_group_id (+) = cso.business_group_id;
Line: 205

    select per.person_id,
           per.employee_number,
           per.business_group_id
      from per_all_people_f per
     where per.person_id = p_person_id
     and   p_effective_date between per.effective_start_date and per.effective_end_date;
Line: 454

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

End chk_non_updateable_args;
Line: 482

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

End insert_validate;
Line: 525

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

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

End update_validate;
Line: 574

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

End delete_validate;