DBA Data[Home] [Help]

APPS.BEN_PON_UPD SQL Statements

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

Line: 57

Procedure dt_update_dml
	(p_rec 			 in out nocopy ben_pon_shd.g_rec_type,
	 p_effective_date	 in	date,
	 p_datetrack_mode	 in	varchar2,
	 p_validation_start_date in	date,
	 p_validation_end_date	 in	date) is
--
  l_proc	varchar2(72) := g_package||'dt_update_dml';
Line: 85

    update  ben_pl_typ_opt_typ_f
    set
        pl_typ_opt_typ_id               = p_rec.pl_typ_opt_typ_id,
    pl_typ_opt_typ_cd               = p_rec.pl_typ_opt_typ_cd,
    opt_id                          = p_rec.opt_id,
    pl_typ_id                       = p_rec.pl_typ_id,
    business_group_id               = p_rec.business_group_id,
    legislation_code          = p_rec.legislation_code,
    legislation_subgroup          = p_rec.legislation_subgroup,
    pon_attribute_category          = p_rec.pon_attribute_category,
    pon_attribute1                  = p_rec.pon_attribute1,
    pon_attribute2                  = p_rec.pon_attribute2,
    pon_attribute3                  = p_rec.pon_attribute3,
    pon_attribute4                  = p_rec.pon_attribute4,
    pon_attribute5                  = p_rec.pon_attribute5,
    pon_attribute6                  = p_rec.pon_attribute6,
    pon_attribute7                  = p_rec.pon_attribute7,
    pon_attribute8                  = p_rec.pon_attribute8,
    pon_attribute9                  = p_rec.pon_attribute9,
    pon_attribute10                 = p_rec.pon_attribute10,
    pon_attribute11                 = p_rec.pon_attribute11,
    pon_attribute12                 = p_rec.pon_attribute12,
    pon_attribute13                 = p_rec.pon_attribute13,
    pon_attribute14                 = p_rec.pon_attribute14,
    pon_attribute15                 = p_rec.pon_attribute15,
    pon_attribute16                 = p_rec.pon_attribute16,
    pon_attribute17                 = p_rec.pon_attribute17,
    pon_attribute18                 = p_rec.pon_attribute18,
    pon_attribute19                 = p_rec.pon_attribute19,
    pon_attribute20                 = p_rec.pon_attribute20,
    pon_attribute21                 = p_rec.pon_attribute21,
    pon_attribute22                 = p_rec.pon_attribute22,
    pon_attribute23                 = p_rec.pon_attribute23,
    pon_attribute24                 = p_rec.pon_attribute24,
    pon_attribute25                 = p_rec.pon_attribute25,
    pon_attribute26                 = p_rec.pon_attribute26,
    pon_attribute27                 = p_rec.pon_attribute27,
    pon_attribute28                 = p_rec.pon_attribute28,
    pon_attribute29                 = p_rec.pon_attribute29,
    pon_attribute30                 = p_rec.pon_attribute30,
    object_version_number           = p_rec.object_version_number
    where   pl_typ_opt_typ_id = p_rec.pl_typ_opt_typ_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 153

End dt_update_dml;
Line: 186

Procedure update_dml
	(p_rec 			 in out nocopy ben_pon_shd.g_rec_type,
	 p_effective_date	 in	date,
	 p_datetrack_mode	 in	varchar2,
	 p_validation_start_date in	date,
	 p_validation_end_date	 in	date) is
--
  l_proc	varchar2(72) := g_package||'update_dml';
Line: 198

  dt_update_dml(p_rec			=> p_rec,
		p_effective_date	=> p_effective_date,
		p_datetrack_mode	=> p_datetrack_mode,
       		p_validation_start_date	=> p_validation_start_date,
		p_validation_end_date	=> p_validation_end_date);
Line: 205

End update_dml;
Line: 250

Procedure dt_pre_update
	(p_rec 			 in out nocopy ben_pon_shd.g_rec_type,
	 p_effective_date	 in	date,
	 p_datetrack_mode	 in	varchar2,
	 p_validation_start_date in	date,
	 p_validation_end_date	 in	date) is
--
  l_proc	         varchar2(72) := g_package||'dt_pre_update';
Line: 275

    If (p_datetrack_mode = 'UPDATE_OVERRIDE') then
      hr_utility.set_location(l_proc, 15);
