DBA Data[Home] [Help]

APPS.BEN_SHR_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_shr_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_schedd_hrs_rt_f
    set
    schedd_hrs_rt_id                = p_rec.schedd_hrs_rt_id,
    vrbl_rt_prfl_id                 = p_rec.vrbl_rt_prfl_id,
    excld_flag                      = p_rec.excld_flag,
    ordr_num                        = p_rec.ordr_num,
    freq_cd                         = p_rec.freq_cd,
    hrs_num                         = p_rec.hrs_num,
	max_hrs_num					  	= p_rec.max_hrs_num,
	schedd_hrs_rl				  	= p_rec.schedd_hrs_rl,
	determination_cd		      	= p_rec.determination_cd,
	determination_rl			  	= p_rec.determination_rl,
	rounding_cd					  	= p_rec.rounding_cd,
	rounding_rl					  	= p_rec.rounding_rl,
    business_group_id               = p_rec.business_group_id,
    shr_attribute_category          = p_rec.shr_attribute_category,
    shr_attribute1                  = p_rec.shr_attribute1,
    shr_attribute2                  = p_rec.shr_attribute2,
    shr_attribute3                  = p_rec.shr_attribute3,
    shr_attribute4                  = p_rec.shr_attribute4,
    shr_attribute5                  = p_rec.shr_attribute5,
    shr_attribute6                  = p_rec.shr_attribute6,
    shr_attribute7                  = p_rec.shr_attribute7,
    shr_attribute8                  = p_rec.shr_attribute8,
    shr_attribute9                  = p_rec.shr_attribute9,
    shr_attribute10                 = p_rec.shr_attribute10,
    shr_attribute11                 = p_rec.shr_attribute11,
    shr_attribute12                 = p_rec.shr_attribute12,
    shr_attribute13                 = p_rec.shr_attribute13,
    shr_attribute14                 = p_rec.shr_attribute14,
    shr_attribute15                 = p_rec.shr_attribute15,
    shr_attribute16                 = p_rec.shr_attribute16,
    shr_attribute17                 = p_rec.shr_attribute17,
    shr_attribute18                 = p_rec.shr_attribute18,
    shr_attribute19                 = p_rec.shr_attribute19,
    shr_attribute20                 = p_rec.shr_attribute20,
    shr_attribute21                 = p_rec.shr_attribute21,
    shr_attribute22                 = p_rec.shr_attribute22,
    shr_attribute23                 = p_rec.shr_attribute23,
    shr_attribute24                 = p_rec.shr_attribute24,
    shr_attribute25                 = p_rec.shr_attribute25,
    shr_attribute26                 = p_rec.shr_attribute26,
    shr_attribute27                 = p_rec.shr_attribute27,
    shr_attribute28                 = p_rec.shr_attribute28,
    shr_attribute29                 = p_rec.shr_attribute29,
    shr_attribute30                 = p_rec.shr_attribute30,
    object_version_number           = p_rec.object_version_number
    where   schedd_hrs_rt_id = p_rec.schedd_hrs_rt_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 159

End dt_update_dml;
Line: 192

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

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

End update_dml;
Line: 256

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

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

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

    ben_shr_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: 306

End dt_pre_update;
Line: 341

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

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

End pre_update;
Line: 397

