DBA Data[Home] [Help]

APPS.BEN_CMD_UPD SQL Statements

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

Line: 54

Procedure update_dml(p_rec in out nocopy ben_cmd_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 69

  update ben_cm_dlvry_med_typ
  set
  cm_dlvry_med_typ_id               = p_rec.cm_dlvry_med_typ_id,
  cm_dlvry_med_typ_cd               = p_rec.cm_dlvry_med_typ_cd,
  cm_dlvry_mthd_typ_id              = p_rec.cm_dlvry_mthd_typ_id,
  rqd_flag                          = p_rec.rqd_flag,
  dflt_flag                         = p_rec.dflt_flag,
  business_group_id                 = p_rec.business_group_id,
  cmd_attribute_category            = p_rec.cmd_attribute_category,
  cmd_attribute1                    = p_rec.cmd_attribute1,
  cmd_attribute2                    = p_rec.cmd_attribute2,
  cmd_attribute3                    = p_rec.cmd_attribute3,
  cmd_attribute4                    = p_rec.cmd_attribute4,
  cmd_attribute5                    = p_rec.cmd_attribute5,
  cmd_attribute6                    = p_rec.cmd_attribute6,
  cmd_attribute7                    = p_rec.cmd_attribute7,
  cmd_attribute8                    = p_rec.cmd_attribute8,
  cmd_attribute9                    = p_rec.cmd_attribute9,
  cmd_attribute10                   = p_rec.cmd_attribute10,
  cmd_attribute11                   = p_rec.cmd_attribute11,
  cmd_attribute12                   = p_rec.cmd_attribute12,
  cmd_attribute13                   = p_rec.cmd_attribute13,
  cmd_attribute14                   = p_rec.cmd_attribute14,
  cmd_attribute15                   = p_rec.cmd_attribute15,
  cmd_attribute16                   = p_rec.cmd_attribute16,
  cmd_attribute17                   = p_rec.cmd_attribute17,
  cmd_attribute18                   = p_rec.cmd_attribute18,
  cmd_attribute19                   = p_rec.cmd_attribute19,
  cmd_attribute20                   = p_rec.cmd_attribute20,
  cmd_attribute21                   = p_rec.cmd_attribute21,
  cmd_attribute22                   = p_rec.cmd_attribute22,
  cmd_attribute23                   = p_rec.cmd_attribute23,
  cmd_attribute24                   = p_rec.cmd_attribute24,
  cmd_attribute25                   = p_rec.cmd_attribute25,
  cmd_attribute26                   = p_rec.cmd_attribute26,
  cmd_attribute27                   = p_rec.cmd_attribute27,
  cmd_attribute28                   = p_rec.cmd_attribute28,
  cmd_attribute29                   = p_rec.cmd_attribute29,
  cmd_attribute30                   = p_rec.cmd_attribute30,
  object_version_number             = p_rec.object_version_number
  where cm_dlvry_med_typ_id = p_rec.cm_dlvry_med_typ_id;
Line: 134

End update_dml;
Line: 168

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

End pre_update;
Line: 210

Procedure post_update(
p_effective_date in date,p_rec in ben_cmd_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 223

    ben_cmd_rku.after_update
      (
  p_cm_dlvry_med_typ_id           =>p_rec.cm_dlvry_med_typ_id
 ,p_cm_dlvry_med_typ_cd           =>p_rec.cm_dlvry_med_typ_cd
 ,p_cm_dlvry_mthd_typ_id          =>p_rec.cm_dlvry_mthd_typ_id
 ,p_rqd_flag                      =>p_rec.rqd_flag
 ,p_dflt_flag                     =>p_rec.dflt_flag
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_cmd_attribute_category        =>p_rec.cmd_attribute_category
 ,p_cmd_attribute1                =>p_rec.cmd_attribute1
 ,p_cmd_attribute2                =>p_rec.cmd_attribute2
 ,p_cmd_attribute3                =>p_rec.cmd_attribute3
 ,p_cmd_attribute4                =>p_rec.cmd_attribute4
 ,p_cmd_attribute5                =>p_rec.cmd_attribute5
 ,p_cmd_attribute6                =>p_rec.cmd_attribute6
 ,p_cmd_attribute7                =>p_rec.cmd_attribute7
 ,p_cmd_attribute8                =>p_rec.cmd_attribute8
 ,p_cmd_attribute9                =>p_rec.cmd_attribute9
 ,p_cmd_attribute10               =>p_rec.cmd_attribute10
 ,p_cmd_attribute11               =>p_rec.cmd_attribute11
 ,p_cmd_attribute12               =>p_rec.cmd_attribute12
 ,p_cmd_attribute13               =>p_rec.cmd_attribute13
 ,p_cmd_attribute14               =>p_rec.cmd_attribute14
 ,p_cmd_attribute15               =>p_rec.cmd_attribute15
 ,p_cmd_attribute16               =>p_rec.cmd_attribute16
 ,p_cmd_attribute17               =>p_rec.cmd_attribute17
 ,p_cmd_attribute18               =>p_rec.cmd_attribute18
 ,p_cmd_attribute19               =>p_rec.cmd_attribute19
 ,p_cmd_attribute20               =>p_rec.cmd_attribute20
 ,p_cmd_attribute21               =>p_rec.cmd_attribute21
 ,p_cmd_attribute22               =>p_rec.cmd_attribute22
 ,p_cmd_attribute23               =>p_rec.cmd_attribute23
 ,p_cmd_attribute24               =>p_rec.cmd_attribute24
 ,p_cmd_attribute25               =>p_rec.cmd_attribute25
 ,p_cmd_attribute26               =>p_rec.cmd_attribute26
 ,p_cmd_attribute27               =>p_rec.cmd_attribute27
 ,p_cmd_attribute28               =>p_rec.cmd_attribute28
 ,p_cmd_attribute29               =>p_rec.cmd_attribute29
 ,p_cmd_attribute30               =>p_rec.cmd_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
 ,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: 317

End post_update;
Line: 554

  ben_cmd_bus.update_validate(p_rec
  ,p_effective_date);
Line: 559

  pre_update(p_rec);
Line: 563

  update_dml(p_rec);
Line: 567

  post_update(
p_effective_date,p_rec);