DBA Data[Home] [Help]

APPS.BEN_CMD_DEL SQL Statements

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

Line: 51

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

  delete from ben_cm_dlvry_med_typ
  where cm_dlvry_med_typ_id = p_rec.cm_dlvry_med_typ_id;
Line: 78

End delete_dml;
Line: 112

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

    ben_cmd_rkd.after_delete
      (
  p_cm_dlvry_med_typ_id           =>p_rec.cm_dlvry_med_typ_id
 ,p_cm_dlvry_med_typ_cd_o         =>ben_cmd_shd.g_old_rec.cm_dlvry_med_typ_cd
 ,p_cm_dlvry_mthd_typ_id_o        =>ben_cmd_shd.g_old_rec.cm_dlvry_mthd_typ_id
 ,p_rqd_flag_o                    =>ben_cmd_shd.g_old_rec.rqd_flag
 ,p_dflt_flag_o                   =>ben_cmd_shd.g_old_rec.dflt_flag
 ,p_business_group_id_o           =>ben_cmd_shd.g_old_rec.business_group_id
 ,p_cmd_attribute_category_o      =>ben_cmd_shd.g_old_rec.cmd_attribute_category
 ,p_cmd_attribute1_o              =>ben_cmd_shd.g_old_rec.cmd_attribute1
 ,p_cmd_attribute2_o              =>ben_cmd_shd.g_old_rec.cmd_attribute2
 ,p_cmd_attribute3_o              =>ben_cmd_shd.g_old_rec.cmd_attribute3
 ,p_cmd_attribute4_o              =>ben_cmd_shd.g_old_rec.cmd_attribute4
 ,p_cmd_attribute5_o              =>ben_cmd_shd.g_old_rec.cmd_attribute5
 ,p_cmd_attribute6_o              =>ben_cmd_shd.g_old_rec.cmd_attribute6
 ,p_cmd_attribute7_o              =>ben_cmd_shd.g_old_rec.cmd_attribute7
 ,p_cmd_attribute8_o              =>ben_cmd_shd.g_old_rec.cmd_attribute8
 ,p_cmd_attribute9_o              =>ben_cmd_shd.g_old_rec.cmd_attribute9
 ,p_cmd_attribute10_o             =>ben_cmd_shd.g_old_rec.cmd_attribute10
 ,p_cmd_attribute11_o             =>ben_cmd_shd.g_old_rec.cmd_attribute11
 ,p_cmd_attribute12_o             =>ben_cmd_shd.g_old_rec.cmd_attribute12
 ,p_cmd_attribute13_o             =>ben_cmd_shd.g_old_rec.cmd_attribute13
 ,p_cmd_attribute14_o             =>ben_cmd_shd.g_old_rec.cmd_attribute14
 ,p_cmd_attribute15_o             =>ben_cmd_shd.g_old_rec.cmd_attribute15
 ,p_cmd_attribute16_o             =>ben_cmd_shd.g_old_rec.cmd_attribute16
 ,p_cmd_attribute17_o             =>ben_cmd_shd.g_old_rec.cmd_attribute17
 ,p_cmd_attribute18_o             =>ben_cmd_shd.g_old_rec.cmd_attribute18
 ,p_cmd_attribute19_o             =>ben_cmd_shd.g_old_rec.cmd_attribute19
 ,p_cmd_attribute20_o             =>ben_cmd_shd.g_old_rec.cmd_attribute20
 ,p_cmd_attribute21_o             =>ben_cmd_shd.g_old_rec.cmd_attribute21
 ,p_cmd_attribute22_o             =>ben_cmd_shd.g_old_rec.cmd_attribute22
 ,p_cmd_attribute23_o             =>ben_cmd_shd.g_old_rec.cmd_attribute23
 ,p_cmd_attribute24_o             =>ben_cmd_shd.g_old_rec.cmd_attribute24
 ,p_cmd_attribute25_o             =>ben_cmd_shd.g_old_rec.cmd_attribute25
 ,p_cmd_attribute26_o             =>ben_cmd_shd.g_old_rec.cmd_attribute26
 ,p_cmd_attribute27_o             =>ben_cmd_shd.g_old_rec.cmd_attribute27
 ,p_cmd_attribute28_o             =>ben_cmd_shd.g_old_rec.cmd_attribute28
 ,p_cmd_attribute29_o             =>ben_cmd_shd.g_old_rec.cmd_attribute29
 ,p_cmd_attribute30_o             =>ben_cmd_shd.g_old_rec.cmd_attribute30
 ,p_object_version_number_o       =>ben_cmd_shd.g_old_rec.object_version_number
      );
Line: 223

End post_delete;
Line: 249

  ben_cmd_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 254

  pre_delete(p_rec);
Line: 258

  delete_dml(p_rec);
Line: 262

  post_delete(
p_effective_date,p_rec);