DBA Data[Home] [Help]

APPS.PQH_TSH_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_trans_state_history tsh
      --   , EDIT_HERE table_name(s) 333
     where tsh.transaction_history_id = p_transaction_history_id
       and tsh.approval_history_id = p_approval_history_id;*/
Line: 114

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

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

End chk_non_updateable_args;
Line: 241

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

End insert_validate;
Line: 264

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 286

End update_validate;
Line: 291

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

End delete_validate;