DBA Data[Home] [Help]

APPS.PQH_TAH_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_ss_approval_history tah
      --   , EDIT_HERE table_name(s) 333
     where
       tah.approval_history_id = p_approval_history_id
       and tah.transaction_history_id = p_transaction_history_id;*/
Line: 115

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pqh_ss_approval_history tah
      --   , EDIT_HERE table_name(s) 333
     where
        tah.approval_history_id = p_approval_history_id
	and tah.transaction_history_id = p_transaction_history_id;*/
Line: 214

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

End chk_non_updateable_args;
Line: 243

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

End insert_validate;
Line: 266

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 288

End update_validate;
Line: 293

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

End delete_validate;