DBA Data[Home] [Help]

APPS.BEN_AGF_DEL SQL Statements

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

Line: 51

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

  delete from ben_age_fctr
  where age_fctr_id = p_rec.age_fctr_id;
Line: 78

End delete_dml;
Line: 112

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

    ben_agf_rkd.after_delete
      (
  p_age_fctr_id                   =>p_rec.age_fctr_id
 ,p_name_o                        =>ben_agf_shd.g_old_rec.name
 ,p_mx_age_num_o                  =>ben_agf_shd.g_old_rec.mx_age_num
 ,p_mn_age_num_o                  =>ben_agf_shd.g_old_rec.mn_age_num
 ,p_age_uom_o                     =>ben_agf_shd.g_old_rec.age_uom
 ,p_no_mn_age_flag_o              =>ben_agf_shd.g_old_rec.no_mn_age_flag
 ,p_no_mx_age_flag_o              =>ben_agf_shd.g_old_rec.no_mx_age_flag
 ,p_age_to_use_cd_o               =>ben_agf_shd.g_old_rec.age_to_use_cd
 ,p_age_det_cd_o                  =>ben_agf_shd.g_old_rec.age_det_cd
 ,p_age_det_rl_o                  =>ben_agf_shd.g_old_rec.age_det_rl
 ,p_rndg_cd_o                     =>ben_agf_shd.g_old_rec.rndg_cd
 ,p_rndg_rl_o                     =>ben_agf_shd.g_old_rec.rndg_rl
 ,p_age_calc_rl_o                 =>ben_agf_shd.g_old_rec.age_calc_rl
 ,p_business_group_id_o           =>ben_agf_shd.g_old_rec.business_group_id
 ,p_agf_attribute_category_o      =>ben_agf_shd.g_old_rec.agf_attribute_category
 ,p_agf_attribute1_o              =>ben_agf_shd.g_old_rec.agf_attribute1
 ,p_agf_attribute2_o              =>ben_agf_shd.g_old_rec.agf_attribute2
 ,p_agf_attribute3_o              =>ben_agf_shd.g_old_rec.agf_attribute3
 ,p_agf_attribute4_o              =>ben_agf_shd.g_old_rec.agf_attribute4
 ,p_agf_attribute5_o              =>ben_agf_shd.g_old_rec.agf_attribute5
 ,p_agf_attribute6_o              =>ben_agf_shd.g_old_rec.agf_attribute6
 ,p_agf_attribute7_o              =>ben_agf_shd.g_old_rec.agf_attribute7
 ,p_agf_attribute8_o              =>ben_agf_shd.g_old_rec.agf_attribute8
 ,p_agf_attribute9_o              =>ben_agf_shd.g_old_rec.agf_attribute9
 ,p_agf_attribute10_o             =>ben_agf_shd.g_old_rec.agf_attribute10
 ,p_agf_attribute11_o             =>ben_agf_shd.g_old_rec.agf_attribute11
 ,p_agf_attribute12_o             =>ben_agf_shd.g_old_rec.agf_attribute12
 ,p_agf_attribute13_o             =>ben_agf_shd.g_old_rec.agf_attribute13
 ,p_agf_attribute14_o             =>ben_agf_shd.g_old_rec.agf_attribute14
 ,p_agf_attribute15_o             =>ben_agf_shd.g_old_rec.agf_attribute15
 ,p_agf_attribute16_o             =>ben_agf_shd.g_old_rec.agf_attribute16
 ,p_agf_attribute17_o             =>ben_agf_shd.g_old_rec.agf_attribute17
 ,p_agf_attribute18_o             =>ben_agf_shd.g_old_rec.agf_attribute18
 ,p_agf_attribute19_o             =>ben_agf_shd.g_old_rec.agf_attribute19
 ,p_agf_attribute20_o             =>ben_agf_shd.g_old_rec.agf_attribute20
 ,p_agf_attribute21_o             =>ben_agf_shd.g_old_rec.agf_attribute21
 ,p_agf_attribute22_o             =>ben_agf_shd.g_old_rec.agf_attribute22
 ,p_agf_attribute23_o             =>ben_agf_shd.g_old_rec.agf_attribute23
 ,p_agf_attribute24_o             =>ben_agf_shd.g_old_rec.agf_attribute24
 ,p_agf_attribute25_o             =>ben_agf_shd.g_old_rec.agf_attribute25
 ,p_agf_attribute26_o             =>ben_agf_shd.g_old_rec.agf_attribute26
 ,p_agf_attribute27_o             =>ben_agf_shd.g_old_rec.agf_attribute27
 ,p_agf_attribute28_o             =>ben_agf_shd.g_old_rec.agf_attribute28
 ,p_agf_attribute29_o             =>ben_agf_shd.g_old_rec.agf_attribute29
 ,p_agf_attribute30_o             =>ben_agf_shd.g_old_rec.agf_attribute30
 ,p_object_version_number_o       =>ben_agf_shd.g_old_rec.object_version_number
      );
Line: 231

End post_delete;
Line: 257

  ben_agf_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 262

  pre_delete(p_rec);
Line: 266

  delete_dml(p_rec);
Line: 270

  post_delete(
p_effective_date,p_rec);