DBA Data[Home] [Help]

APPS.GHR_CPL_UPD SQL Statements

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

Line: 54

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

  update ghr_compl_people
    set
     compl_person_id                 = p_rec.compl_person_id
    ,person_id                       = p_rec.person_id
    ,complaint_id                    = p_rec.complaint_id
    ,role_code                       = p_rec.role_code
    ,start_date                      = p_rec.start_date
    ,end_date                        = p_rec.end_date
    ,object_version_number           = p_rec.object_version_number
    where compl_person_id = p_rec.compl_person_id;
Line: 104

End update_dml;
Line: 138

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

End pre_update;
Line: 182

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

    ghr_cpl_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_compl_person_id             => p_rec.compl_person_id
      ,p_person_id                   => p_rec.person_id
      ,p_complaint_id                => p_rec.complaint_id
      ,p_role_code                   => p_rec.role_code
      ,p_start_date                  => p_rec.start_date
      ,p_end_date                    => p_rec.end_date
      ,p_object_version_number       => p_rec.object_version_number
      ,p_person_id_o                 => ghr_cpl_shd.g_old_rec.person_id
      ,p_complaint_id_o              => ghr_cpl_shd.g_old_rec.complaint_id
      ,p_role_code_o                 => ghr_cpl_shd.g_old_rec.role_code
      ,p_start_date_o                => ghr_cpl_shd.g_old_rec.start_date
      ,p_end_date_o                  => ghr_cpl_shd.g_old_rec.end_date
      ,p_object_version_number_o     => ghr_cpl_shd.g_old_rec.object_version_number
      );
Line: 221

End post_update;
Line: 327

  ghr_cpl_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 334

  ghr_cpl_upd.pre_update(p_rec);
Line: 338

  ghr_cpl_upd.update_dml(p_rec);
Line: 342

  ghr_cpl_upd.post_update
     (p_effective_date
     ,p_rec
     );