DBA Data[Home] [Help]

APPS.BEN_CRP_DEL SQL Statements

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

Line: 51

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

  delete from ben_cbr_per_in_ler
  where cbr_per_in_ler_id = p_rec.cbr_per_in_ler_id;
Line: 78

End delete_dml;
Line: 112

Procedure pre_delete(p_rec in ben_crp_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_crp_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 167

    ben_crp_rkd.after_delete
      (
  p_cbr_per_in_ler_id             =>p_rec.cbr_per_in_ler_id
 ,p_init_evt_flag_o               =>ben_crp_shd.g_old_rec.init_evt_flag
 ,p_cnt_num_o                     =>ben_crp_shd.g_old_rec.cnt_num
 ,p_per_in_ler_id_o               =>ben_crp_shd.g_old_rec.per_in_ler_id
 ,p_cbr_quald_bnf_id_o            =>ben_crp_shd.g_old_rec.cbr_quald_bnf_id
 ,p_prvs_elig_perd_end_dt_o       =>ben_crp_shd.g_old_rec.prvs_elig_perd_end_dt
 ,p_business_group_id_o           =>ben_crp_shd.g_old_rec.business_group_id
 ,p_crp_attribute_category_o      =>ben_crp_shd.g_old_rec.crp_attribute_category
 ,p_crp_attribute1_o              =>ben_crp_shd.g_old_rec.crp_attribute1
 ,p_crp_attribute2_o              =>ben_crp_shd.g_old_rec.crp_attribute2
 ,p_crp_attribute3_o              =>ben_crp_shd.g_old_rec.crp_attribute3
 ,p_crp_attribute4_o              =>ben_crp_shd.g_old_rec.crp_attribute4
 ,p_crp_attribute5_o              =>ben_crp_shd.g_old_rec.crp_attribute5
 ,p_crp_attribute6_o              =>ben_crp_shd.g_old_rec.crp_attribute6
 ,p_crp_attribute7_o              =>ben_crp_shd.g_old_rec.crp_attribute7
 ,p_crp_attribute8_o              =>ben_crp_shd.g_old_rec.crp_attribute8
 ,p_crp_attribute9_o              =>ben_crp_shd.g_old_rec.crp_attribute9
 ,p_crp_attribute10_o             =>ben_crp_shd.g_old_rec.crp_attribute10
 ,p_crp_attribute11_o             =>ben_crp_shd.g_old_rec.crp_attribute11
 ,p_crp_attribute12_o             =>ben_crp_shd.g_old_rec.crp_attribute12
 ,p_crp_attribute13_o             =>ben_crp_shd.g_old_rec.crp_attribute13
 ,p_crp_attribute14_o             =>ben_crp_shd.g_old_rec.crp_attribute14
 ,p_crp_attribute15_o             =>ben_crp_shd.g_old_rec.crp_attribute15
 ,p_crp_attribute16_o             =>ben_crp_shd.g_old_rec.crp_attribute16
 ,p_crp_attribute17_o             =>ben_crp_shd.g_old_rec.crp_attribute17
 ,p_crp_attribute18_o             =>ben_crp_shd.g_old_rec.crp_attribute18
 ,p_crp_attribute19_o             =>ben_crp_shd.g_old_rec.crp_attribute19
 ,p_crp_attribute20_o             =>ben_crp_shd.g_old_rec.crp_attribute20
 ,p_crp_attribute21_o             =>ben_crp_shd.g_old_rec.crp_attribute21
 ,p_crp_attribute22_o             =>ben_crp_shd.g_old_rec.crp_attribute22
 ,p_crp_attribute23_o             =>ben_crp_shd.g_old_rec.crp_attribute23
 ,p_crp_attribute24_o             =>ben_crp_shd.g_old_rec.crp_attribute24
 ,p_crp_attribute25_o             =>ben_crp_shd.g_old_rec.crp_attribute25
 ,p_crp_attribute26_o             =>ben_crp_shd.g_old_rec.crp_attribute26
 ,p_crp_attribute27_o             =>ben_crp_shd.g_old_rec.crp_attribute27
 ,p_crp_attribute28_o             =>ben_crp_shd.g_old_rec.crp_attribute28
 ,p_crp_attribute29_o             =>ben_crp_shd.g_old_rec.crp_attribute29
 ,p_crp_attribute30_o             =>ben_crp_shd.g_old_rec.crp_attribute30
 ,p_object_version_number_o       =>ben_crp_shd.g_old_rec.object_version_number
      );
Line: 224

End post_delete;
Line: 250

  ben_crp_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 255

  pre_delete(p_rec);
Line: 259

  delete_dml(p_rec);
Line: 263

  post_delete(
p_effective_date,p_rec);