DBA Data[Home] [Help]

APPS.BEN_ECV_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_ecv_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_eligy_crit_values_f
  set
    eligy_crit_values_id                	    =  p_rec.eligy_crit_values_id,
    eligy_prfl_id                            	=  p_rec.eligy_prfl_id,
    eligy_criteria_id                       	=  p_rec.eligy_criteria_id,
 --   effective_start_date                    	=  p_rec.effective_start_date,
 --   effective_end_date                      	=  p_rec.effective_end_date,
    ordr_num                                	=  p_rec.ordr_num,
    number_value1                           	=  p_rec.number_value1,
    number_value2                           	=  p_rec.number_value2,
    char_value1                             	=  p_rec.char_value1,
    char_value2                             	=  p_rec.char_value2,
	date_value1                             	=  p_rec.date_value1,
	date_value2                             	=  p_rec.date_value2,
        excld_flag                                      =  p_rec.excld_flag,
	business_group_id                       	=  p_rec.business_group_id,
	legislation_code                        	=  p_rec.legislation_code,
	ecv_attribute_category                  	=  p_rec.ecv_attribute_category,
	ecv_attribute1                          	=  p_rec.ecv_attribute1,
	ecv_attribute2                          	=  p_rec.ecv_attribute2,
	ecv_attribute3                          	=  p_rec.ecv_attribute3,
	ecv_attribute4                          	=  p_rec.ecv_attribute4,
	ecv_attribute5                          	=  p_rec.ecv_attribute5,
	ecv_attribute6                          	=  p_rec.ecv_attribute6,
	ecv_attribute7                          	=  p_rec.ecv_attribute7,
	ecv_attribute8                          	=  p_rec.ecv_attribute8,
	ecv_attribute9                          	=  p_rec.ecv_attribute9,
	ecv_attribute10                         	=  p_rec.ecv_attribute10,
	ecv_attribute11                         	=  p_rec.ecv_attribute11,
	ecv_attribute12                         	=  p_rec.ecv_attribute12,
	ecv_attribute13                         	=  p_rec.ecv_attribute13,
	ecv_attribute14                         	=  p_rec.ecv_attribute14,
	ecv_attribute15                         	=  p_rec.ecv_attribute15,
	ecv_attribute16                         	=  p_rec.ecv_attribute16,
	ecv_attribute17                         	=  p_rec.ecv_attribute17,
	ecv_attribute18                         	=  p_rec.ecv_attribute18,
	ecv_attribute19                         	=  p_rec.ecv_attribute19,
	ecv_attribute20                         	=  p_rec.ecv_attribute20,
	ecv_attribute21                         	=  p_rec.ecv_attribute21,
	ecv_attribute22                         	=  p_rec.ecv_attribute22,
	ecv_attribute23                         	=  p_rec.ecv_attribute23,
	ecv_attribute24                         	=  p_rec.ecv_attribute24,
	ecv_attribute25                         	=  p_rec.ecv_attribute25,
	ecv_attribute26                         	=  p_rec.ecv_attribute26,
	ecv_attribute27                         	=  p_rec.ecv_attribute27,
	ecv_attribute28                         	=  p_rec.ecv_attribute28,
	ecv_attribute29                         	=  p_rec.ecv_attribute29,
	ecv_attribute30                         	=  p_rec.ecv_attribute30,
	object_version_number                   	=  p_rec.object_version_number,
	criteria_score                                  =  p_rec.criteria_score,
	criteria_weight                                 =  p_rec.criteria_weight,
        char_value3                                     =  p_rec.char_value3,
	char_value4  					=  p_rec.char_value4,
	number_value3					=  p_rec.number_value3,
	number_value4					=  p_rec.number_value4,
	date_value3					=  p_rec.date_value3,
	date_value4  					=  p_rec.date_value4
	where eligy_crit_values_id = p_rec.eligy_crit_values_id
	 and  effective_start_date = p_validation_start_date
	 and  effective_end_date   = p_validation_end_date;
Line: 170

End dt_update_dml;
Line: 203

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

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