Line: 281

      ben_pon_del.delete_dml
        (p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => p_datetrack_mode,
	 p_validation_start_date => p_validation_start_date,
	 p_validation_end_date   => p_validation_end_date);
Line: 292

    ben_pon_ins.insert_dml
      (p_rec			=> p_rec,
       p_effective_date		=> p_effective_date,
       p_datetrack_mode		=> p_datetrack_mode,
       p_validation_start_date	=> p_validation_start_date,
       p_validation_end_date	=> p_validation_end_date);
Line: 300

End dt_pre_update;
Line: 335

Procedure pre_update
	(p_rec 			 in out nocopy ben_pon_shd.g_rec_type,
	 p_effective_date	 in	date,
	 p_datetrack_mode	 in	varchar2,
	 p_validation_start_date in	date,
	 p_validation_end_date	 in	date) is
--
  l_proc	varchar2(72) := g_package||'pre_update';
Line: 349

  dt_pre_update
    (p_rec 		     => p_rec,
     p_effective_date	     => p_effective_date,
     p_datetrack_mode	     => p_datetrack_mode,
     p_validation_start_date => p_validation_start_date,
     p_validation_end_date   => p_validation_end_date);
Line: 357

End pre_update;
Line: 391

Procedure post_update
	(p_rec 			 in ben_pon_shd.g_rec_type,
	 p_effective_date	 in date,
	 p_datetrack_mode	 in varchar2,
	 p_validation_start_date in date,
	 p_validation_end_date	 in date) is
--
  l_proc	varchar2(72) := g_package||'post_update';
