DBA Data[Home] [Help]

APPS.BEN_DPNT_EDC_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_dpnt_edc_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_dpnt_eligy_crit_values_f
  set
    dpnt_eligy_crit_values_id                	    =  p_rec.dpnt_eligy_crit_values_id,
    dpnt_cvg_eligy_prfl_id                            	=  p_rec.dpnt_cvg_eligy_prfl_id,
    eligy_criteria_dpnt_id                       	=  p_rec.eligy_criteria_dpnt_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,
	edc_attribute_category                  	=  p_rec.edc_attribute_category,
	edc_attribute1                          	=  p_rec.edc_attribute1,
	edc_attribute2                          	=  p_rec.edc_attribute2,
	edc_attribute3                          	=  p_rec.edc_attribute3,
	edc_attribute4                          	=  p_rec.edc_attribute4,
	edc_attribute5                          	=  p_rec.edc_attribute5,
	edc_attribute6                          	=  p_rec.edc_attribute6,
	edc_attribute7                          	=  p_rec.edc_attribute7,
	edc_attribute8                          	=  p_rec.edc_attribute8,
	edc_attribute9                          	=  p_rec.edc_attribute9,
	edc_attribute10                         	=  p_rec.edc_attribute10,
	edc_attribute11                         	=  p_rec.edc_attribute11,
	edc_attribute12                         	=  p_rec.edc_attribute12,
	edc_attribute13                         	=  p_rec.edc_attribute13,
	edc_attribute14                         	=  p_rec.edc_attribute14,
	edc_attribute15                         	=  p_rec.edc_attribute15,
	edc_attribute16                         	=  p_rec.edc_attribute16,
	edc_attribute17                         	=  p_rec.edc_attribute17,
	edc_attribute18                         	=  p_rec.edc_attribute18,
	edc_attribute19                         	=  p_rec.edc_attribute19,
	edc_attribute20                         	=  p_rec.edc_attribute20,
	edc_attribute21                         	=  p_rec.edc_attribute21,
	edc_attribute22                         	=  p_rec.edc_attribute22,
	edc_attribute23                         	=  p_rec.edc_attribute23,
	edc_attribute24                         	=  p_rec.edc_attribute24,
	edc_attribute25                         	=  p_rec.edc_attribute25,
	edc_attribute26                         	=  p_rec.edc_attribute26,
	edc_attribute27                         	=  p_rec.edc_attribute27,
	edc_attribute28                         	=  p_rec.edc_attribute28,
	edc_attribute29                         	=  p_rec.edc_attribute29,
	edc_attribute30                         	=  p_rec.edc_attribute30,
	object_version_number                   	=  p_rec.object_version_number,
        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 dpnt_eligy_crit_values_id = p_rec.dpnt_eligy_crit_values_id
	 and  effective_start_date = p_validation_start_date
	 and  effective_end_date   = p_validation_end_date;
Line: 167

End dt_update_dml;
Line: 200

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

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

End update_dml;
Line: 264

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

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

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

    ben_dpnt_edc_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: 314

End dt_pre_update;
Line: 349

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

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

End pre_update;
Line: 405

