DBA Data[Home] [Help]

APPS.PQH_CRL_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pqh_criteria_rate_defn_tl crl
         , pqh_criteria_rate_defn crd
     where crl.criteria_rate_defn_id = p_criteria_rate_defn_id
     and crd.criteria_rate_defn_id = crl.criteria_rate_defn_id
     and pbg.business_group_id = crd.business_group_id;
Line: 109

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pqh_criteria_rate_defn_tl crl
      --   , EDIT_HERE table_name(s) 333
     where crl.criteria_rate_defn_id = p_criteria_rate_defn_id
       and crl.language = p_language;
Line: 203

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

End chk_non_updateable_args;
Line: 233

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

End insert_validate;
Line: 262

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

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

End update_validate;
Line: 296

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

End delete_validate;