DBA Data[Home] [Help]

APPS.PQH_RNK_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
           , pqh_rank_processes       rnk
           , per_all_people_f         per
       where rnk.rank_process_id   = p_rank_process_id
         and rnk.person_id         = per.person_id
         and pbg.business_group_id = per.business_group_id
         and rnk.process_date between per.effective_start_date and per.effective_end_date;
Line: 102

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , pqh_rank_processes       rnk
         , per_all_people_f         per
       where rnk.rank_process_id   = p_rank_process_id
         and rnk.person_id         = per.person_id
         and pbg.business_group_id = per.business_group_id
         and rnk.process_date between per.effective_start_date and per.effective_end_date;
Line: 193

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

End chk_non_updateable_args;
Line: 221

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

End insert_validate;
Line: 242

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

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

End update_validate;
Line: 267

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

End delete_validate;