DBA Data[Home] [Help]

APPS.BEN_DSQ_DEL SQL Statements

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

Line: 51

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

  delete from ben_ded_sched_py_freq
  where ded_sched_py_freq_id = p_rec.ded_sched_py_freq_id;
Line: 78

End delete_dml;
Line: 112

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

    ben_dsq_rkd.after_delete
      (
  p_ded_sched_py_freq_id          =>p_rec.ded_sched_py_freq_id
 ,p_py_freq_cd_o                  =>ben_dsq_shd.g_old_rec.py_freq_cd
 ,p_dflt_flag_o                   =>ben_dsq_shd.g_old_rec.dflt_flag
 ,p_acty_rt_ded_sched_id_o        =>ben_dsq_shd.g_old_rec.acty_rt_ded_sched_id
 ,p_business_group_id_o           =>ben_dsq_shd.g_old_rec.business_group_id
 ,p_dsq_attribute_category_o      =>ben_dsq_shd.g_old_rec.dsq_attribute_category
 ,p_dsq_attribute1_o              =>ben_dsq_shd.g_old_rec.dsq_attribute1
 ,p_dsq_attribute2_o              =>ben_dsq_shd.g_old_rec.dsq_attribute2
 ,p_dsq_attribute3_o              =>ben_dsq_shd.g_old_rec.dsq_attribute3
 ,p_dsq_attribute4_o              =>ben_dsq_shd.g_old_rec.dsq_attribute4
 ,p_dsq_attribute5_o              =>ben_dsq_shd.g_old_rec.dsq_attribute5
 ,p_dsq_attribute6_o              =>ben_dsq_shd.g_old_rec.dsq_attribute6
 ,p_dsq_attribute7_o              =>ben_dsq_shd.g_old_rec.dsq_attribute7
 ,p_dsq_attribute8_o              =>ben_dsq_shd.g_old_rec.dsq_attribute8
 ,p_dsq_attribute9_o              =>ben_dsq_shd.g_old_rec.dsq_attribute9
 ,p_dsq_attribute10_o             =>ben_dsq_shd.g_old_rec.dsq_attribute10
 ,p_dsq_attribute11_o             =>ben_dsq_shd.g_old_rec.dsq_attribute11
 ,p_dsq_attribute12_o             =>ben_dsq_shd.g_old_rec.dsq_attribute12
 ,p_dsq_attribute13_o             =>ben_dsq_shd.g_old_rec.dsq_attribute13
 ,p_dsq_attribute14_o             =>ben_dsq_shd.g_old_rec.dsq_attribute14
 ,p_dsq_attribute15_o             =>ben_dsq_shd.g_old_rec.dsq_attribute15
 ,p_dsq_attribute16_o             =>ben_dsq_shd.g_old_rec.dsq_attribute16
 ,p_dsq_attribute17_o             =>ben_dsq_shd.g_old_rec.dsq_attribute17
 ,p_dsq_attribute18_o             =>ben_dsq_shd.g_old_rec.dsq_attribute18
 ,p_dsq_attribute19_o             =>ben_dsq_shd.g_old_rec.dsq_attribute19
 ,p_dsq_attribute20_o             =>ben_dsq_shd.g_old_rec.dsq_attribute20
 ,p_dsq_attribute21_o             =>ben_dsq_shd.g_old_rec.dsq_attribute21
 ,p_dsq_attribute22_o             =>ben_dsq_shd.g_old_rec.dsq_attribute22
 ,p_dsq_attribute23_o             =>ben_dsq_shd.g_old_rec.dsq_attribute23
 ,p_dsq_attribute24_o             =>ben_dsq_shd.g_old_rec.dsq_attribute24
 ,p_dsq_attribute25_o             =>ben_dsq_shd.g_old_rec.dsq_attribute25
 ,p_dsq_attribute26_o             =>ben_dsq_shd.g_old_rec.dsq_attribute26
 ,p_dsq_attribute27_o             =>ben_dsq_shd.g_old_rec.dsq_attribute27
 ,p_dsq_attribute28_o             =>ben_dsq_shd.g_old_rec.dsq_attribute28
 ,p_dsq_attribute29_o             =>ben_dsq_shd.g_old_rec.dsq_attribute29
 ,p_dsq_attribute30_o             =>ben_dsq_shd.g_old_rec.dsq_attribute30
 ,p_object_version_number_o       =>ben_dsq_shd.g_old_rec.object_version_number
      );
Line: 222

End post_delete;
Line: 248

  ben_dsq_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 253

  pre_delete(p_rec);
Line: 257

  delete_dml(p_rec);
Line: 261

  post_delete(
p_effective_date,p_rec);