DBA Data[Home] [Help]

APPS.PQH_PTI_UPD SQL Statements

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

Line: 48

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

  update pqh_ptx_info_types
  set
  information_type                  = p_rec.information_type,
  active_inactive_flag              = p_rec.active_inactive_flag,
  description                       = p_rec.description,
  multiple_occurences_flag          = p_rec.multiple_occurences_flag,
  legislation_code                  = p_rec.legislation_code,
  object_version_number             = p_rec.object_version_number
  where information_type = p_rec.information_type;
Line: 90

End update_dml;
Line: 124

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

End pre_update;
Line: 166

Procedure post_update(
p_effective_date in date,p_rec in pqh_pti_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 179

    pqh_pti_rku.after_update
      (
  p_information_type              =>p_rec.information_type
 ,p_active_inactive_flag          =>p_rec.active_inactive_flag
 ,p_description                   =>p_rec.description
 ,p_multiple_occurences_flag      =>p_rec.multiple_occurences_flag
 ,p_legislation_code              =>p_rec.legislation_code
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
 ,p_active_inactive_flag_o        =>pqh_pti_shd.g_old_rec.active_inactive_flag
 ,p_description_o                 =>pqh_pti_shd.g_old_rec.description
 ,p_multiple_occurences_flag_o    =>pqh_pti_shd.g_old_rec.multiple_occurences_flag
 ,p_legislation_code_o            =>pqh_pti_shd.g_old_rec.legislation_code
 ,p_object_version_number_o       =>pqh_pti_shd.g_old_rec.object_version_number
      );
Line: 209

End post_update;
Line: 318

  pqh_pti_bus.update_validate(p_rec
  ,p_effective_date);
Line: 323

  pre_update(p_rec);
Line: 327

  update_dml(p_rec);
Line: 331

  post_update(
p_effective_date,p_rec);