DBA Data[Home] [Help]

APPS.BEN_PFF_DEL SQL Statements

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

Line: 51

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

  delete from ben_pct_fl_tm_fctr
  where pct_fl_tm_fctr_id = p_rec.pct_fl_tm_fctr_id;
Line: 78

End delete_dml;
Line: 112

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

    ben_pff_rkd.after_delete
      (
  p_pct_fl_tm_fctr_id             =>p_rec.pct_fl_tm_fctr_id
 ,p_name_o                        =>ben_pff_shd.g_old_rec.name
 ,p_business_group_id_o           =>ben_pff_shd.g_old_rec.business_group_id
 ,p_mx_pct_val_o                  =>ben_pff_shd.g_old_rec.mx_pct_val
 ,p_mn_pct_val_o                  =>ben_pff_shd.g_old_rec.mn_pct_val
 ,p_no_mn_pct_val_flag_o          =>ben_pff_shd.g_old_rec.no_mn_pct_val_flag
 ,p_no_mx_pct_val_flag_o          =>ben_pff_shd.g_old_rec.no_mx_pct_val_flag
 ,p_use_prmry_asnt_only_flag_o    =>ben_pff_shd.g_old_rec.use_prmry_asnt_only_flag
 ,p_use_sum_of_all_asnts_flag_o   =>ben_pff_shd.g_old_rec.use_sum_of_all_asnts_flag
 ,p_rndg_cd_o                     =>ben_pff_shd.g_old_rec.rndg_cd
 ,p_rndg_rl_o                     =>ben_pff_shd.g_old_rec.rndg_rl
 ,p_pff_attribute_category_o      =>ben_pff_shd.g_old_rec.pff_attribute_category
 ,p_pff_attribute1_o              =>ben_pff_shd.g_old_rec.pff_attribute1
 ,p_pff_attribute2_o              =>ben_pff_shd.g_old_rec.pff_attribute2
 ,p_pff_attribute3_o              =>ben_pff_shd.g_old_rec.pff_attribute3
 ,p_pff_attribute4_o              =>ben_pff_shd.g_old_rec.pff_attribute4
 ,p_pff_attribute5_o              =>ben_pff_shd.g_old_rec.pff_attribute5
 ,p_pff_attribute6_o              =>ben_pff_shd.g_old_rec.pff_attribute6
 ,p_pff_attribute7_o              =>ben_pff_shd.g_old_rec.pff_attribute7
 ,p_pff_attribute8_o              =>ben_pff_shd.g_old_rec.pff_attribute8
 ,p_pff_attribute9_o              =>ben_pff_shd.g_old_rec.pff_attribute9
 ,p_pff_attribute10_o             =>ben_pff_shd.g_old_rec.pff_attribute10
 ,p_pff_attribute11_o             =>ben_pff_shd.g_old_rec.pff_attribute11
 ,p_pff_attribute12_o             =>ben_pff_shd.g_old_rec.pff_attribute12
 ,p_pff_attribute13_o             =>ben_pff_shd.g_old_rec.pff_attribute13
 ,p_pff_attribute14_o             =>ben_pff_shd.g_old_rec.pff_attribute14
 ,p_pff_attribute15_o             =>ben_pff_shd.g_old_rec.pff_attribute15
 ,p_pff_attribute16_o             =>ben_pff_shd.g_old_rec.pff_attribute16
 ,p_pff_attribute17_o             =>ben_pff_shd.g_old_rec.pff_attribute17
 ,p_pff_attribute18_o             =>ben_pff_shd.g_old_rec.pff_attribute18
 ,p_pff_attribute19_o             =>ben_pff_shd.g_old_rec.pff_attribute19
 ,p_pff_attribute20_o             =>ben_pff_shd.g_old_rec.pff_attribute20
 ,p_pff_attribute21_o             =>ben_pff_shd.g_old_rec.pff_attribute21
 ,p_pff_attribute22_o             =>ben_pff_shd.g_old_rec.pff_attribute22
 ,p_pff_attribute23_o             =>ben_pff_shd.g_old_rec.pff_attribute23
 ,p_pff_attribute24_o             =>ben_pff_shd.g_old_rec.pff_attribute24
 ,p_pff_attribute25_o             =>ben_pff_shd.g_old_rec.pff_attribute25
 ,p_pff_attribute26_o             =>ben_pff_shd.g_old_rec.pff_attribute26
 ,p_pff_attribute27_o             =>ben_pff_shd.g_old_rec.pff_attribute27
 ,p_pff_attribute28_o             =>ben_pff_shd.g_old_rec.pff_attribute28
 ,p_pff_attribute29_o             =>ben_pff_shd.g_old_rec.pff_attribute29
 ,p_pff_attribute30_o             =>ben_pff_shd.g_old_rec.pff_attribute30
 ,p_object_version_number_o       =>ben_pff_shd.g_old_rec.object_version_number
      );
Line: 228

End post_delete;
Line: 254

  ben_pff_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 259

  pre_delete(p_rec);
Line: 263

  delete_dml(p_rec);
Line: 267

  post_delete(
p_effective_date,p_rec);