DBA Data[Home] [Help]

APPS.BEN_EDR_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_edr_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_dsblty_rsn_prte_f
    set
        elig_dsblty_rsn_prte_id            = p_rec.elig_dsblty_rsn_prte_id,
    business_group_id               = p_rec.business_group_id,
    eligy_prfl_id                   = p_rec.eligy_prfl_id,
    reason                      = p_rec.reason,
    ordr_num                        = p_rec.ordr_num,
    excld_flag                      = p_rec.excld_flag,
    edr_attribute_category          = p_rec.edr_attribute_category,
    edr_attribute1                  = p_rec.edr_attribute1,
    edr_attribute2                  = p_rec.edr_attribute2,
    edr_attribute3                  = p_rec.edr_attribute3,
    edr_attribute4                  = p_rec.edr_attribute4,
    edr_attribute5                  = p_rec.edr_attribute5,
    edr_attribute6                  = p_rec.edr_attribute6,
    edr_attribute7                  = p_rec.edr_attribute7,
    edr_attribute8                  = p_rec.edr_attribute8,
    edr_attribute9                  = p_rec.edr_attribute9,
    edr_attribute10                 = p_rec.edr_attribute10,
    edr_attribute11                 = p_rec.edr_attribute11,
    edr_attribute12                 = p_rec.edr_attribute12,
    edr_attribute13                 = p_rec.edr_attribute13,
    edr_attribute14                 = p_rec.edr_attribute14,
    edr_attribute15                 = p_rec.edr_attribute15,
    edr_attribute16                 = p_rec.edr_attribute16,
    edr_attribute17                 = p_rec.edr_attribute17,
    edr_attribute18                 = p_rec.edr_attribute18,
    edr_attribute19                 = p_rec.edr_attribute19,
    edr_attribute20                 = p_rec.edr_attribute20,
    edr_attribute21                 = p_rec.edr_attribute21,
    edr_attribute22                 = p_rec.edr_attribute22,
    edr_attribute23                 = p_rec.edr_attribute23,
    edr_attribute24                 = p_rec.edr_attribute24,
    edr_attribute25                 = p_rec.edr_attribute25,
    edr_attribute26                 = p_rec.edr_attribute26,
    edr_attribute27                 = p_rec.edr_attribute27,
    edr_attribute28                 = p_rec.edr_attribute28,
    edr_attribute29                 = p_rec.edr_attribute29,
    edr_attribute30                 = p_rec.edr_attribute30,
    object_version_number           = p_rec.object_version_number ,
    criteria_score                  = p_rec.criteria_score,
    criteria_weight                 = p_rec.criteria_weight
    where   elig_dsblty_rsn_prte_id = p_rec.elig_dsblty_rsn_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_edr_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_edr_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_edr_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_edr_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_edr_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_edr_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_edr_rku.after_update
      (
  p_elig_dsblty_rsn_prte_id          =>p_rec.elig_dsblty_rsn_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_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_reason                    =>p_rec.reason
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_edr_attribute_category        =>p_rec.edr_attribute_category
 ,p_edr_attribute1                =>p_rec.edr_attribute1
 ,p_edr_attribute2                =>p_rec.edr_attribute2
 ,p_edr_attribute3                =>p_rec.edr_attribute3
 ,p_edr_attribute4                =>p_rec.edr_attribute4
 ,p_edr_attribute5                =>p_rec.edr_attribute5
 ,p_edr_attribute6                =>p_rec.edr_attribute6
 ,p_edr_attribute7                =>p_rec.edr_attribute7
 ,p_edr_attribute8                =>p_rec.edr_attribute8
 ,p_edr_attribute9                =>p_rec.edr_attribute9
 ,p_edr_attribute10               =>p_rec.edr_attribute10
 ,p_edr_attribute11               =>p_rec.edr_attribute11
 ,p_edr_attribute12               =>p_rec.edr_attribute12
 ,p_edr_attribute13               =>p_rec.edr_attribute13
 ,p_edr_attribute14               =>p_rec.edr_attribute14
 ,p_edr_attribute15               =>p_rec.edr_attribute15
 ,p_edr_attribute16               =>p_rec.edr_attribute16
 ,p_edr_attribute17               =>p_rec.edr_attribute17
 ,p_edr_attribute18               =>p_rec.edr_attribute18
 ,p_edr_attribute19               =>p_rec.edr_attribute19
 ,p_edr_attribute20               =>p_rec.edr_attribute20
 ,p_edr_attribute21               =>p_rec.edr_attribute21
 ,p_edr_attribute22               =>p_rec.edr_attribute22
 ,p_edr_attribute23               =>p_rec.edr_attribute23
 ,p_edr_attribute24               =>p_rec.edr_attribute24
 ,p_edr_attribute25               =>p_rec.edr_attribute25
 ,p_edr_attribute26               =>p_rec.edr_attribute26
 ,p_edr_attribute27               =>p_rec.edr_attribute27
 ,p_edr_attribute28               =>p_rec.edr_attribute28
 ,p_edr_attribute29               =>p_rec.edr_attribute29
 ,p_edr_attribute30               =>p_rec.edr_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_edr_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_edr_shd.g_old_rec.effective_end_date
 ,p_business_group_id_o           =>ben_edr_shd.g_old_rec.business_group_id
 ,p_eligy_prfl_id_o               =>ben_edr_shd.g_old_rec.eligy_prfl_id
 ,p_reason_o                  =>ben_edr_shd.g_old_rec.reason
 ,p_ordr_num_o                    =>ben_edr_shd.g_old_rec.ordr_num
 ,p_excld_flag_o                  =>ben_edr_shd.g_old_rec.excld_flag
 ,p_edr_attribute_category_o      =>ben_edr_shd.g_old_rec.edr_attribute_category
 ,p_edr_attribute1_o              =>ben_edr_shd.g_old_rec.edr_attribute1
 ,p_edr_attribute2_o              =>ben_edr_shd.g_old_rec.edr_attribute2
 ,p_edr_attribute3_o              =>ben_edr_shd.g_old_rec.edr_attribute3
 ,p_edr_attribute4_o              =>ben_edr_shd.g_old_rec.edr_attribute4
 ,p_edr_attribute5_o              =>ben_edr_shd.g_old_rec.edr_attribute5
 ,p_edr_attribute6_o              =>ben_edr_shd.g_old_rec.edr_attribute6
 ,p_edr_attribute7_o              =>ben_edr_shd.g_old_rec.edr_attribute7
 ,p_edr_attribute8_o              =>ben_edr_shd.g_old_rec.edr_attribute8
 ,p_edr_attribute9_o              =>ben_edr_shd.g_old_rec.edr_attribute9
 ,p_edr_attribute10_o             =>ben_edr_shd.g_old_rec.edr_attribute10
 ,p_edr_attribute11_o             =>ben_edr_shd.g_old_rec.edr_attribute11
 ,p_edr_attribute12_o             =>ben_edr_shd.g_old_rec.edr_attribute12
 ,p_edr_attribute13_o             =>ben_edr_shd.g_old_rec.edr_attribute13
 ,p_edr_attribute14_o             =>ben_edr_shd.g_old_rec.edr_attribute14
 ,p_edr_attribute15_o             =>ben_edr_shd.g_old_rec.edr_attribute15
 ,p_edr_attribute16_o             =>ben_edr_shd.g_old_rec.edr_attribute16
 ,p_edr_attribute17_o             =>ben_edr_shd.g_old_rec.edr_attribute17
 ,p_edr_attribute18_o             =>ben_edr_shd.g_old_rec.edr_attribute18
 ,p_edr_attribute19_o             =>ben_edr_shd.g_old_rec.edr_attribute19
 ,p_edr_attribute20_o             =>ben_edr_shd.g_old_rec.edr_attribute20
 ,p_edr_attribute21_o             =>ben_edr_shd.g_old_rec.edr_attribute21
 ,p_edr_attribute22_o             =>ben_edr_shd.g_old_rec.edr_attribute22
 ,p_edr_attribute23_o             =>ben_edr_shd.g_old_rec.edr_attribute23
 ,p_edr_attribute24_o             =>ben_edr_shd.g_old_rec.edr_attribute24
 ,p_edr_attribute25_o             =>ben_edr_shd.g_old_rec.edr_attribute25
 ,p_edr_attribute26_o             =>ben_edr_shd.g_old_rec.edr_attribute26
 ,p_edr_attribute27_o             =>ben_edr_shd.g_old_rec.edr_attribute27
 ,p_edr_attribute28_o             =>ben_edr_shd.g_old_rec.edr_attribute28
 ,p_edr_attribute29_o             =>ben_edr_shd.g_old_rec.edr_attribute29
 ,p_edr_attribute30_o             =>ben_edr_shd.g_old_rec.edr_attribute30
 ,p_object_version_number_o       =>ben_edr_shd.g_old_rec.object_version_number
 ,p_criteria_score_o              =>ben_edr_shd.g_old_rec.criteria_score
 ,p_criteria_weight_o             =>ben_edr_shd.g_old_rec.criteria_weight
      );
Line: 514

End post_update;
Line: 768

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