Procedure post_update
	(p_rec 			 in ben_dpnt_edc_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: 422

      ben_dpnt_edc_rku.after_update
      (
        p_dpnt_eligy_crit_values_id              =>p_rec.dpnt_eligy_crit_values_id
 ,p_dpnt_cvg_eligy_prfl_id                           =>p_rec.dpnt_cvg_eligy_prfl_id
 ,p_eligy_criteria_dpnt_id                       =>p_rec.eligy_criteria_dpnt_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_edc_attribute_category                  =>p_rec.edc_attribute_category
 ,p_edc_attribute1                          =>p_rec.edc_attribute1
 ,p_edc_attribute2                          =>p_rec.edc_attribute2
 ,p_edc_attribute3                          =>p_rec.edc_attribute3
 ,p_edc_attribute4                          =>p_rec.edc_attribute4
 ,p_edc_attribute5                          =>p_rec.edc_attribute5
 ,p_edc_attribute6                          =>p_rec.edc_attribute6
 ,p_edc_attribute7                          =>p_rec.edc_attribute7
 ,p_edc_attribute8                          =>p_rec.edc_attribute8
 ,p_edc_attribute9                          =>p_rec.edc_attribute9
 ,p_edc_attribute10                         =>p_rec.edc_attribute10
 ,p_edc_attribute11                         =>p_rec.edc_attribute11
 ,p_edc_attribute12                         =>p_rec.edc_attribute12
 ,p_edc_attribute13                         =>p_rec.edc_attribute13
 ,p_edc_attribute14                         =>p_rec.edc_attribute14
 ,p_edc_attribute15                         =>p_rec.edc_attribute15
 ,p_edc_attribute16                         =>p_rec.edc_attribute16
 ,p_edc_attribute17                         =>p_rec.edc_attribute17
 ,p_edc_attribute18                         =>p_rec.edc_attribute18
 ,p_edc_attribute19                         =>p_rec.edc_attribute19
 ,p_edc_attribute20                         =>p_rec.edc_attribute20
 ,p_edc_attribute21                         =>p_rec.edc_attribute21
 ,p_edc_attribute22                         =>p_rec.edc_attribute22
 ,p_edc_attribute23                         =>p_rec.edc_attribute23
 ,p_edc_attribute24                         =>p_rec.edc_attribute24
 ,p_edc_attribute25                         =>p_rec.edc_attribute25
 ,p_edc_attribute26                         =>p_rec.edc_attribute26
 ,p_edc_attribute27                         =>p_rec.edc_attribute27
 ,p_edc_attribute28                         =>p_rec.edc_attribute28
 ,p_edc_attribute29                         =>p_rec.edc_attribute29
 ,p_edc_attribute30                         =>p_rec.edc_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_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_dpnt_cvg_eligy_prfl_id_o                         =>ben_dpnt_edc_shd.g_old_rec.dpnt_cvg_eligy_prfl_id
 ,p_eligy_criteria_dpnt_id_o                     =>ben_dpnt_edc_shd.g_old_rec.eligy_criteria_dpnt_id
 ,p_effective_start_date_o                  =>ben_dpnt_edc_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o                    =>ben_dpnt_edc_shd.g_old_rec.effective_end_date
 ,p_ordr_num_o                              =>ben_dpnt_edc_shd.g_old_rec.ordr_num
 ,p_number_value1_o                         =>ben_dpnt_edc_shd.g_old_rec.number_value1
 ,p_number_value2_o                         =>ben_dpnt_edc_shd.g_old_rec.number_value2
 ,p_char_value1_o                           =>ben_dpnt_edc_shd.g_old_rec.char_value1
 ,p_char_value2_o                           =>ben_dpnt_edc_shd.g_old_rec.char_value2
 ,p_date_value1_o                           =>ben_dpnt_edc_shd.g_old_rec.date_value1
 ,p_date_value2_o                           =>ben_dpnt_edc_shd.g_old_rec.date_value2
 ,p_excld_flag_o                            =>ben_dpnt_edc_shd.g_old_rec.excld_flag
 ,p_business_group_id_o                     =>ben_dpnt_edc_shd.g_old_rec.business_group_id
 ,p_edc_attribute_category_o                =>ben_dpnt_edc_shd.g_old_rec.edc_attribute_category
 ,p_edc_attribute1_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute1
 ,p_edc_attribute2_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute2
 ,p_edc_attribute3_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute3
 ,p_edc_attribute4_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute4
 ,p_edc_attribute5_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute5
 ,p_edc_attribute6_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute6
 ,p_edc_attribute7_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute7
 ,p_edc_attribute8_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute8
 ,p_edc_attribute9_o                        =>ben_dpnt_edc_shd.g_old_rec.edc_attribute9
 ,p_edc_attribute10_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute10
 ,p_edc_attribute11_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute11
 ,p_edc_attribute12_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute12
 ,p_edc_attribute13_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute13
 ,p_edc_attribute14_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute14
 ,p_edc_attribute15_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute15
 ,p_edc_attribute16_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute16
 ,p_edc_attribute17_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute17
 ,p_edc_attribute18_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute18
 ,p_edc_attribute19_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute19
 ,p_edc_attribute20_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute20
 ,p_edc_attribute21_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute21
 ,p_edc_attribute22_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute22
 ,p_edc_attribute23_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute23
 ,p_edc_attribute24_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute24
 ,p_edc_attribute25_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute25
 ,p_edc_attribute26_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute26
 ,p_edc_attribute27_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute27
 ,p_edc_attribute28_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute28
 ,p_edc_attribute29_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute29
 ,p_edc_attribute30_o                       =>ben_dpnt_edc_shd.g_old_rec.edc_attribute30
 ,p_object_version_number_o                 =>ben_dpnt_edc_shd.g_old_rec.object_version_number
 ,p_char_value3_o                           =>ben_dpnt_edc_shd.g_old_rec.char_value3
 ,p_char_value4_o  			    =>ben_dpnt_edc_shd.g_old_rec.char_value4
 ,p_number_value3_o			    =>ben_dpnt_edc_shd.g_old_rec.number_value3
 ,p_number_value4_o			    =>ben_dpnt_edc_shd.g_old_rec.number_value4
 ,p_date_value3_o			    =>ben_dpnt_edc_shd.g_old_rec.date_value3
 ,p_date_value4_o  			    =>ben_dpnt_edc_shd.g_old_rec.date_value4
  );
Line: 548

End post_update;
Line: 791

  ben_dpnt_edc_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: 800

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

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

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