DBA Data[Home] [Help]

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

  update ghr_compl_bases
    set
     compl_basis_id                  = p_rec.compl_basis_id
    ,compl_claim_id                  = p_rec.compl_claim_id
    ,basis                           = p_rec.basis
    ,value                           = p_rec.value
    ,statute                         = p_rec.statute
    ,agency_finding                  = p_rec.agency_finding
    ,aj_finding                      = p_rec.aj_finding
    ,object_version_number           = p_rec.object_version_number
    where compl_basis_id = p_rec.compl_basis_id;
Line: 105

End update_dml;
Line: 139

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

End pre_update;
Line: 183

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

    ghr_cba_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_compl_basis_id              => p_rec.compl_basis_id
      ,p_compl_claim_id              => p_rec.compl_claim_id
      ,p_basis                       => p_rec.basis
      ,p_value                       => p_rec.value
      ,p_statute                     => p_rec.statute
      ,p_agency_finding              => p_rec.agency_finding
      ,p_aj_finding                  => p_rec.aj_finding
      ,p_object_version_number       => p_rec.object_version_number
      ,p_compl_claim_id_o            => ghr_cba_shd.g_old_rec.compl_claim_id
      ,p_basis_o                     => ghr_cba_shd.g_old_rec.basis
      ,p_value_o                     => ghr_cba_shd.g_old_rec.value
      ,p_statute_o                   => ghr_cba_shd.g_old_rec.statute
      ,p_agency_finding_o            => ghr_cba_shd.g_old_rec.agency_finding
      ,p_aj_finding_o                => ghr_cba_shd.g_old_rec.aj_finding
      ,p_object_version_number_o     => ghr_cba_shd.g_old_rec.object_version_number
      );
Line: 224

End post_update;
Line: 334

  ghr_cba_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 341

  ghr_cba_upd.pre_update(p_rec);
Line: 345

  ghr_cba_upd.update_dml(p_rec);
Line: 349

  ghr_cba_upd.post_update
     (p_effective_date
     ,p_rec
     );