DBA Data[Home] [Help]

APPS.PQH_TSH_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_tsh_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 68

  update pqh_ss_trans_state_history
    set
     transaction_history_id          = p_rec.transaction_history_id
    ,approval_history_id             = p_rec.approval_history_id
    ,creator_person_id               = p_rec.creator_person_id
    ,creator_role                    = p_rec.creator_role
    ,status                          = p_rec.status
    ,transaction_state               = p_rec.transaction_state
    ,effective_date                  = p_rec.effective_date
    ,effective_date_option           = p_rec.effective_date_option
    ,last_update_role                = p_rec.last_update_role
    ,parent_transaction_id           = p_rec.parent_transaction_id
    ,relaunch_function               = p_rec.relaunch_function
    ,transaction_document            = p_rec.transaction_document
    where transaction_history_id = p_rec.transaction_history_id
    and approval_history_id = p_rec.approval_history_id;
Line: 108

End update_dml;
Line: 142

Procedure pre_update
  (p_rec in pqh_tsh_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_tsh_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 209

End post_update;
Line: 289

  If (p_rec.last_update_role = hr_api.g_varchar2) then
    p_rec.last_update_role :=
    pqh_tsh_shd.g_old_rec.last_update_role;
Line: 333

  pqh_tsh_bus.update_validate
     (p_rec
     );
Line: 342

  pqh_tsh_upd.pre_update(p_rec);
Line: 346

  pqh_tsh_upd.update_dml(p_rec);
Line: 350

  pqh_tsh_upd.post_update
     (p_rec
     );
Line: 370

  ,p_last_update_role             in     varchar2  default hr_api.g_varchar2
  ,p_parent_transaction_id        in     number    default hr_api.g_number
  ,p_relaunch_function            in     varchar2  default hr_api.g_varchar2
  ,p_transaction_document         in     CLOB      default NULL
  ) is
--
  l_rec   pqh_tsh_shd.g_rec_type;
Line: 395

  ,p_last_update_role
  ,p_parent_transaction_id
  ,p_relaunch_function
  ,p_transaction_document
  );