DBA Data[Home] [Help]

APPS.BEN_YRP_DEL SQL Statements

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

Line: 51

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

  delete from ben_yr_perd
  where yr_perd_id = p_rec.yr_perd_id;
Line: 78

End delete_dml;
Line: 112

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

    ben_yrp_rkd.after_delete
      (
  p_yr_perd_id                    =>p_rec.yr_perd_id
 ,p_perds_in_yr_num_o             =>ben_yrp_shd.g_old_rec.perds_in_yr_num
 ,p_perd_tm_uom_cd_o              =>ben_yrp_shd.g_old_rec.perd_tm_uom_cd
 ,p_perd_typ_cd_o                 =>ben_yrp_shd.g_old_rec.perd_typ_cd
 ,p_end_date_o                    =>ben_yrp_shd.g_old_rec.end_date
 ,p_start_date_o                  =>ben_yrp_shd.g_old_rec.start_date
 ,p_lmtn_yr_strt_dt_o             =>ben_yrp_shd.g_old_rec.lmtn_yr_strt_dt
 ,p_lmtn_yr_end_dt_o              =>ben_yrp_shd.g_old_rec.lmtn_yr_end_dt
 ,p_business_group_id_o           =>ben_yrp_shd.g_old_rec.business_group_id
 ,p_yrp_attribute_category_o      =>ben_yrp_shd.g_old_rec.yrp_attribute_category
 ,p_yrp_attribute1_o              =>ben_yrp_shd.g_old_rec.yrp_attribute1
 ,p_yrp_attribute2_o              =>ben_yrp_shd.g_old_rec.yrp_attribute2
 ,p_yrp_attribute3_o              =>ben_yrp_shd.g_old_rec.yrp_attribute3
 ,p_yrp_attribute4_o              =>ben_yrp_shd.g_old_rec.yrp_attribute4
 ,p_yrp_attribute5_o              =>ben_yrp_shd.g_old_rec.yrp_attribute5
 ,p_yrp_attribute6_o              =>ben_yrp_shd.g_old_rec.yrp_attribute6
 ,p_yrp_attribute7_o              =>ben_yrp_shd.g_old_rec.yrp_attribute7
 ,p_yrp_attribute8_o              =>ben_yrp_shd.g_old_rec.yrp_attribute8
 ,p_yrp_attribute9_o              =>ben_yrp_shd.g_old_rec.yrp_attribute9
 ,p_yrp_attribute10_o             =>ben_yrp_shd.g_old_rec.yrp_attribute10
 ,p_yrp_attribute11_o             =>ben_yrp_shd.g_old_rec.yrp_attribute11
 ,p_yrp_attribute12_o             =>ben_yrp_shd.g_old_rec.yrp_attribute12
 ,p_yrp_attribute13_o             =>ben_yrp_shd.g_old_rec.yrp_attribute13
 ,p_yrp_attribute14_o             =>ben_yrp_shd.g_old_rec.yrp_attribute14
 ,p_yrp_attribute15_o             =>ben_yrp_shd.g_old_rec.yrp_attribute15
 ,p_yrp_attribute16_o             =>ben_yrp_shd.g_old_rec.yrp_attribute16
 ,p_yrp_attribute17_o             =>ben_yrp_shd.g_old_rec.yrp_attribute17
 ,p_yrp_attribute18_o             =>ben_yrp_shd.g_old_rec.yrp_attribute18
 ,p_yrp_attribute19_o             =>ben_yrp_shd.g_old_rec.yrp_attribute19
 ,p_yrp_attribute20_o             =>ben_yrp_shd.g_old_rec.yrp_attribute20
 ,p_yrp_attribute21_o             =>ben_yrp_shd.g_old_rec.yrp_attribute21
 ,p_yrp_attribute22_o             =>ben_yrp_shd.g_old_rec.yrp_attribute22
 ,p_yrp_attribute23_o             =>ben_yrp_shd.g_old_rec.yrp_attribute23
 ,p_yrp_attribute24_o             =>ben_yrp_shd.g_old_rec.yrp_attribute24
 ,p_yrp_attribute25_o             =>ben_yrp_shd.g_old_rec.yrp_attribute25
 ,p_yrp_attribute26_o             =>ben_yrp_shd.g_old_rec.yrp_attribute26
 ,p_yrp_attribute27_o             =>ben_yrp_shd.g_old_rec.yrp_attribute27
 ,p_yrp_attribute28_o             =>ben_yrp_shd.g_old_rec.yrp_attribute28
 ,p_yrp_attribute29_o             =>ben_yrp_shd.g_old_rec.yrp_attribute29
 ,p_yrp_attribute30_o             =>ben_yrp_shd.g_old_rec.yrp_attribute30
 ,p_object_version_number_o       =>ben_yrp_shd.g_old_rec.object_version_number
      );
Line: 226

End post_delete;
Line: 252

  ben_yrp_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 257

  pre_delete(p_rec);
Line: 261

  delete_dml(p_rec);
Line: 265

  post_delete(
p_effective_date,p_rec);