DBA Data[Home] [Help]

APPS.BEN_DRR_DEL SQL Statements

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

Line: 51

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

  delete from ben_dsgn_rqmt_rlshp_typ
  where dsgn_rqmt_rlshp_typ_id = p_rec.dsgn_rqmt_rlshp_typ_id;
Line: 78

End delete_dml;
Line: 112

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

    ben_drr_rkd.after_delete
      (
  p_dsgn_rqmt_rlshp_typ_id        =>p_rec.dsgn_rqmt_rlshp_typ_id
 ,p_rlshp_typ_cd_o                =>ben_drr_shd.g_old_rec.rlshp_typ_cd
 ,p_dsgn_rqmt_id_o                =>ben_drr_shd.g_old_rec.dsgn_rqmt_id
 ,p_business_group_id_o           =>ben_drr_shd.g_old_rec.business_group_id
 ,p_drr_attribute_category_o      =>ben_drr_shd.g_old_rec.drr_attribute_category
 ,p_drr_attribute1_o              =>ben_drr_shd.g_old_rec.drr_attribute1
 ,p_drr_attribute2_o              =>ben_drr_shd.g_old_rec.drr_attribute2
 ,p_drr_attribute3_o              =>ben_drr_shd.g_old_rec.drr_attribute3
 ,p_drr_attribute4_o              =>ben_drr_shd.g_old_rec.drr_attribute4
 ,p_drr_attribute5_o              =>ben_drr_shd.g_old_rec.drr_attribute5
 ,p_drr_attribute6_o              =>ben_drr_shd.g_old_rec.drr_attribute6
 ,p_drr_attribute7_o              =>ben_drr_shd.g_old_rec.drr_attribute7
 ,p_drr_attribute8_o              =>ben_drr_shd.g_old_rec.drr_attribute8
 ,p_drr_attribute9_o              =>ben_drr_shd.g_old_rec.drr_attribute9
 ,p_drr_attribute10_o             =>ben_drr_shd.g_old_rec.drr_attribute10
 ,p_drr_attribute11_o             =>ben_drr_shd.g_old_rec.drr_attribute11
 ,p_drr_attribute12_o             =>ben_drr_shd.g_old_rec.drr_attribute12
 ,p_drr_attribute13_o             =>ben_drr_shd.g_old_rec.drr_attribute13
 ,p_drr_attribute14_o             =>ben_drr_shd.g_old_rec.drr_attribute14
 ,p_drr_attribute15_o             =>ben_drr_shd.g_old_rec.drr_attribute15
 ,p_drr_attribute16_o             =>ben_drr_shd.g_old_rec.drr_attribute16
 ,p_drr_attribute17_o             =>ben_drr_shd.g_old_rec.drr_attribute17
 ,p_drr_attribute18_o             =>ben_drr_shd.g_old_rec.drr_attribute18
 ,p_drr_attribute19_o             =>ben_drr_shd.g_old_rec.drr_attribute19
 ,p_drr_attribute20_o             =>ben_drr_shd.g_old_rec.drr_attribute20
 ,p_drr_attribute21_o             =>ben_drr_shd.g_old_rec.drr_attribute21
 ,p_drr_attribute22_o             =>ben_drr_shd.g_old_rec.drr_attribute22
 ,p_drr_attribute23_o             =>ben_drr_shd.g_old_rec.drr_attribute23
 ,p_drr_attribute24_o             =>ben_drr_shd.g_old_rec.drr_attribute24
 ,p_drr_attribute25_o             =>ben_drr_shd.g_old_rec.drr_attribute25
 ,p_drr_attribute26_o             =>ben_drr_shd.g_old_rec.drr_attribute26
 ,p_drr_attribute27_o             =>ben_drr_shd.g_old_rec.drr_attribute27
 ,p_drr_attribute28_o             =>ben_drr_shd.g_old_rec.drr_attribute28
 ,p_drr_attribute29_o             =>ben_drr_shd.g_old_rec.drr_attribute29
 ,p_drr_attribute30_o             =>ben_drr_shd.g_old_rec.drr_attribute30
 ,p_object_version_number_o       =>ben_drr_shd.g_old_rec.object_version_number
      );
Line: 221

End post_delete;
Line: 247

  ben_drr_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 252

  pre_delete(p_rec);
Line: 256

  delete_dml(p_rec);
Line: 260

  post_delete(
p_effective_date,p_rec);