DBA Data[Home] [Help]

APPS.PQH_TAH_UPD SQL Statements

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

Line: 54

Procedure update_dml
  (p_rec in out nocopy pqh_tah_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 68

  update pqh_ss_approval_history
    set
     approval_history_id             = p_rec.approval_history_id
    ,transaction_history_id          = p_rec.transaction_history_id
    ,transaction_effective_date      = p_rec.transaction_effective_date
    ,action                          = p_rec.action
    ,user_name                       = p_rec.user_name
    ,transaction_item_type           = p_rec.transaction_item_type
    ,transaction_item_key            = p_rec.transaction_item_key
    ,effective_date_option           = p_rec.effective_date_option
    ,orig_system                     = p_rec.orig_system
    ,orig_system_id                  = p_rec.orig_system_id
    ,notification_id                 = p_rec.notification_id
    ,user_comment                    = p_rec.user_comment
    where approval_history_id = p_rec.approval_history_id
    and transaction_history_id = p_rec.transaction_history_id;
Line: 108

End update_dml;
Line: 142

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

End pre_update;
Line: 186

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

End post_update;
Line: 334

  pqh_tah_bus.update_validate
     (p_rec
     );
Line: 343

  pqh_tah_upd.pre_update(p_rec);
Line: 347

  pqh_tah_upd.update_dml(p_rec);
Line: 351

  pqh_tah_upd.post_update
     (p_rec
     );