DBA Data[Home] [Help]

APPS.BEN_EWL_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_ewl_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_elig_wk_loc_prte_f
    set
        elig_wk_loc_prte_id             = p_rec.elig_wk_loc_prte_id,
    business_group_id               = p_rec.business_group_id,
    ordr_num                        = p_rec.ordr_num,
    location_id                     = p_rec.location_id,
    eligy_prfl_id                   = p_rec.eligy_prfl_id,
    excld_flag                      = p_rec.excld_flag,
    ewl_attribute_category          = p_rec.ewl_attribute_category,
    ewl_attribute1                  = p_rec.ewl_attribute1,
    ewl_attribute2                  = p_rec.ewl_attribute2,
    ewl_attribute3                  = p_rec.ewl_attribute3,
    ewl_attribute4                  = p_rec.ewl_attribute4,
    ewl_attribute5                  = p_rec.ewl_attribute5,
    ewl_attribute6                  = p_rec.ewl_attribute6,
    ewl_attribute7                  = p_rec.ewl_attribute7,
    ewl_attribute8                  = p_rec.ewl_attribute8,
    ewl_attribute9                  = p_rec.ewl_attribute9,
    ewl_attribute10                 = p_rec.ewl_attribute10,
    ewl_attribute11                 = p_rec.ewl_attribute11,
    ewl_attribute12                 = p_rec.ewl_attribute12,
    ewl_attribute13                 = p_rec.ewl_attribute13,
    ewl_attribute14                 = p_rec.ewl_attribute14,
    ewl_attribute15                 = p_rec.ewl_attribute15,
    ewl_attribute16                 = p_rec.ewl_attribute16,
    ewl_attribute17                 = p_rec.ewl_attribute17,
    ewl_attribute18                 = p_rec.ewl_attribute18,
    ewl_attribute19                 = p_rec.ewl_attribute19,
    ewl_attribute20                 = p_rec.ewl_attribute20,
    ewl_attribute21                 = p_rec.ewl_attribute21,
    ewl_attribute22                 = p_rec.ewl_attribute22,
    ewl_attribute23                 = p_rec.ewl_attribute23,
    ewl_attribute24                 = p_rec.ewl_attribute24,
    ewl_attribute25                 = p_rec.ewl_attribute25,
    ewl_attribute26                 = p_rec.ewl_attribute26,
    ewl_attribute27                 = p_rec.ewl_attribute27,
    ewl_attribute28                 = p_rec.ewl_attribute28,
    ewl_attribute29                 = p_rec.ewl_attribute29,
    ewl_attribute30                 = p_rec.ewl_attribute30,
    object_version_number           = p_rec.object_version_number ,
    criteria_score                  = p_rec.criteria_score,
    criteria_weight                 = p_rec.criteria_weight
    where   elig_wk_loc_prte_id = p_rec.elig_wk_loc_prte_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 154

End dt_update_dml;
Line: 187

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

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

End update_dml;
Line: 251

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

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

      ben_ewl_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: 293

    ben_ewl_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: 301

End dt_pre_update;
Line: 336

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

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

End pre_update;
Line: 392

