DBA Data[Home] [Help]

APPS.PQH_TXH_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_ss_transaction_history txh
      --   , EDIT_HERE table_name(s) 333
     where txh.transaction_history_id = p_transaction_history_id;*/
Line: 102

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pqh_ss_transaction_history txh
      --   , EDIT_HERE table_name(s) 333
     where txh.transaction_history_id = p_transaction_history_id;*/
Line: 191

Procedure chk_non_updateable_args
  (p_rec in pqh_txh_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 214

End chk_non_updateable_args;
Line: 219

Procedure insert_validate
  (p_rec                          in pqh_txh_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 237

End insert_validate;
Line: 242

Procedure update_validate
  (p_rec                          in pqh_txh_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 258

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 264

End update_validate;
Line: 269

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

End delete_validate;