DBA Data[Home] [Help]

APPS.PQH_CEC_UPD SQL Statements

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

Line: 51

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

  update pqh_copy_entity_contexts
  set
  context                           = p_rec.context,
  application_short_name            = p_rec.application_short_name,
  legislation_code                  = p_rec.legislation_code,
  responsibility_key                = p_rec.responsibility_key,
  transaction_short_name            = p_rec.transaction_short_name,
  object_version_number             = p_rec.object_version_number
  where context = p_rec.context;
Line: 93

End update_dml;
Line: 127

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

End pre_update;
Line: 169

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

    pqh_cec_rku.after_update
      (
  p_context                       =>p_rec.context
 ,p_application_short_name        =>p_rec.application_short_name
 ,p_legislation_code              =>p_rec.legislation_code
 ,p_responsibility_key            =>p_rec.responsibility_key
 ,p_transaction_short_name        =>p_rec.transaction_short_name
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_application_short_name_o      =>pqh_cec_shd.g_old_rec.application_short_name
 ,p_legislation_code_o            =>pqh_cec_shd.g_old_rec.legislation_code
 ,p_responsibility_key_o          =>pqh_cec_shd.g_old_rec.responsibility_key
 ,p_transaction_short_name_o      =>pqh_cec_shd.g_old_rec.transaction_short_name
 ,p_object_version_number_o       =>pqh_cec_shd.g_old_rec.object_version_number
      );
Line: 210

End post_update;
Line: 318

  pqh_cec_bus.update_validate(p_rec);
Line: 322

  pre_update(p_rec);
Line: 326

  update_dml(p_rec);
Line: 330

  post_update(p_rec);