DBA Data[Home] [Help]

APPS.PQH_STR_BUS SQL Statements

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

Line: 31

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pqh_fr_stat_situation_rules str
         , pqh_fr_stat_situations sts
      where str.stat_situation_rule_id = p_stat_situation_rule_id
      and str.statutory_situation_id = sts.statutory_situation_id
      and pbg.business_group_id = sts.business_group_id;
Line: 114

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pqh_fr_stat_situation_rules str
         , pqh_fr_stat_situations sts
     where str.stat_situation_rule_id = p_stat_situation_rule_id
     	   and pbg.business_group_id = sts.business_group_id
     	   and sts.statutory_situation_id = str.statutory_situation_id;
Line: 222

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

End chk_non_updateable_args;
Line: 284

  Select null
  from    pqh_txn_category_attributes txnAttrs,
          pqh_transaction_categories txnCats
  where txnAttrs.transaction_category_id = txnCats.transaction_category_id
      and txnCats.short_name ='FR_PQH_STAT_SIT_TXN'
      and txn_category_attribute_id = p_txn_category_attribute_id;
Line: 314

 Select null
 from FND_FLEX_VALUE_SETS
 where flex_value_set_id = p_value_set_id;
Line: 319

 Select value_style_cd ,value_set_id
 from pqh_txn_category_attributes
 where txn_category_attribute_id = p_txn_category_attribute_id;
Line: 359

 Select value_style_cd
 from pqh_txn_category_attributes
 where txn_category_attribute_id = p_txn_category_attribute_id;
Line: 397

Select value_style_cd
from pqh_txn_category_attributes
where txn_category_attribute_id = p_txn_category_attribute_id;
Line: 480

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

End insert_validate;
Line: 532

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

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

End update_validate;
Line: 590

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

End delete_validate;