DBA Data[Home] [Help]

APPS.BEN_EAT_DEL SQL Statements

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

Line: 51

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

  delete from ben_actn_typ
  where actn_typ_id = p_rec.actn_typ_id;
Line: 67

  delete from ben_actn_typ_tl
  where actn_typ_id = p_rec.actn_typ_id;
Line: 83

End delete_dml;
Line: 117

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

End pre_delete;
Line: 159

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

    ben_eat_rkd.after_delete
      (
  p_actn_typ_id                   =>p_rec.actn_typ_id
 ,p_business_group_id_o           =>ben_eat_shd.g_old_rec.business_group_id
 ,p_type_cd_o                     =>ben_eat_shd.g_old_rec.type_cd
 ,p_name_o                        =>ben_eat_shd.g_old_rec.name
 ,p_description_o                 =>ben_eat_shd.g_old_rec.description
 ,p_eat_attribute_category_o      =>ben_eat_shd.g_old_rec.eat_attribute_category
 ,p_eat_attribute1_o              =>ben_eat_shd.g_old_rec.eat_attribute1
 ,p_eat_attribute2_o              =>ben_eat_shd.g_old_rec.eat_attribute2
 ,p_eat_attribute3_o              =>ben_eat_shd.g_old_rec.eat_attribute3
 ,p_eat_attribute4_o              =>ben_eat_shd.g_old_rec.eat_attribute4
 ,p_eat_attribute5_o              =>ben_eat_shd.g_old_rec.eat_attribute5
 ,p_eat_attribute6_o              =>ben_eat_shd.g_old_rec.eat_attribute6
 ,p_eat_attribute7_o              =>ben_eat_shd.g_old_rec.eat_attribute7
 ,p_eat_attribute8_o              =>ben_eat_shd.g_old_rec.eat_attribute8
 ,p_eat_attribute9_o              =>ben_eat_shd.g_old_rec.eat_attribute9
 ,p_eat_attribute10_o             =>ben_eat_shd.g_old_rec.eat_attribute10
 ,p_eat_attribute11_o             =>ben_eat_shd.g_old_rec.eat_attribute11
 ,p_eat_attribute12_o             =>ben_eat_shd.g_old_rec.eat_attribute12
 ,p_eat_attribute13_o             =>ben_eat_shd.g_old_rec.eat_attribute13
 ,p_eat_attribute14_o             =>ben_eat_shd.g_old_rec.eat_attribute14
 ,p_eat_attribute15_o             =>ben_eat_shd.g_old_rec.eat_attribute15
 ,p_eat_attribute16_o             =>ben_eat_shd.g_old_rec.eat_attribute16
 ,p_eat_attribute17_o             =>ben_eat_shd.g_old_rec.eat_attribute17
 ,p_eat_attribute18_o             =>ben_eat_shd.g_old_rec.eat_attribute18
 ,p_eat_attribute19_o             =>ben_eat_shd.g_old_rec.eat_attribute19
 ,p_eat_attribute20_o             =>ben_eat_shd.g_old_rec.eat_attribute20
 ,p_eat_attribute21_o             =>ben_eat_shd.g_old_rec.eat_attribute21
 ,p_eat_attribute22_o             =>ben_eat_shd.g_old_rec.eat_attribute22
 ,p_eat_attribute23_o             =>ben_eat_shd.g_old_rec.eat_attribute23
 ,p_eat_attribute24_o             =>ben_eat_shd.g_old_rec.eat_attribute24
 ,p_eat_attribute25_o             =>ben_eat_shd.g_old_rec.eat_attribute25
 ,p_eat_attribute26_o             =>ben_eat_shd.g_old_rec.eat_attribute26
 ,p_eat_attribute27_o             =>ben_eat_shd.g_old_rec.eat_attribute27
 ,p_eat_attribute28_o             =>ben_eat_shd.g_old_rec.eat_attribute28
 ,p_eat_attribute29_o             =>ben_eat_shd.g_old_rec.eat_attribute29
 ,p_eat_attribute30_o             =>ben_eat_shd.g_old_rec.eat_attribute30
 ,p_object_version_number_o       =>ben_eat_shd.g_old_rec.object_version_number
      );
Line: 227

End post_delete;
Line: 253

  ben_eat_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);