Procedure post_update
	(p_rec 			 in ben_shr_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: 414

    ben_shr_rku.after_update
      (
  p_schedd_hrs_rt_id              =>p_rec.schedd_hrs_rt_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_vrbl_rt_prfl_id               =>p_rec.vrbl_rt_prfl_id
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_freq_cd                       =>p_rec.freq_cd
 ,p_hrs_num                       =>p_rec.hrs_num
 ,p_max_hrs_num					  =>p_rec.max_hrs_num
 ,p_schedd_hrs_rl				  =>p_rec.schedd_hrs_rl
 ,p_determination_cd		      =>p_rec.determination_cd
 ,p_determination_rl			  =>p_rec.determination_rl
 ,p_rounding_cd					  =>p_rec.rounding_cd
 ,p_rounding_rl					  =>p_rec.rounding_rl
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_shr_attribute_category        =>p_rec.shr_attribute_category
 ,p_shr_attribute1                =>p_rec.shr_attribute1
 ,p_shr_attribute2                =>p_rec.shr_attribute2
 ,p_shr_attribute3                =>p_rec.shr_attribute3
 ,p_shr_attribute4                =>p_rec.shr_attribute4
 ,p_shr_attribute5                =>p_rec.shr_attribute5
 ,p_shr_attribute6                =>p_rec.shr_attribute6
 ,p_shr_attribute7                =>p_rec.shr_attribute7
 ,p_shr_attribute8                =>p_rec.shr_attribute8
 ,p_shr_attribute9                =>p_rec.shr_attribute9
 ,p_shr_attribute10               =>p_rec.shr_attribute10
 ,p_shr_attribute11               =>p_rec.shr_attribute11
 ,p_shr_attribute12               =>p_rec.shr_attribute12
 ,p_shr_attribute13               =>p_rec.shr_attribute13
 ,p_shr_attribute14               =>p_rec.shr_attribute14
 ,p_shr_attribute15               =>p_rec.shr_attribute15
 ,p_shr_attribute16               =>p_rec.shr_attribute16
 ,p_shr_attribute17               =>p_rec.shr_attribute17
 ,p_shr_attribute18               =>p_rec.shr_attribute18
 ,p_shr_attribute19               =>p_rec.shr_attribute19
 ,p_shr_attribute20               =>p_rec.shr_attribute20
 ,p_shr_attribute21               =>p_rec.shr_attribute21
 ,p_shr_attribute22               =>p_rec.shr_attribute22
 ,p_shr_attribute23               =>p_rec.shr_attribute23
 ,p_shr_attribute24               =>p_rec.shr_attribute24
 ,p_shr_attribute25               =>p_rec.shr_attribute25
 ,p_shr_attribute26               =>p_rec.shr_attribute26
 ,p_shr_attribute27               =>p_rec.shr_attribute27
 ,p_shr_attribute28               =>p_rec.shr_attribute28
 ,p_shr_attribute29               =>p_rec.shr_attribute29
 ,p_shr_attribute30               =>p_rec.shr_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_shr_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_shr_shd.g_old_rec.effective_end_date
 ,p_vrbl_rt_prfl_id_o             =>ben_shr_shd.g_old_rec.vrbl_rt_prfl_id
 ,p_excld_flag_o                  =>ben_shr_shd.g_old_rec.excld_flag
 ,p_ordr_num_o                    =>ben_shr_shd.g_old_rec.ordr_num
 ,p_freq_cd_o                     =>ben_shr_shd.g_old_rec.freq_cd
 ,p_hrs_num_o                     =>ben_shr_shd.g_old_rec.hrs_num
 ,p_max_hrs_num_o				  =>ben_shr_shd.g_old_rec.max_hrs_num
 ,p_schedd_hrs_rl_o				  =>ben_shr_shd.g_old_rec.schedd_hrs_rl
 ,p_determination_cd_o		      =>ben_shr_shd.g_old_rec.determination_cd
 ,p_determination_rl_o			  =>ben_shr_shd.g_old_rec.determination_rl
 ,p_rounding_cd_o				  =>ben_shr_shd.g_old_rec.rounding_cd
 ,p_rounding_rl_o				  =>ben_shr_shd.g_old_rec.rounding_rl
 ,p_business_group_id_o           =>ben_shr_shd.g_old_rec.business_group_id
 ,p_shr_attribute_category_o      =>ben_shr_shd.g_old_rec.shr_attribute_category
 ,p_shr_attribute1_o              =>ben_shr_shd.g_old_rec.shr_attribute1
 ,p_shr_attribute2_o              =>ben_shr_shd.g_old_rec.shr_attribute2
 ,p_shr_attribute3_o              =>ben_shr_shd.g_old_rec.shr_attribute3
 ,p_shr_attribute4_o              =>ben_shr_shd.g_old_rec.shr_attribute4
 ,p_shr_attribute5_o              =>ben_shr_shd.g_old_rec.shr_attribute5
 ,p_shr_attribute6_o              =>ben_shr_shd.g_old_rec.shr_attribute6
 ,p_shr_attribute7_o              =>ben_shr_shd.g_old_rec.shr_attribute7
 ,p_shr_attribute8_o              =>ben_shr_shd.g_old_rec.shr_attribute8
 ,p_shr_attribute9_o              =>ben_shr_shd.g_old_rec.shr_attribute9
 ,p_shr_attribute10_o             =>ben_shr_shd.g_old_rec.shr_attribute10
 ,p_shr_attribute11_o             =>ben_shr_shd.g_old_rec.shr_attribute11
 ,p_shr_attribute12_o             =>ben_shr_shd.g_old_rec.shr_attribute12
 ,p_shr_attribute13_o             =>ben_shr_shd.g_old_rec.shr_attribute13
 ,p_shr_attribute14_o             =>ben_shr_shd.g_old_rec.shr_attribute14
 ,p_shr_attribute15_o             =>ben_shr_shd.g_old_rec.shr_attribute15
 ,p_shr_attribute16_o             =>ben_shr_shd.g_old_rec.shr_attribute16
 ,p_shr_attribute17_o             =>ben_shr_shd.g_old_rec.shr_attribute17
 ,p_shr_attribute18_o             =>ben_shr_shd.g_old_rec.shr_attribute18
 ,p_shr_attribute19_o             =>ben_shr_shd.g_old_rec.shr_attribute19
 ,p_shr_attribute20_o             =>ben_shr_shd.g_old_rec.shr_attribute20
 ,p_shr_attribute21_o             =>ben_shr_shd.g_old_rec.shr_attribute21
 ,p_shr_attribute22_o             =>ben_shr_shd.g_old_rec.shr_attribute22
 ,p_shr_attribute23_o             =>ben_shr_shd.g_old_rec.shr_attribute23
 ,p_shr_attribute24_o             =>ben_shr_shd.g_old_rec.shr_attribute24
 ,p_shr_attribute25_o             =>ben_shr_shd.g_old_rec.shr_attribute25
 ,p_shr_attribute26_o             =>ben_shr_shd.g_old_rec.shr_attribute26
 ,p_shr_attribute27_o             =>ben_shr_shd.g_old_rec.shr_attribute27
 ,p_shr_attribute28_o             =>ben_shr_shd.g_old_rec.shr_attribute28
 ,p_shr_attribute29_o             =>ben_shr_shd.g_old_rec.shr_attribute29
 ,p_shr_attribute30_o             =>ben_shr_shd.g_old_rec.shr_attribute30
 ,p_object_version_number_o       =>ben_shr_shd.g_old_rec.object_version_number
      );
Line: 529

End post_update;
Line: 806

  ben_shr_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: 815

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

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

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