DBA Data[Home] [Help]

APPS.GHR_CST_INS SQL Statements

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

Line: 75

Procedure insert_dml
  (p_rec in out nocopy ghr_cst_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 89

  insert into ghr_compl_agency_costs
      (compl_agency_cost_id
      ,complaint_id
      ,phase
      ,stage
      ,category
      ,amount
      ,cost_date
      ,description
      ,object_version_number
      )
  Values
    (p_rec.compl_agency_cost_id
    ,p_rec.complaint_id
    ,p_rec.phase
    ,p_rec.stage
    ,p_rec.category
    ,p_rec.amount
    ,p_rec.cost_date
    ,p_rec.description
    ,p_rec.object_version_number
    );
Line: 134

End insert_dml;
Line: 173

Procedure pre_insert
  (p_rec  in out nocopy ghr_cst_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select ghr_compl_agency_costs_s.nextval from sys.dual;
Line: 180

    Select null
    from ghr_compl_agency_costs
    where compl_agency_cost_id =
      ghr_cst_ins.g_compl_agency_cost_id_i;
Line: 185

  l_proc   varchar2(72) := g_package||'pre_insert';
Line: 226

End pre_insert;
Line: 260

Procedure post_insert
  (p_effective_date               in date
  ,p_rec                          in ghr_cst_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 271

    ghr_cst_rki.after_insert
      (p_effective_date                => p_effective_date
      ,p_compl_agency_cost_id         => p_rec.compl_agency_cost_id
      ,p_complaint_id                  => p_rec.complaint_id
      ,p_phase                         => p_rec.phase
      ,p_stage                         => p_rec.stage
      ,p_category                      => p_rec.category
      ,p_amount                        => p_rec.amount
      ,p_cost_date                     => p_rec.cost_date
      ,p_description                   => p_rec.description
      ,p_object_version_number         => p_rec.object_version_number
      );
Line: 295

End post_insert;
Line: 312

  ghr_cst_bus.insert_validate
     (p_effective_date
     ,p_rec
     );
Line: 319

  ghr_cst_ins.pre_insert(p_rec);
Line: 323

  ghr_cst_ins.insert_dml(p_rec);
Line: 327

  ghr_cst_ins.post_insert
     (p_effective_date
     ,p_rec
     );