Procedure post_update
	(p_rec 			 in ben_ewl_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: 409

    ben_ewl_rku.after_update
      (
  p_elig_wk_loc_prte_id           =>p_rec.elig_wk_loc_prte_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_location_id                   =>p_rec.location_id
 ,p_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_ewl_attribute_category        =>p_rec.ewl_attribute_category
 ,p_ewl_attribute1                =>p_rec.ewl_attribute1
 ,p_ewl_attribute2                =>p_rec.ewl_attribute2
 ,p_ewl_attribute3                =>p_rec.ewl_attribute3
 ,p_ewl_attribute4                =>p_rec.ewl_attribute4
 ,p_ewl_attribute5                =>p_rec.ewl_attribute5
 ,p_ewl_attribute6                =>p_rec.ewl_attribute6
 ,p_ewl_attribute7                =>p_rec.ewl_attribute7
 ,p_ewl_attribute8                =>p_rec.ewl_attribute8
 ,p_ewl_attribute9                =>p_rec.ewl_attribute9
 ,p_ewl_attribute10               =>p_rec.ewl_attribute10
 ,p_ewl_attribute11               =>p_rec.ewl_attribute11
 ,p_ewl_attribute12               =>p_rec.ewl_attribute12
 ,p_ewl_attribute13               =>p_rec.ewl_attribute13
 ,p_ewl_attribute14               =>p_rec.ewl_attribute14
 ,p_ewl_attribute15               =>p_rec.ewl_attribute15
 ,p_ewl_attribute16               =>p_rec.ewl_attribute16
 ,p_ewl_attribute17               =>p_rec.ewl_attribute17
 ,p_ewl_attribute18               =>p_rec.ewl_attribute18
 ,p_ewl_attribute19               =>p_rec.ewl_attribute19
 ,p_ewl_attribute20               =>p_rec.ewl_attribute20
 ,p_ewl_attribute21               =>p_rec.ewl_attribute21
 ,p_ewl_attribute22               =>p_rec.ewl_attribute22
 ,p_ewl_attribute23               =>p_rec.ewl_attribute23
 ,p_ewl_attribute24               =>p_rec.ewl_attribute24
 ,p_ewl_attribute25               =>p_rec.ewl_attribute25
 ,p_ewl_attribute26               =>p_rec.ewl_attribute26
 ,p_ewl_attribute27               =>p_rec.ewl_attribute27
 ,p_ewl_attribute28               =>p_rec.ewl_attribute28
 ,p_ewl_attribute29               =>p_rec.ewl_attribute29
 ,p_ewl_attribute30               =>p_rec.ewl_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_criteria_score                =>p_rec.criteria_score
 ,p_criteria_weight               =>p_rec.criteria_weight
 ,p_effective_start_date_o        =>ben_ewl_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_ewl_shd.g_old_rec.effective_end_date
 ,p_business_group_id_o           =>ben_ewl_shd.g_old_rec.business_group_id
 ,p_ordr_num_o                    =>ben_ewl_shd.g_old_rec.ordr_num
 ,p_location_id_o                 =>ben_ewl_shd.g_old_rec.location_id
 ,p_eligy_prfl_id_o               =>ben_ewl_shd.g_old_rec.eligy_prfl_id
 ,p_excld_flag_o                  =>ben_ewl_shd.g_old_rec.excld_flag
 ,p_ewl_attribute_category_o      =>ben_ewl_shd.g_old_rec.ewl_attribute_category
 ,p_ewl_attribute1_o              =>ben_ewl_shd.g_old_rec.ewl_attribute1
 ,p_ewl_attribute2_o              =>ben_ewl_shd.g_old_rec.ewl_attribute2
 ,p_ewl_attribute3_o              =>ben_ewl_shd.g_old_rec.ewl_attribute3
 ,p_ewl_attribute4_o              =>ben_ewl_shd.g_old_rec.ewl_attribute4
 ,p_ewl_attribute5_o              =>ben_ewl_shd.g_old_rec.ewl_attribute5
 ,p_ewl_attribute6_o              =>ben_ewl_shd.g_old_rec.ewl_attribute6
 ,p_ewl_attribute7_o              =>ben_ewl_shd.g_old_rec.ewl_attribute7
 ,p_ewl_attribute8_o              =>ben_ewl_shd.g_old_rec.ewl_attribute8
 ,p_ewl_attribute9_o              =>ben_ewl_shd.g_old_rec.ewl_attribute9
 ,p_ewl_attribute10_o             =>ben_ewl_shd.g_old_rec.ewl_attribute10
 ,p_ewl_attribute11_o             =>ben_ewl_shd.g_old_rec.ewl_attribute11
 ,p_ewl_attribute12_o             =>ben_ewl_shd.g_old_rec.ewl_attribute12
 ,p_ewl_attribute13_o             =>ben_ewl_shd.g_old_rec.ewl_attribute13
 ,p_ewl_attribute14_o             =>ben_ewl_shd.g_old_rec.ewl_attribute14
 ,p_ewl_attribute15_o             =>ben_ewl_shd.g_old_rec.ewl_attribute15
 ,p_ewl_attribute16_o             =>ben_ewl_shd.g_old_rec.ewl_attribute16
 ,p_ewl_attribute17_o             =>ben_ewl_shd.g_old_rec.ewl_attribute17
 ,p_ewl_attribute18_o             =>ben_ewl_shd.g_old_rec.ewl_attribute18
 ,p_ewl_attribute19_o             =>ben_ewl_shd.g_old_rec.ewl_attribute19
 ,p_ewl_attribute20_o             =>ben_ewl_shd.g_old_rec.ewl_attribute20
 ,p_ewl_attribute21_o             =>ben_ewl_shd.g_old_rec.ewl_attribute21
 ,p_ewl_attribute22_o             =>ben_ewl_shd.g_old_rec.ewl_attribute22
 ,p_ewl_attribute23_o             =>ben_ewl_shd.g_old_rec.ewl_attribute23
 ,p_ewl_attribute24_o             =>ben_ewl_shd.g_old_rec.ewl_attribute24
 ,p_ewl_attribute25_o             =>ben_ewl_shd.g_old_rec.ewl_attribute25
 ,p_ewl_attribute26_o             =>ben_ewl_shd.g_old_rec.ewl_attribute26
 ,p_ewl_attribute27_o             =>ben_ewl_shd.g_old_rec.ewl_attribute27
 ,p_ewl_attribute28_o             =>ben_ewl_shd.g_old_rec.ewl_attribute28
 ,p_ewl_attribute29_o             =>ben_ewl_shd.g_old_rec.ewl_attribute29
 ,p_ewl_attribute30_o             =>ben_ewl_shd.g_old_rec.ewl_attribute30
 ,p_object_version_number_o       =>ben_ewl_shd.g_old_rec.object_version_number
 ,p_criteria_score_o              =>ben_ewl_shd.g_old_rec.criteria_score
 ,p_criteria_weight_o             =>ben_ewl_shd.g_old_rec.criteria_weight
      );
Line: 514

End post_update;
Line: 768

  ben_ewl_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: 777

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

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

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