DBA Data[Home] [Help]

APPS.PQH_RAP_BUS SQL Statements

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

Line: 29

    select pbg.legislation_code
      from per_business_groups_perf   pbg
         , pqh_rank_process_approvals rap
         , pqh_rank_processes         rnk
         , per_all_people_f           per
     where rap.rank_process_approval_id = p_rank_process_approval_id
       and rnk.rank_process_id          = rap.rank_process_id
       and per.person_id                = rnk.person_id
       and pbg.business_group_id        = per.business_group_id;
Line: 122

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

End chk_non_updateable_args;
Line: 151

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

End insert_validate;
Line: 174

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

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

End update_validate;
Line: 203

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

End delete_validate;