DBA Data[Home] [Help]

APPS.BEN_EAT_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_eat_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 69

  update ben_actn_typ
  set
  actn_typ_id                       = p_rec.actn_typ_id,
  business_group_id                 = p_rec.business_group_id,
  type_cd                           = p_rec.type_cd,
  name                              = p_rec.name,
  description                       = p_rec.description,
  eat_attribute_category            = p_rec.eat_attribute_category,
  eat_attribute1                    = p_rec.eat_attribute1,
  eat_attribute2                    = p_rec.eat_attribute2,
  eat_attribute3                    = p_rec.eat_attribute3,
  eat_attribute4                    = p_rec.eat_attribute4,
  eat_attribute5                    = p_rec.eat_attribute5,
  eat_attribute6                    = p_rec.eat_attribute6,
  eat_attribute7                    = p_rec.eat_attribute7,
  eat_attribute8                    = p_rec.eat_attribute8,
  eat_attribute9                    = p_rec.eat_attribute9,
  eat_attribute10                   = p_rec.eat_attribute10,
  eat_attribute11                   = p_rec.eat_attribute11,
  eat_attribute12                   = p_rec.eat_attribute12,
  eat_attribute13                   = p_rec.eat_attribute13,
  eat_attribute14                   = p_rec.eat_attribute14,
  eat_attribute15                   = p_rec.eat_attribute15,
  eat_attribute16                   = p_rec.eat_attribute16,
  eat_attribute17                   = p_rec.eat_attribute17,
  eat_attribute18                   = p_rec.eat_attribute18,
  eat_attribute19                   = p_rec.eat_attribute19,
  eat_attribute20                   = p_rec.eat_attribute20,
  eat_attribute21                   = p_rec.eat_attribute21,
  eat_attribute22                   = p_rec.eat_attribute22,
  eat_attribute23                   = p_rec.eat_attribute23,
  eat_attribute24                   = p_rec.eat_attribute24,
  eat_attribute25                   = p_rec.eat_attribute25,
  eat_attribute26                   = p_rec.eat_attribute26,
  eat_attribute27                   = p_rec.eat_attribute27,
  eat_attribute28                   = p_rec.eat_attribute28,
  eat_attribute29                   = p_rec.eat_attribute29,
  eat_attribute30                   = p_rec.eat_attribute30,
  object_version_number             = p_rec.object_version_number
  where actn_typ_id = p_rec.actn_typ_id;
Line: 112

  update ben_actn_typ_tl
  set name = p_rec.name,
      description = p_rec.description,
      last_update_date  = sysdate,
      last_updated_by   = fnd_global.user_id,
      last_update_login = fnd_global.login_id,
      source_lang = userenv('LANG')
  where actn_typ_id = p_rec.actn_typ_id
  and   userenv('LANG') in (language, source_lang);
Line: 145

End update_dml;
Line: 179

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

End pre_update;
Line: 221

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

    ben_eat_rku.after_update
      (
  p_actn_typ_id                   =>p_rec.actn_typ_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_type_cd                       =>p_rec.type_cd
 ,p_name                          =>p_rec.name
 ,p_description                   =>p_rec.description
 ,p_eat_attribute_category        =>p_rec.eat_attribute_category
 ,p_eat_attribute1                =>p_rec.eat_attribute1
 ,p_eat_attribute2                =>p_rec.eat_attribute2
 ,p_eat_attribute3                =>p_rec.eat_attribute3
 ,p_eat_attribute4                =>p_rec.eat_attribute4
 ,p_eat_attribute5                =>p_rec.eat_attribute5
 ,p_eat_attribute6                =>p_rec.eat_attribute6
 ,p_eat_attribute7                =>p_rec.eat_attribute7
 ,p_eat_attribute8                =>p_rec.eat_attribute8
 ,p_eat_attribute9                =>p_rec.eat_attribute9
 ,p_eat_attribute10               =>p_rec.eat_attribute10
 ,p_eat_attribute11               =>p_rec.eat_attribute11
 ,p_eat_attribute12               =>p_rec.eat_attribute12
 ,p_eat_attribute13               =>p_rec.eat_attribute13
 ,p_eat_attribute14               =>p_rec.eat_attribute14
 ,p_eat_attribute15               =>p_rec.eat_attribute15
 ,p_eat_attribute16               =>p_rec.eat_attribute16
 ,p_eat_attribute17               =>p_rec.eat_attribute17
 ,p_eat_attribute18               =>p_rec.eat_attribute18
 ,p_eat_attribute19               =>p_rec.eat_attribute19
 ,p_eat_attribute20               =>p_rec.eat_attribute20
 ,p_eat_attribute21               =>p_rec.eat_attribute21
 ,p_eat_attribute22               =>p_rec.eat_attribute22
 ,p_eat_attribute23               =>p_rec.eat_attribute23
 ,p_eat_attribute24               =>p_rec.eat_attribute24
 ,p_eat_attribute25               =>p_rec.eat_attribute25
 ,p_eat_attribute26               =>p_rec.eat_attribute26
 ,p_eat_attribute27               =>p_rec.eat_attribute27
 ,p_eat_attribute28               =>p_rec.eat_attribute28
 ,p_eat_attribute29               =>p_rec.eat_attribute29
 ,p_eat_attribute30               =>p_rec.eat_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
 ,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: 326

End post_update;
Line: 559

  ben_eat_bus.update_validate(p_rec
  ,p_effective_date);
Line: 564

  pre_update(p_rec);
Line: 568

  update_dml(p_rec);
Line: 572

  post_update(
p_effective_date,p_rec);