Line: 408

    ben_pon_rku.after_update
      (
  p_pl_typ_opt_typ_id             =>p_rec.pl_typ_opt_typ_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_pl_typ_opt_typ_cd             =>p_rec.pl_typ_opt_typ_cd
 ,p_opt_id                        =>p_rec.opt_id
 ,p_pl_typ_id                     =>p_rec.pl_typ_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_legislation_code        =>p_rec.legislation_code
 ,p_legislation_subgroup        =>p_rec.legislation_subgroup
 ,p_pon_attribute_category        =>p_rec.pon_attribute_category
 ,p_pon_attribute1                =>p_rec.pon_attribute1
 ,p_pon_attribute2                =>p_rec.pon_attribute2
 ,p_pon_attribute3                =>p_rec.pon_attribute3
 ,p_pon_attribute4                =>p_rec.pon_attribute4
 ,p_pon_attribute5                =>p_rec.pon_attribute5
 ,p_pon_attribute6                =>p_rec.pon_attribute6
 ,p_pon_attribute7                =>p_rec.pon_attribute7
 ,p_pon_attribute8                =>p_rec.pon_attribute8
 ,p_pon_attribute9                =>p_rec.pon_attribute9
 ,p_pon_attribute10               =>p_rec.pon_attribute10
 ,p_pon_attribute11               =>p_rec.pon_attribute11
 ,p_pon_attribute12               =>p_rec.pon_attribute12
 ,p_pon_attribute13               =>p_rec.pon_attribute13
 ,p_pon_attribute14               =>p_rec.pon_attribute14
 ,p_pon_attribute15               =>p_rec.pon_attribute15
 ,p_pon_attribute16               =>p_rec.pon_attribute16
 ,p_pon_attribute17               =>p_rec.pon_attribute17
 ,p_pon_attribute18               =>p_rec.pon_attribute18
 ,p_pon_attribute19               =>p_rec.pon_attribute19
 ,p_pon_attribute20               =>p_rec.pon_attribute20
 ,p_pon_attribute21               =>p_rec.pon_attribute21
 ,p_pon_attribute22               =>p_rec.pon_attribute22
 ,p_pon_attribute23               =>p_rec.pon_attribute23
 ,p_pon_attribute24               =>p_rec.pon_attribute24
 ,p_pon_attribute25               =>p_rec.pon_attribute25
 ,p_pon_attribute26               =>p_rec.pon_attribute26
 ,p_pon_attribute27               =>p_rec.pon_attribute27
 ,p_pon_attribute28               =>p_rec.pon_attribute28
 ,p_pon_attribute29               =>p_rec.pon_attribute29
 ,p_pon_attribute30               =>p_rec.pon_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
 ,p_datetrack_mode                =>p_datetrack_mode
 ,p_validation_start_date         =>p_validation_start_date
 ,p_validation_end_date           =>p_validation_end_date
 ,p_effective_start_date_o        =>ben_pon_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_pon_shd.g_old_rec.effective_end_date
 ,p_pl_typ_opt_typ_cd_o           =>ben_pon_shd.g_old_rec.pl_typ_opt_typ_cd
 ,p_opt_id_o                      =>ben_pon_shd.g_old_rec.opt_id
 ,p_pl_typ_id_o                   =>ben_pon_shd.g_old_rec.pl_typ_id
 ,p_business_group_id_o           =>ben_pon_shd.g_old_rec.business_group_id
 ,p_legislation_code_o      =>ben_pon_shd.g_old_rec.legislation_code
 ,p_legislation_subgroup_o      =>ben_pon_shd.g_old_rec.legislation_subgroup
 ,p_pon_attribute_category_o      =>ben_pon_shd.g_old_rec.pon_attribute_category
 ,p_pon_attribute1_o              =>ben_pon_shd.g_old_rec.pon_attribute1
 ,p_pon_attribute2_o              =>ben_pon_shd.g_old_rec.pon_attribute2
 ,p_pon_attribute3_o              =>ben_pon_shd.g_old_rec.pon_attribute3
 ,p_pon_attribute4_o              =>ben_pon_shd.g_old_rec.pon_attribute4
 ,p_pon_attribute5_o              =>ben_pon_shd.g_old_rec.pon_attribute5
 ,p_pon_attribute6_o              =>ben_pon_shd.g_old_rec.pon_attribute6
 ,p_pon_attribute7_o              =>ben_pon_shd.g_old_rec.pon_attribute7
 ,p_pon_attribute8_o              =>ben_pon_shd.g_old_rec.pon_attribute8
 ,p_pon_attribute9_o              =>ben_pon_shd.g_old_rec.pon_attribute9
 ,p_pon_attribute10_o             =>ben_pon_shd.g_old_rec.pon_attribute10
 ,p_pon_attribute11_o             =>ben_pon_shd.g_old_rec.pon_attribute11
 ,p_pon_attribute12_o             =>ben_pon_shd.g_old_rec.pon_attribute12
 ,p_pon_attribute13_o             =>ben_pon_shd.g_old_rec.pon_attribute13
 ,p_pon_attribute14_o             =>ben_pon_shd.g_old_rec.pon_attribute14
 ,p_pon_attribute15_o             =>ben_pon_shd.g_old_rec.pon_attribute15
 ,p_pon_attribute16_o             =>ben_pon_shd.g_old_rec.pon_attribute16
 ,p_pon_attribute17_o             =>ben_pon_shd.g_old_rec.pon_attribute17
 ,p_pon_attribute18_o             =>ben_pon_shd.g_old_rec.pon_attribute18
 ,p_pon_attribute19_o             =>ben_pon_shd.g_old_rec.pon_attribute19
 ,p_pon_attribute20_o             =>ben_pon_shd.g_old_rec.pon_attribute20
 ,p_pon_attribute21_o             =>ben_pon_shd.g_old_rec.pon_attribute21
 ,p_pon_attribute22_o             =>ben_pon_shd.g_old_rec.pon_attribute22
 ,p_pon_attribute23_o             =>ben_pon_shd.g_old_rec.pon_attribute23
 ,p_pon_attribute24_o             =>ben_pon_shd.g_old_rec.pon_attribute24
 ,p_pon_attribute25_o             =>ben_pon_shd.g_old_rec.pon_attribute25
 ,p_pon_attribute26_o             =>ben_pon_shd.g_old_rec.pon_attribute26
 ,p_pon_attribute27_o             =>ben_pon_shd.g_old_rec.pon_attribute27
 ,p_pon_attribute28_o             =>ben_pon_shd.g_old_rec.pon_attribute28
 ,p_pon_attribute29_o             =>ben_pon_shd.g_old_rec.pon_attribute29
 ,p_pon_attribute30_o             =>ben_pon_shd.g_old_rec.pon_attribute30
 ,p_object_version_number_o       =>ben_pon_shd.g_old_rec.object_version_number
      );
Line: 511

End post_update;
Line: 761

  ben_pon_bus.update_validate
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode  	 => p_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 770

  pre_update
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => p_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 779

  update_dml
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => p_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 788

  post_update
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => p_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);