DBA Data[Home] [Help]

APPS.BEN_BNR_DEL SQL Statements

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

Line: 51

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

  delete from ben_rptg_grp
  where rptg_grp_id = p_rec.rptg_grp_id;
Line: 65

  delete from ben_rptg_grp_tl
  where rptg_grp_id = p_rec.rptg_grp_id;
Line: 80

End delete_dml;
Line: 114

Procedure pre_delete(p_rec in ben_bnr_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_delete';
Line: 122

End pre_delete;
Line: 156

Procedure post_delete(
p_effective_date in date,p_rec in ben_bnr_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 169

    ben_bnr_rkd.after_delete
      (
  p_rptg_grp_id                   =>p_rec.rptg_grp_id
 ,p_name_o                        =>ben_bnr_shd.g_old_rec.name
 ,p_business_group_id_o           =>ben_bnr_shd.g_old_rec.business_group_id
 ,p_rptg_prps_cd_o                =>ben_bnr_shd.g_old_rec.rptg_prps_cd
 ,p_rpg_desc_o                    =>ben_bnr_shd.g_old_rec.rpg_desc
 ,p_bnr_attribute_category_o      =>ben_bnr_shd.g_old_rec.bnr_attribute_category
 ,p_bnr_attribute1_o              =>ben_bnr_shd.g_old_rec.bnr_attribute1
 ,p_bnr_attribute2_o              =>ben_bnr_shd.g_old_rec.bnr_attribute2
 ,p_bnr_attribute3_o              =>ben_bnr_shd.g_old_rec.bnr_attribute3
 ,p_bnr_attribute4_o              =>ben_bnr_shd.g_old_rec.bnr_attribute4
 ,p_bnr_attribute5_o              =>ben_bnr_shd.g_old_rec.bnr_attribute5
 ,p_bnr_attribute6_o              =>ben_bnr_shd.g_old_rec.bnr_attribute6
 ,p_bnr_attribute7_o              =>ben_bnr_shd.g_old_rec.bnr_attribute7
 ,p_bnr_attribute8_o              =>ben_bnr_shd.g_old_rec.bnr_attribute8
 ,p_bnr_attribute9_o              =>ben_bnr_shd.g_old_rec.bnr_attribute9
 ,p_bnr_attribute10_o             =>ben_bnr_shd.g_old_rec.bnr_attribute10
 ,p_bnr_attribute11_o             =>ben_bnr_shd.g_old_rec.bnr_attribute11
 ,p_bnr_attribute12_o             =>ben_bnr_shd.g_old_rec.bnr_attribute12
 ,p_bnr_attribute13_o             =>ben_bnr_shd.g_old_rec.bnr_attribute13
 ,p_bnr_attribute14_o             =>ben_bnr_shd.g_old_rec.bnr_attribute14
 ,p_bnr_attribute15_o             =>ben_bnr_shd.g_old_rec.bnr_attribute15
 ,p_bnr_attribute16_o             =>ben_bnr_shd.g_old_rec.bnr_attribute16
 ,p_bnr_attribute17_o             =>ben_bnr_shd.g_old_rec.bnr_attribute17
 ,p_bnr_attribute18_o             =>ben_bnr_shd.g_old_rec.bnr_attribute18
 ,p_bnr_attribute19_o             =>ben_bnr_shd.g_old_rec.bnr_attribute19
 ,p_bnr_attribute20_o             =>ben_bnr_shd.g_old_rec.bnr_attribute20
 ,p_bnr_attribute21_o             =>ben_bnr_shd.g_old_rec.bnr_attribute21
 ,p_bnr_attribute22_o             =>ben_bnr_shd.g_old_rec.bnr_attribute22
 ,p_bnr_attribute23_o             =>ben_bnr_shd.g_old_rec.bnr_attribute23
 ,p_bnr_attribute24_o             =>ben_bnr_shd.g_old_rec.bnr_attribute24
 ,p_bnr_attribute25_o             =>ben_bnr_shd.g_old_rec.bnr_attribute25
 ,p_bnr_attribute26_o             =>ben_bnr_shd.g_old_rec.bnr_attribute26
 ,p_bnr_attribute27_o             =>ben_bnr_shd.g_old_rec.bnr_attribute27
 ,p_bnr_attribute28_o             =>ben_bnr_shd.g_old_rec.bnr_attribute28
 ,p_bnr_attribute29_o             =>ben_bnr_shd.g_old_rec.bnr_attribute29
 ,p_bnr_attribute30_o             =>ben_bnr_shd.g_old_rec.bnr_attribute30
 ,p_function_code_o               =>ben_bnr_shd.g_old_rec.function_code
 ,p_legislation_code_o            =>ben_bnr_shd.g_old_rec.legislation_code
 ,p_object_version_number_o       =>ben_bnr_shd.g_old_rec.object_version_number
 ,p_ordr_num_o                    =>ben_bnr_shd.g_old_rec.ordr_num                      --iRec
      );
Line: 227

End post_delete;
Line: 253

  ben_bnr_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 258

  pre_delete(p_rec);
Line: 262

  delete_dml(p_rec);
Line: 266

  post_delete(
p_effective_date,p_rec);