DBA Data[Home] [Help]

APPS.BEN_BVR_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_bvr_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_bnft_vrbl_rt_f
    set
        bnft_vrbl_rt_id                 = p_rec.bnft_vrbl_rt_id,
    cvg_amt_calc_mthd_id            = p_rec.cvg_amt_calc_mthd_id,
    vrbl_rt_prfl_id                 = p_rec.vrbl_rt_prfl_id,
    business_group_id               = p_rec.business_group_id,
    bvr_attribute_category          = p_rec.bvr_attribute_category,
    bvr_attribute1                  = p_rec.bvr_attribute1,
    bvr_attribute2                  = p_rec.bvr_attribute2,
    bvr_attribute3                  = p_rec.bvr_attribute3,
    bvr_attribute4                  = p_rec.bvr_attribute4,
    bvr_attribute5                  = p_rec.bvr_attribute5,
    bvr_attribute6                  = p_rec.bvr_attribute6,
    bvr_attribute7                  = p_rec.bvr_attribute7,
    bvr_attribute8                  = p_rec.bvr_attribute8,
    bvr_attribute9                  = p_rec.bvr_attribute9,
    bvr_attribute10                 = p_rec.bvr_attribute10,
    bvr_attribute11                 = p_rec.bvr_attribute11,
    bvr_attribute12                 = p_rec.bvr_attribute12,
    bvr_attribute13                 = p_rec.bvr_attribute13,
    bvr_attribute14                 = p_rec.bvr_attribute14,
    bvr_attribute15                 = p_rec.bvr_attribute15,
    bvr_attribute16                 = p_rec.bvr_attribute16,
    bvr_attribute17                 = p_rec.bvr_attribute17,
    bvr_attribute18                 = p_rec.bvr_attribute18,
    bvr_attribute19                 = p_rec.bvr_attribute19,
    bvr_attribute20                 = p_rec.bvr_attribute20,
    bvr_attribute21                 = p_rec.bvr_attribute21,
    bvr_attribute22                 = p_rec.bvr_attribute22,
    bvr_attribute23                 = p_rec.bvr_attribute23,
    bvr_attribute24                 = p_rec.bvr_attribute24,
    bvr_attribute25                 = p_rec.bvr_attribute25,
    bvr_attribute26                 = p_rec.bvr_attribute26,
    bvr_attribute27                 = p_rec.bvr_attribute27,
    bvr_attribute28                 = p_rec.bvr_attribute28,
    bvr_attribute29                 = p_rec.bvr_attribute29,
    bvr_attribute30                 = p_rec.bvr_attribute30,
    object_version_number           = p_rec.object_version_number,
    ordr_num                        = p_rec.ordr_num
    where   bnft_vrbl_rt_id = p_rec.bnft_vrbl_rt_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 151

End dt_update_dml;
Line: 184

