DBA Data[Home] [Help]

APPS.BEN_MTR_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_mtr_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_mtchg_rt_f
    set
        mtchg_rt_id                     = p_rec.mtchg_rt_id,
    acty_base_rt_id                 = p_rec.acty_base_rt_id,
    comp_lvl_fctr_id                = p_rec.comp_lvl_fctr_id,
    ordr_num                        = p_rec.ordr_num,
    from_pct_val                    = p_rec.from_pct_val,
    to_pct_val                      = p_rec.to_pct_val,
    pct_val                         = p_rec.pct_val,
    mx_amt_of_py_num                = p_rec.mx_amt_of_py_num,
    mx_pct_of_py_num                = p_rec.mx_pct_of_py_num,
    mx_mtch_amt                     = p_rec.mx_mtch_amt,
    mn_mtch_amt                     = p_rec.mn_mtch_amt,
    mtchg_rt_calc_rl                = p_rec.mtchg_rt_calc_rl,
    no_mx_mtch_amt_flag             = p_rec.no_mx_mtch_amt_flag,
    no_mx_pct_of_py_num_flag        = p_rec.no_mx_pct_of_py_num_flag,
    cntnu_mtch_aftr_mx_rl_flag      = p_rec.cntnu_mtch_aftr_mx_rl_flag,
    no_mx_amt_of_py_num_flag        = p_rec.no_mx_amt_of_py_num_flag,
    business_group_id               = p_rec.business_group_id,
    mtr_attribute_category          = p_rec.mtr_attribute_category,
    mtr_attribute1                  = p_rec.mtr_attribute1,
    mtr_attribute2                  = p_rec.mtr_attribute2,
    mtr_attribute3                  = p_rec.mtr_attribute3,
    mtr_attribute4                  = p_rec.mtr_attribute4,
    mtr_attribute5                  = p_rec.mtr_attribute5,
    mtr_attribute6                  = p_rec.mtr_attribute6,
    mtr_attribute7                  = p_rec.mtr_attribute7,
    mtr_attribute8                  = p_rec.mtr_attribute8,
    mtr_attribute9                  = p_rec.mtr_attribute9,
    mtr_attribute10                 = p_rec.mtr_attribute10,
    mtr_attribute11                 = p_rec.mtr_attribute11,
    mtr_attribute12                 = p_rec.mtr_attribute12,
    mtr_attribute13                 = p_rec.mtr_attribute13,
    mtr_attribute14                 = p_rec.mtr_attribute14,
    mtr_attribute15                 = p_rec.mtr_attribute15,
    mtr_attribute16                 = p_rec.mtr_attribute16,
    mtr_attribute17                 = p_rec.mtr_attribute17,
    mtr_attribute18                 = p_rec.mtr_attribute18,
    mtr_attribute19                 = p_rec.mtr_attribute19,
    mtr_attribute20                 = p_rec.mtr_attribute20,
    mtr_attribute21                 = p_rec.mtr_attribute21,
    mtr_attribute22                 = p_rec.mtr_attribute22,
    mtr_attribute23                 = p_rec.mtr_attribute23,
    mtr_attribute24                 = p_rec.mtr_attribute24,
    mtr_attribute25                 = p_rec.mtr_attribute25,
    mtr_attribute26                 = p_rec.mtr_attribute26,
    mtr_attribute27                 = p_rec.mtr_attribute27,
    mtr_attribute28                 = p_rec.mtr_attribute28,
    mtr_attribute29                 = p_rec.mtr_attribute29,
    mtr_attribute30                 = p_rec.mtr_attribute30,
    object_version_number           = p_rec.object_version_number
    where   mtchg_rt_id = p_rec.mtchg_rt_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 163

End dt_update_dml;
Line: 196

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

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

End update_dml;
Line: 260

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

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

      ben_mtr_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: 302

    ben_mtr_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: 310

End dt_pre_update;
Line: 345

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

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

End pre_update;
Line: 401