End update_dml;
Line: 267

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

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

      ben_ecv_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: 309

    ben_ecv_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: 317

End dt_pre_update;
Line: 352

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

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

End pre_update;
Line: 408

Procedure post_update
	(p_rec 			 in ben_ecv_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: 425

      ben_ecv_rku.after_update
      (
        p_eligy_crit_values_id              =>p_rec.eligy_crit_values_id
 ,p_eligy_prfl_id                           =>p_rec.eligy_prfl_id
 ,p_eligy_criteria_id                       =>p_rec.eligy_criteria_id
 ,p_effective_start_date                    =>p_rec.effective_start_date
 ,p_effective_end_date                      =>p_rec.effective_end_date
 ,p_ordr_num                                =>p_rec.ordr_num
 ,p_number_value1                           =>p_rec.number_value1
 ,p_number_value2                           =>p_rec.number_value2
 ,p_char_value1                             =>p_rec.char_value1
 ,p_char_value2                             =>p_rec.char_value2
 ,p_date_value1                             =>p_rec.date_value1
 ,p_date_value2                             =>p_rec.date_value2
 ,p_excld_flag                              =>p_rec.excld_flag
 ,p_business_group_id                       =>p_rec.business_group_id
 ,p_legislation_code                        =>p_rec.legislation_code
 ,p_ecv_attribute_category                  =>p_rec.ecv_attribute_category
 ,p_ecv_attribute1                          =>p_rec.ecv_attribute1
 ,p_ecv_attribute2                          =>p_rec.ecv_attribute2
 ,p_ecv_attribute3                          =>p_rec.ecv_attribute3
 ,p_ecv_attribute4                          =>p_rec.ecv_attribute4
 ,p_ecv_attribute5                          =>p_rec.ecv_attribute5
 ,p_ecv_attribute6                          =>p_rec.ecv_attribute6
 ,p_ecv_attribute7                          =>p_rec.ecv_attribute7
 ,p_ecv_attribute8                          =>p_rec.ecv_attribute8
 ,p_ecv_attribute9                          =>p_rec.ecv_attribute9
 ,p_ecv_attribute10                         =>p_rec.ecv_attribute10
 ,p_ecv_attribute11                         =>p_rec.ecv_attribute11
 ,p_ecv_attribute12                         =>p_rec.ecv_attribute12
 ,p_ecv_attribute13                         =>p_rec.ecv_attribute13
 ,p_ecv_attribute14                         =>p_rec.ecv_attribute14
 ,p_ecv_attribute15                         =>p_rec.ecv_attribute15
 ,p_ecv_attribute16                         =>p_rec.ecv_attribute16
 ,p_ecv_attribute17                         =>p_rec.ecv_attribute17
 ,p_ecv_attribute18                         =>p_rec.ecv_attribute18
 ,p_ecv_attribute19                         =>p_rec.ecv_attribute19
 ,p_ecv_attribute20                         =>p_rec.ecv_attribute20
 ,p_ecv_attribute21                         =>p_rec.ecv_attribute21
 ,p_ecv_attribute22                         =>p_rec.ecv_attribute22
 ,p_ecv_attribute23                         =>p_rec.ecv_attribute23
 ,p_ecv_attribute24                         =>p_rec.ecv_attribute24
 ,p_ecv_attribute25                         =>p_rec.ecv_attribute25
 ,p_ecv_attribute26                         =>p_rec.ecv_attribute26
 ,p_ecv_attribute27                         =>p_rec.ecv_attribute27
 ,p_ecv_attribute28                         =>p_rec.ecv_attribute28
 ,p_ecv_attribute29                         =>p_rec.ecv_attribute29
 ,p_ecv_attribute30                         =>p_rec.ecv_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_criteria_score                          =>p_rec.criteria_score
 ,p_criteria_weight                         =>p_rec.criteria_weight
 ,p_validation_end_date                     =>p_validation_end_date
 ,p_char_value3                             =>p_rec.char_value3
 ,p_char_value4  			    =>p_rec.char_value4
 ,p_number_value3			    =>p_rec.number_value3
 ,p_number_value4			    =>p_rec.number_value4
 ,p_date_value3				    =>p_rec.date_value3
 ,p_date_value4  			    =>p_rec.date_value4
 ,p_eligy_prfl_id_o                         =>ben_ecv_shd.g_old_rec.eligy_prfl_id
 ,p_eligy_criteria_id_o                     =>ben_ecv_shd.g_old_rec.eligy_criteria_id
 ,p_effective_start_date_o                  =>ben_ecv_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o                    =>ben_ecv_shd.g_old_rec.effective_end_date
 ,p_ordr_num_o                              =>ben_ecv_shd.g_old_rec.ordr_num
 ,p_number_value1_o                         =>ben_ecv_shd.g_old_rec.number_value1
 ,p_number_value2_o                         =>ben_ecv_shd.g_old_rec.number_value2
 ,p_char_value1_o                           =>ben_ecv_shd.g_old_rec.char_value1
 ,p_char_value2_o                           =>ben_ecv_shd.g_old_rec.char_value2
 ,p_date_value1_o                           =>ben_ecv_shd.g_old_rec.date_value1
 ,p_date_value2_o                           =>ben_ecv_shd.g_old_rec.date_value2
 ,p_excld_flag_o                            =>ben_ecv_shd.g_old_rec.excld_flag
 ,p_business_group_id_o                     =>ben_ecv_shd.g_old_rec.business_group_id
 ,p_legislation_code_o                      =>ben_ecv_shd.g_old_rec.legislation_code
 ,p_ecv_attribute_category_o                =>ben_ecv_shd.g_old_rec.ecv_attribute_category
 ,p_ecv_attribute1_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute1
 ,p_ecv_attribute2_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute2
 ,p_ecv_attribute3_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute3
 ,p_ecv_attribute4_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute4
 ,p_ecv_attribute5_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute5
 ,p_ecv_attribute6_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute6
 ,p_ecv_attribute7_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute7
 ,p_ecv_attribute8_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute8
 ,p_ecv_attribute9_o                        =>ben_ecv_shd.g_old_rec.ecv_attribute9
 ,p_ecv_attribute10_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute10
 ,p_ecv_attribute11_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute11
 ,p_ecv_attribute12_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute12
 ,p_ecv_attribute13_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute13
 ,p_ecv_attribute14_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute14
 ,p_ecv_attribute15_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute15
 ,p_ecv_attribute16_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute16
 ,p_ecv_attribute17_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute17
 ,p_ecv_attribute18_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute18
 ,p_ecv_attribute19_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute19
 ,p_ecv_attribute20_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute20
 ,p_ecv_attribute21_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute21
 ,p_ecv_attribute22_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute22
 ,p_ecv_attribute23_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute23
 ,p_ecv_attribute24_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute24
 ,p_ecv_attribute25_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute25
 ,p_ecv_attribute26_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute26
 ,p_ecv_attribute27_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute27
 ,p_ecv_attribute28_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute28
 ,p_ecv_attribute29_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute29
 ,p_ecv_attribute30_o                       =>ben_ecv_shd.g_old_rec.ecv_attribute30
 ,p_object_version_number_o                 =>ben_ecv_shd.g_old_rec.object_version_number
 ,p_criteria_score_o                        =>ben_ecv_shd.g_old_rec.criteria_score
 ,p_criteria_weight_o                       =>ben_ecv_shd.g_old_rec.criteria_weight
 ,p_char_value3_o                           =>ben_ecv_shd.g_old_rec.char_value3
 ,p_char_value4_o  			    =>ben_ecv_shd.g_old_rec.char_value4
 ,p_number_value3_o			    =>ben_ecv_shd.g_old_rec.number_value3
 ,p_number_value4_o			    =>ben_ecv_shd.g_old_rec.number_value4
 ,p_date_value3_o			    =>ben_ecv_shd.g_old_rec.date_value3
 ,p_date_value4_o  			    =>ben_ecv_shd.g_old_rec.date_value4
  );
Line: 557

End post_update;
Line: 809

  ben_ecv_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: 818

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

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

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