DBA Data[Home] [Help]

APPS.GHR_CST_DEL SQL Statements

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

Line: 51

Procedure delete_dml
  (p_rec in ghr_cst_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_dml';
Line: 64

  delete from ghr_compl_agency_costs
  where compl_agency_cost_id = p_rec.compl_agency_cost_id;
Line: 80

End delete_dml;
Line: 114

Procedure pre_delete(p_rec in ghr_cst_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_delete';
Line: 122

End pre_delete;
Line: 156

Procedure post_delete(p_rec in ghr_cst_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 164

    ghr_cst_rkd.after_delete
      (p_compl_agency_cost_id         => p_rec.compl_agency_cost_id
      ,p_complaint_id_o                => ghr_cst_shd.g_old_rec.complaint_id
      ,p_phase_o                       => ghr_cst_shd.g_old_rec.phase
      ,p_stage_o                       => ghr_cst_shd.g_old_rec.stage
      ,p_category_o                    => ghr_cst_shd.g_old_rec.category
      ,p_amount_o                      => ghr_cst_shd.g_old_rec.amount
      ,p_cost_date_o                   => ghr_cst_shd.g_old_rec.cost_date
      ,p_description_o                 => ghr_cst_shd.g_old_rec.description
      ,p_object_version_number_o       => ghr_cst_shd.g_old_rec.object_version_number
      );
Line: 187

End post_delete;
Line: 210

  ghr_cst_bus.delete_validate(p_rec);
Line: 214

  ghr_cst_del.pre_delete(p_rec);
Line: 218

  ghr_cst_del.delete_dml(p_rec);
Line: 222

  ghr_cst_del.post_delete(p_rec);