Procedure update_dml
	(p_rec 			 in out nocopy ben_bvr_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: 196

  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: 203

End update_dml;
Line: 248

Procedure dt_pre_update
	(p_rec 			 in out nocopy ben_bvr_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: 273

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

      ben_bvr_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: 290

    ben_bvr_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: 298

End dt_pre_update;
Line: 333

Procedure pre_update
	(p_rec 			 in out nocopy ben_bvr_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: 347

  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: 355

End pre_update;
Line: 389

Procedure post_update
	(p_rec 			 in ben_bvr_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: 406

    ben_bvr_rku.after_update
      (
  p_bnft_vrbl_rt_id               =>p_rec.bnft_vrbl_rt_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_cvg_amt_calc_mthd_id          =>p_rec.cvg_amt_calc_mthd_id
 ,p_vrbl_rt_prfl_id               =>p_rec.vrbl_rt_prfl_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_bvr_attribute_category        =>p_rec.bvr_attribute_category
 ,p_bvr_attribute1                =>p_rec.bvr_attribute1
 ,p_bvr_attribute2                =>p_rec.bvr_attribute2
 ,p_bvr_attribute3                =>p_rec.bvr_attribute3
 ,p_bvr_attribute4                =>p_rec.bvr_attribute4
 ,p_bvr_attribute5                =>p_rec.bvr_attribute5
 ,p_bvr_attribute6                =>p_rec.bvr_attribute6
 ,p_bvr_attribute7                =>p_rec.bvr_attribute7
 ,p_bvr_attribute8                =>p_rec.bvr_attribute8
 ,p_bvr_attribute9                =>p_rec.bvr_attribute9
 ,p_bvr_attribute10               =>p_rec.bvr_attribute10
 ,p_bvr_attribute11               =>p_rec.bvr_attribute11
 ,p_bvr_attribute12               =>p_rec.bvr_attribute12
 ,p_bvr_attribute13               =>p_rec.bvr_attribute13
 ,p_bvr_attribute14               =>p_rec.bvr_attribute14
 ,p_bvr_attribute15               =>p_rec.bvr_attribute15
 ,p_bvr_attribute16               =>p_rec.bvr_attribute16
 ,p_bvr_attribute17               =>p_rec.bvr_attribute17
 ,p_bvr_attribute18               =>p_rec.bvr_attribute18
 ,p_bvr_attribute19               =>p_rec.bvr_attribute19
 ,p_bvr_attribute20               =>p_rec.bvr_attribute20
 ,p_bvr_attribute21               =>p_rec.bvr_attribute21
 ,p_bvr_attribute22               =>p_rec.bvr_attribute22
 ,p_bvr_attribute23               =>p_rec.bvr_attribute23
 ,p_bvr_attribute24               =>p_rec.bvr_attribute24
 ,p_bvr_attribute25               =>p_rec.bvr_attribute25
 ,p_bvr_attribute26               =>p_rec.bvr_attribute26
 ,p_bvr_attribute27               =>p_rec.bvr_attribute27
 ,p_bvr_attribute28               =>p_rec.bvr_attribute28
 ,p_bvr_attribute29               =>p_rec.bvr_attribute29
 ,p_bvr_attribute30               =>p_rec.bvr_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_ordr_num                      =>p_rec.ordr_num
 ,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_bvr_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_bvr_shd.g_old_rec.effective_end_date
 ,p_cvg_amt_calc_mthd_id_o        =>ben_bvr_shd.g_old_rec.cvg_amt_calc_mthd_id
 ,p_vrbl_rt_prfl_id_o             =>ben_bvr_shd.g_old_rec.vrbl_rt_prfl_id
 ,p_business_group_id_o           =>ben_bvr_shd.g_old_rec.business_group_id
 ,p_bvr_attribute_category_o      =>ben_bvr_shd.g_old_rec.bvr_attribute_category
 ,p_bvr_attribute1_o              =>ben_bvr_shd.g_old_rec.bvr_attribute1
 ,p_bvr_attribute2_o              =>ben_bvr_shd.g_old_rec.bvr_attribute2
 ,p_bvr_attribute3_o              =>ben_bvr_shd.g_old_rec.bvr_attribute3
 ,p_bvr_attribute4_o              =>ben_bvr_shd.g_old_rec.bvr_attribute4
 ,p_bvr_attribute5_o              =>ben_bvr_shd.g_old_rec.bvr_attribute5
 ,p_bvr_attribute6_o              =>ben_bvr_shd.g_old_rec.bvr_attribute6
 ,p_bvr_attribute7_o              =>ben_bvr_shd.g_old_rec.bvr_attribute7
 ,p_bvr_attribute8_o              =>ben_bvr_shd.g_old_rec.bvr_attribute8
 ,p_bvr_attribute9_o              =>ben_bvr_shd.g_old_rec.bvr_attribute9
 ,p_bvr_attribute10_o             =>ben_bvr_shd.g_old_rec.bvr_attribute10
 ,p_bvr_attribute11_o             =>ben_bvr_shd.g_old_rec.bvr_attribute11
 ,p_bvr_attribute12_o             =>ben_bvr_shd.g_old_rec.bvr_attribute12
 ,p_bvr_attribute13_o             =>ben_bvr_shd.g_old_rec.bvr_attribute13
 ,p_bvr_attribute14_o             =>ben_bvr_shd.g_old_rec.bvr_attribute14
 ,p_bvr_attribute15_o             =>ben_bvr_shd.g_old_rec.bvr_attribute15
 ,p_bvr_attribute16_o             =>ben_bvr_shd.g_old_rec.bvr_attribute16
 ,p_bvr_attribute17_o             =>ben_bvr_shd.g_old_rec.bvr_attribute17
 ,p_bvr_attribute18_o             =>ben_bvr_shd.g_old_rec.bvr_attribute18
 ,p_bvr_attribute19_o             =>ben_bvr_shd.g_old_rec.bvr_attribute19
 ,p_bvr_attribute20_o             =>ben_bvr_shd.g_old_rec.bvr_attribute20
 ,p_bvr_attribute21_o             =>ben_bvr_shd.g_old_rec.bvr_attribute21
 ,p_bvr_attribute22_o             =>ben_bvr_shd.g_old_rec.bvr_attribute22
 ,p_bvr_attribute23_o             =>ben_bvr_shd.g_old_rec.bvr_attribute23
 ,p_bvr_attribute24_o             =>ben_bvr_shd.g_old_rec.bvr_attribute24
 ,p_bvr_attribute25_o             =>ben_bvr_shd.g_old_rec.bvr_attribute25
 ,p_bvr_attribute26_o             =>ben_bvr_shd.g_old_rec.bvr_attribute26
 ,p_bvr_attribute27_o             =>ben_bvr_shd.g_old_rec.bvr_attribute27
 ,p_bvr_attribute28_o             =>ben_bvr_shd.g_old_rec.bvr_attribute28
 ,p_bvr_attribute29_o             =>ben_bvr_shd.g_old_rec.bvr_attribute29
 ,p_bvr_attribute30_o             =>ben_bvr_shd.g_old_rec.bvr_attribute30
 ,p_object_version_number_o       =>ben_bvr_shd.g_old_rec.object_version_number
 ,p_ordr_num_o                    =>ben_bvr_shd.g_old_rec.ordr_num
      );
Line: 505

End post_update;
Line: 746

  ben_bvr_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: 755

  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: 764

  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: 773

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