DBA Data[Home] [Help]

APPS.BEN_ECC_DEL SQL Statements

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

Line: 51

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

  delete from ben_elctbl_chc_ctfn
  where elctbl_chc_ctfn_id = p_rec.elctbl_chc_ctfn_id;
Line: 78

End delete_dml;
Line: 112

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

End pre_delete;
Line: 154

Procedure post_delete(
p_effective_date in date,p_rec in ben_ecc_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 167

    ben_ecc_rkd.after_delete
      (
  p_elctbl_chc_ctfn_id            =>p_rec.elctbl_chc_ctfn_id
 ,p_enrt_ctfn_typ_cd_o            =>ben_ecc_shd.g_old_rec.enrt_ctfn_typ_cd
 ,p_rqd_flag_o                    =>ben_ecc_shd.g_old_rec.rqd_flag
 ,p_elig_per_elctbl_chc_id_o      =>ben_ecc_shd.g_old_rec.elig_per_elctbl_chc_id
 ,p_enrt_bnft_id_o                =>ben_ecc_shd.g_old_rec.enrt_bnft_id
 ,p_business_group_id_o           =>ben_ecc_shd.g_old_rec.business_group_id
 ,p_ecc_attribute_category_o      =>ben_ecc_shd.g_old_rec.ecc_attribute_category
 ,p_ecc_attribute1_o              =>ben_ecc_shd.g_old_rec.ecc_attribute1
 ,p_ecc_attribute2_o              =>ben_ecc_shd.g_old_rec.ecc_attribute2
 ,p_ecc_attribute3_o              =>ben_ecc_shd.g_old_rec.ecc_attribute3
 ,p_ecc_attribute4_o              =>ben_ecc_shd.g_old_rec.ecc_attribute4
 ,p_ecc_attribute5_o              =>ben_ecc_shd.g_old_rec.ecc_attribute5
 ,p_ecc_attribute6_o              =>ben_ecc_shd.g_old_rec.ecc_attribute6
 ,p_ecc_attribute7_o              =>ben_ecc_shd.g_old_rec.ecc_attribute7
 ,p_ecc_attribute8_o              =>ben_ecc_shd.g_old_rec.ecc_attribute8
 ,p_ecc_attribute9_o              =>ben_ecc_shd.g_old_rec.ecc_attribute9
 ,p_ecc_attribute10_o             =>ben_ecc_shd.g_old_rec.ecc_attribute10
 ,p_ecc_attribute11_o             =>ben_ecc_shd.g_old_rec.ecc_attribute11
 ,p_ecc_attribute12_o             =>ben_ecc_shd.g_old_rec.ecc_attribute12
 ,p_ecc_attribute13_o             =>ben_ecc_shd.g_old_rec.ecc_attribute13
 ,p_ecc_attribute14_o             =>ben_ecc_shd.g_old_rec.ecc_attribute14
 ,p_ecc_attribute15_o             =>ben_ecc_shd.g_old_rec.ecc_attribute15
 ,p_ecc_attribute16_o             =>ben_ecc_shd.g_old_rec.ecc_attribute16
 ,p_ecc_attribute17_o             =>ben_ecc_shd.g_old_rec.ecc_attribute17
 ,p_ecc_attribute18_o             =>ben_ecc_shd.g_old_rec.ecc_attribute18
 ,p_ecc_attribute19_o             =>ben_ecc_shd.g_old_rec.ecc_attribute19
 ,p_ecc_attribute20_o             =>ben_ecc_shd.g_old_rec.ecc_attribute20
 ,p_ecc_attribute21_o             =>ben_ecc_shd.g_old_rec.ecc_attribute21
 ,p_ecc_attribute22_o             =>ben_ecc_shd.g_old_rec.ecc_attribute22
 ,p_ecc_attribute23_o             =>ben_ecc_shd.g_old_rec.ecc_attribute23
 ,p_ecc_attribute24_o             =>ben_ecc_shd.g_old_rec.ecc_attribute24
 ,p_ecc_attribute25_o             =>ben_ecc_shd.g_old_rec.ecc_attribute25
 ,p_ecc_attribute26_o             =>ben_ecc_shd.g_old_rec.ecc_attribute26
 ,p_ecc_attribute27_o             =>ben_ecc_shd.g_old_rec.ecc_attribute27
 ,p_ecc_attribute28_o             =>ben_ecc_shd.g_old_rec.ecc_attribute28
 ,p_ecc_attribute29_o             =>ben_ecc_shd.g_old_rec.ecc_attribute29
 ,p_ecc_attribute30_o             =>ben_ecc_shd.g_old_rec.ecc_attribute30
 ,p_susp_if_ctfn_not_prvd_flag_o  =>ben_ecc_shd.g_old_rec.susp_if_ctfn_not_prvd_flag
 ,p_ctfn_determine_cd_o           =>ben_ecc_shd.g_old_rec.ctfn_determine_cd
 ,p_request_id_o                  =>ben_ecc_shd.g_old_rec.request_id
 ,p_program_application_id_o      =>ben_ecc_shd.g_old_rec.program_application_id
 ,p_program_id_o                  =>ben_ecc_shd.g_old_rec.program_id
 ,p_program_update_date_o         =>ben_ecc_shd.g_old_rec.program_update_date
 ,p_object_version_number_o       =>ben_ecc_shd.g_old_rec.object_version_number
      );
Line: 229

End post_delete;
Line: 255

  ben_ecc_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 260

  pre_delete(p_rec);
Line: 264

  delete_dml(p_rec);
Line: 268

  post_delete(
p_effective_date,p_rec);