Procedure post_update
	(p_rec 			 in ben_mtr_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: 418

    ben_mtr_rku.after_update
      (
  p_mtchg_rt_id                   =>p_rec.mtchg_rt_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_acty_base_rt_id               =>p_rec.acty_base_rt_id
 ,p_comp_lvl_fctr_id              =>p_rec.comp_lvl_fctr_id
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_from_pct_val                  =>p_rec.from_pct_val
 ,p_to_pct_val                    =>p_rec.to_pct_val
 ,p_pct_val                       =>p_rec.pct_val
 ,p_mx_amt_of_py_num              =>p_rec.mx_amt_of_py_num
 ,p_mx_pct_of_py_num              =>p_rec.mx_pct_of_py_num
 ,p_mx_mtch_amt                   =>p_rec.mx_mtch_amt
 ,p_mn_mtch_amt                   =>p_rec.mn_mtch_amt
 ,p_mtchg_rt_calc_rl              =>p_rec.mtchg_rt_calc_rl
 ,p_no_mx_mtch_amt_flag           =>p_rec.no_mx_mtch_amt_flag
 ,p_no_mx_pct_of_py_num_flag      =>p_rec.no_mx_pct_of_py_num_flag
 ,p_cntnu_mtch_aftr_mx_rl_flag    =>p_rec.cntnu_mtch_aftr_mx_rl_flag
 ,p_no_mx_amt_of_py_num_flag      =>p_rec.no_mx_amt_of_py_num_flag
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_mtr_attribute_category        =>p_rec.mtr_attribute_category
 ,p_mtr_attribute1                =>p_rec.mtr_attribute1
 ,p_mtr_attribute2                =>p_rec.mtr_attribute2
 ,p_mtr_attribute3                =>p_rec.mtr_attribute3
 ,p_mtr_attribute4                =>p_rec.mtr_attribute4
 ,p_mtr_attribute5                =>p_rec.mtr_attribute5
 ,p_mtr_attribute6                =>p_rec.mtr_attribute6
 ,p_mtr_attribute7                =>p_rec.mtr_attribute7
 ,p_mtr_attribute8                =>p_rec.mtr_attribute8
 ,p_mtr_attribute9                =>p_rec.mtr_attribute9
 ,p_mtr_attribute10               =>p_rec.mtr_attribute10
 ,p_mtr_attribute11               =>p_rec.mtr_attribute11
 ,p_mtr_attribute12               =>p_rec.mtr_attribute12
 ,p_mtr_attribute13               =>p_rec.mtr_attribute13
 ,p_mtr_attribute14               =>p_rec.mtr_attribute14
 ,p_mtr_attribute15               =>p_rec.mtr_attribute15
 ,p_mtr_attribute16               =>p_rec.mtr_attribute16
 ,p_mtr_attribute17               =>p_rec.mtr_attribute17
 ,p_mtr_attribute18               =>p_rec.mtr_attribute18
 ,p_mtr_attribute19               =>p_rec.mtr_attribute19
 ,p_mtr_attribute20               =>p_rec.mtr_attribute20
 ,p_mtr_attribute21               =>p_rec.mtr_attribute21
 ,p_mtr_attribute22               =>p_rec.mtr_attribute22
 ,p_mtr_attribute23               =>p_rec.mtr_attribute23
 ,p_mtr_attribute24               =>p_rec.mtr_attribute24
 ,p_mtr_attribute25               =>p_rec.mtr_attribute25
 ,p_mtr_attribute26               =>p_rec.mtr_attribute26
 ,p_mtr_attribute27               =>p_rec.mtr_attribute27
 ,p_mtr_attribute28               =>p_rec.mtr_attribute28
 ,p_mtr_attribute29               =>p_rec.mtr_attribute29
 ,p_mtr_attribute30               =>p_rec.mtr_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_mtr_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_mtr_shd.g_old_rec.effective_end_date
 ,p_acty_base_rt_id_o             =>ben_mtr_shd.g_old_rec.acty_base_rt_id
 ,p_comp_lvl_fctr_id_o            =>ben_mtr_shd.g_old_rec.comp_lvl_fctr_id
 ,p_ordr_num_o                    =>ben_mtr_shd.g_old_rec.ordr_num
 ,p_from_pct_val_o                =>ben_mtr_shd.g_old_rec.from_pct_val
 ,p_to_pct_val_o                  =>ben_mtr_shd.g_old_rec.to_pct_val
 ,p_pct_val_o                     =>ben_mtr_shd.g_old_rec.pct_val
 ,p_mx_amt_of_py_num_o            =>ben_mtr_shd.g_old_rec.mx_amt_of_py_num
 ,p_mx_pct_of_py_num_o            =>ben_mtr_shd.g_old_rec.mx_pct_of_py_num
 ,p_mx_mtch_amt_o                 =>ben_mtr_shd.g_old_rec.mx_mtch_amt
 ,p_mn_mtch_amt_o                 =>ben_mtr_shd.g_old_rec.mn_mtch_amt
 ,p_mtchg_rt_calc_rl_o            =>ben_mtr_shd.g_old_rec.mtchg_rt_calc_rl
 ,p_no_mx_mtch_amt_flag_o         =>ben_mtr_shd.g_old_rec.no_mx_mtch_amt_flag
 ,p_no_mx_pct_of_py_num_flag_o    =>ben_mtr_shd.g_old_rec.no_mx_pct_of_py_num_flag
 ,p_cntnu_mtch_aftr_mx_rl_flag_o  =>ben_mtr_shd.g_old_rec.cntnu_mtch_aftr_mx_rl_flag
 ,p_no_mx_amt_of_py_num_flag_o    =>ben_mtr_shd.g_old_rec.no_mx_amt_of_py_num_flag
 ,p_business_group_id_o           =>ben_mtr_shd.g_old_rec.business_group_id
 ,p_mtr_attribute_category_o      =>ben_mtr_shd.g_old_rec.mtr_attribute_category
 ,p_mtr_attribute1_o              =>ben_mtr_shd.g_old_rec.mtr_attribute1
 ,p_mtr_attribute2_o              =>ben_mtr_shd.g_old_rec.mtr_attribute2
 ,p_mtr_attribute3_o              =>ben_mtr_shd.g_old_rec.mtr_attribute3
 ,p_mtr_attribute4_o              =>ben_mtr_shd.g_old_rec.mtr_attribute4
 ,p_mtr_attribute5_o              =>ben_mtr_shd.g_old_rec.mtr_attribute5
 ,p_mtr_attribute6_o              =>ben_mtr_shd.g_old_rec.mtr_attribute6
 ,p_mtr_attribute7_o              =>ben_mtr_shd.g_old_rec.mtr_attribute7
 ,p_mtr_attribute8_o              =>ben_mtr_shd.g_old_rec.mtr_attribute8
 ,p_mtr_attribute9_o              =>ben_mtr_shd.g_old_rec.mtr_attribute9
 ,p_mtr_attribute10_o             =>ben_mtr_shd.g_old_rec.mtr_attribute10
 ,p_mtr_attribute11_o             =>ben_mtr_shd.g_old_rec.mtr_attribute11
 ,p_mtr_attribute12_o             =>ben_mtr_shd.g_old_rec.mtr_attribute12
 ,p_mtr_attribute13_o             =>ben_mtr_shd.g_old_rec.mtr_attribute13
 ,p_mtr_attribute14_o             =>ben_mtr_shd.g_old_rec.mtr_attribute14
 ,p_mtr_attribute15_o             =>ben_mtr_shd.g_old_rec.mtr_attribute15
 ,p_mtr_attribute16_o             =>ben_mtr_shd.g_old_rec.mtr_attribute16
 ,p_mtr_attribute17_o             =>ben_mtr_shd.g_old_rec.mtr_attribute17
 ,p_mtr_attribute18_o             =>ben_mtr_shd.g_old_rec.mtr_attribute18
 ,p_mtr_attribute19_o             =>ben_mtr_shd.g_old_rec.mtr_attribute19
 ,p_mtr_attribute20_o             =>ben_mtr_shd.g_old_rec.mtr_attribute20
 ,p_mtr_attribute21_o             =>ben_mtr_shd.g_old_rec.mtr_attribute21
 ,p_mtr_attribute22_o             =>ben_mtr_shd.g_old_rec.mtr_attribute22
 ,p_mtr_attribute23_o             =>ben_mtr_shd.g_old_rec.mtr_attribute23
 ,p_mtr_attribute24_o             =>ben_mtr_shd.g_old_rec.mtr_attribute24
 ,p_mtr_attribute25_o             =>ben_mtr_shd.g_old_rec.mtr_attribute25
 ,p_mtr_attribute26_o             =>ben_mtr_shd.g_old_rec.mtr_attribute26
 ,p_mtr_attribute27_o             =>ben_mtr_shd.g_old_rec.mtr_attribute27
 ,p_mtr_attribute28_o             =>ben_mtr_shd.g_old_rec.mtr_attribute28
 ,p_mtr_attribute29_o             =>ben_mtr_shd.g_old_rec.mtr_attribute29
 ,p_mtr_attribute30_o             =>ben_mtr_shd.g_old_rec.mtr_attribute30
 ,p_object_version_number_o       =>ben_mtr_shd.g_old_rec.object_version_number
      );
Line: 541

End post_update;
Line: 831

  ben_mtr_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: 840

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

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

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