DBA Data[Home] [Help]

APPS.BEN_BTR_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_btr_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_comp_lvl_acty_rt_f
    set
        comp_lvl_acty_rt_id             = p_rec.comp_lvl_acty_rt_id,
    dflt_flag                       = p_rec.dflt_flag,
    comp_lvl_fctr_id                = p_rec.comp_lvl_fctr_id,
    acty_base_rt_id                 = p_rec.acty_base_rt_id,
    business_group_id               = p_rec.business_group_id,
    btr_attribute_category          = p_rec.btr_attribute_category,
    btr_attribute1                  = p_rec.btr_attribute1,
    btr_attribute2                  = p_rec.btr_attribute2,
    btr_attribute3                  = p_rec.btr_attribute3,
    btr_attribute4                  = p_rec.btr_attribute4,
    btr_attribute5                  = p_rec.btr_attribute5,
    btr_attribute6                  = p_rec.btr_attribute6,
    btr_attribute7                  = p_rec.btr_attribute7,
    btr_attribute8                  = p_rec.btr_attribute8,
    btr_attribute9                  = p_rec.btr_attribute9,
    btr_attribute10                 = p_rec.btr_attribute10,
    btr_attribute11                 = p_rec.btr_attribute11,
    btr_attribute12                 = p_rec.btr_attribute12,
    btr_attribute13                 = p_rec.btr_attribute13,
    btr_attribute14                 = p_rec.btr_attribute14,
    btr_attribute15                 = p_rec.btr_attribute15,
    btr_attribute16                 = p_rec.btr_attribute16,
    btr_attribute17                 = p_rec.btr_attribute17,
    btr_attribute18                 = p_rec.btr_attribute18,
    btr_attribute19                 = p_rec.btr_attribute19,
    btr_attribute20                 = p_rec.btr_attribute20,
    btr_attribute21                 = p_rec.btr_attribute21,
    btr_attribute22                 = p_rec.btr_attribute22,
    btr_attribute23                 = p_rec.btr_attribute23,
    btr_attribute24                 = p_rec.btr_attribute24,
    btr_attribute25                 = p_rec.btr_attribute25,
    btr_attribute26                 = p_rec.btr_attribute26,
    btr_attribute27                 = p_rec.btr_attribute27,
    btr_attribute28                 = p_rec.btr_attribute28,
    btr_attribute29                 = p_rec.btr_attribute29,
    btr_attribute30                 = p_rec.btr_attribute30,
    object_version_number           = p_rec.object_version_number
    where   comp_lvl_acty_rt_id = p_rec.comp_lvl_acty_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_btr_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_btr_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_btr_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_btr_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_btr_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_btr_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_btr_rku.after_update
      (
  p_comp_lvl_acty_rt_id           =>p_rec.comp_lvl_acty_rt_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_dflt_flag                     =>p_rec.dflt_flag
 ,p_comp_lvl_fctr_id              =>p_rec.comp_lvl_fctr_id
 ,p_acty_base_rt_id               =>p_rec.acty_base_rt_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_btr_attribute_category        =>p_rec.btr_attribute_category
 ,p_btr_attribute1                =>p_rec.btr_attribute1
 ,p_btr_attribute2                =>p_rec.btr_attribute2
 ,p_btr_attribute3                =>p_rec.btr_attribute3
 ,p_btr_attribute4                =>p_rec.btr_attribute4
 ,p_btr_attribute5                =>p_rec.btr_attribute5
 ,p_btr_attribute6                =>p_rec.btr_attribute6
 ,p_btr_attribute7                =>p_rec.btr_attribute7
 ,p_btr_attribute8                =>p_rec.btr_attribute8
 ,p_btr_attribute9                =>p_rec.btr_attribute9
 ,p_btr_attribute10               =>p_rec.btr_attribute10
 ,p_btr_attribute11               =>p_rec.btr_attribute11
 ,p_btr_attribute12               =>p_rec.btr_attribute12
 ,p_btr_attribute13               =>p_rec.btr_attribute13
 ,p_btr_attribute14               =>p_rec.btr_attribute14
 ,p_btr_attribute15               =>p_rec.btr_attribute15
 ,p_btr_attribute16               =>p_rec.btr_attribute16
 ,p_btr_attribute17               =>p_rec.btr_attribute17
 ,p_btr_attribute18               =>p_rec.btr_attribute18
 ,p_btr_attribute19               =>p_rec.btr_attribute19
 ,p_btr_attribute20               =>p_rec.btr_attribute20
 ,p_btr_attribute21               =>p_rec.btr_attribute21
 ,p_btr_attribute22               =>p_rec.btr_attribute22
 ,p_btr_attribute23               =>p_rec.btr_attribute23
 ,p_btr_attribute24               =>p_rec.btr_attribute24
 ,p_btr_attribute25               =>p_rec.btr_attribute25
 ,p_btr_attribute26               =>p_rec.btr_attribute26
 ,p_btr_attribute27               =>p_rec.btr_attribute27
 ,p_btr_attribute28               =>p_rec.btr_attribute28
 ,p_btr_attribute29               =>p_rec.btr_attribute29
 ,p_btr_attribute30               =>p_rec.btr_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_btr_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_btr_shd.g_old_rec.effective_end_date
 ,p_dflt_flag_o                   =>ben_btr_shd.g_old_rec.dflt_flag
 ,p_comp_lvl_fctr_id_o            =>ben_btr_shd.g_old_rec.comp_lvl_fctr_id
 ,p_acty_base_rt_id_o             =>ben_btr_shd.g_old_rec.acty_base_rt_id
 ,p_business_group_id_o           =>ben_btr_shd.g_old_rec.business_group_id
 ,p_btr_attribute_category_o      =>ben_btr_shd.g_old_rec.btr_attribute_category
 ,p_btr_attribute1_o              =>ben_btr_shd.g_old_rec.btr_attribute1
 ,p_btr_attribute2_o              =>ben_btr_shd.g_old_rec.btr_attribute2
 ,p_btr_attribute3_o              =>ben_btr_shd.g_old_rec.btr_attribute3
 ,p_btr_attribute4_o              =>ben_btr_shd.g_old_rec.btr_attribute4
 ,p_btr_attribute5_o              =>ben_btr_shd.g_old_rec.btr_attribute5
 ,p_btr_attribute6_o              =>ben_btr_shd.g_old_rec.btr_attribute6
 ,p_btr_attribute7_o              =>ben_btr_shd.g_old_rec.btr_attribute7
 ,p_btr_attribute8_o              =>ben_btr_shd.g_old_rec.btr_attribute8
 ,p_btr_attribute9_o              =>ben_btr_shd.g_old_rec.btr_attribute9
 ,p_btr_attribute10_o             =>ben_btr_shd.g_old_rec.btr_attribute10
 ,p_btr_attribute11_o             =>ben_btr_shd.g_old_rec.btr_attribute11
 ,p_btr_attribute12_o             =>ben_btr_shd.g_old_rec.btr_attribute12
 ,p_btr_attribute13_o             =>ben_btr_shd.g_old_rec.btr_attribute13
 ,p_btr_attribute14_o             =>ben_btr_shd.g_old_rec.btr_attribute14
 ,p_btr_attribute15_o             =>ben_btr_shd.g_old_rec.btr_attribute15
 ,p_btr_attribute16_o             =>ben_btr_shd.g_old_rec.btr_attribute16
 ,p_btr_attribute17_o             =>ben_btr_shd.g_old_rec.btr_attribute17
 ,p_btr_attribute18_o             =>ben_btr_shd.g_old_rec.btr_attribute18
 ,p_btr_attribute19_o             =>ben_btr_shd.g_old_rec.btr_attribute19
 ,p_btr_attribute20_o             =>ben_btr_shd.g_old_rec.btr_attribute20
 ,p_btr_attribute21_o             =>ben_btr_shd.g_old_rec.btr_attribute21
 ,p_btr_attribute22_o             =>ben_btr_shd.g_old_rec.btr_attribute22
 ,p_btr_attribute23_o             =>ben_btr_shd.g_old_rec.btr_attribute23
 ,p_btr_attribute24_o             =>ben_btr_shd.g_old_rec.btr_attribute24
 ,p_btr_attribute25_o             =>ben_btr_shd.g_old_rec.btr_attribute25
 ,p_btr_attribute26_o             =>ben_btr_shd.g_old_rec.btr_attribute26
 ,p_btr_attribute27_o             =>ben_btr_shd.g_old_rec.btr_attribute27
 ,p_btr_attribute28_o             =>ben_btr_shd.g_old_rec.btr_attribute28
 ,p_btr_attribute29_o             =>ben_btr_shd.g_old_rec.btr_attribute29
 ,p_btr_attribute30_o             =>ben_btr_shd.g_old_rec.btr_attribute30
 ,p_object_version_number_o       =>ben_btr_shd.g_old_rec.object_version_number
      );
Line: 505

End post_update;
Line: 747

  ben_btr_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: 756

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

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

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