DBA Data[Home] [Help]

APPS.BEN_EPN_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_epn_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_PRBTN_PERD_PRTE_f
    set
        ELIG_PRBTN_PERD_PRTE_id          = p_rec.ELIG_PRBTN_PERD_PRTE_id,
    excld_flag                      = p_rec.excld_flag,
    ordr_num                        = p_rec.ordr_num,
    PROBATION_PERIOD                = p_rec.PROBATION_PERIOD,
    probation_unit                  = p_rec.probation_unit,
    eligy_prfl_id                   = p_rec.eligy_prfl_id,
    business_group_id               = p_rec.business_group_id,
    epn_attribute_category          = p_rec.epn_attribute_category,
    epn_attribute1                  = p_rec.epn_attribute1,
    epn_attribute2                  = p_rec.epn_attribute2,
    epn_attribute3                  = p_rec.epn_attribute3,
    epn_attribute4                  = p_rec.epn_attribute4,
    epn_attribute5                  = p_rec.epn_attribute5,
    epn_attribute6                  = p_rec.epn_attribute6,
    epn_attribute7                  = p_rec.epn_attribute7,
    epn_attribute8                  = p_rec.epn_attribute8,
    epn_attribute9                  = p_rec.epn_attribute9,
    epn_attribute10                 = p_rec.epn_attribute10,
    epn_attribute11                 = p_rec.epn_attribute11,
    epn_attribute12                 = p_rec.epn_attribute12,
    epn_attribute13                 = p_rec.epn_attribute13,
    epn_attribute14                 = p_rec.epn_attribute14,
    epn_attribute15                 = p_rec.epn_attribute15,
    epn_attribute16                 = p_rec.epn_attribute16,
    epn_attribute17                 = p_rec.epn_attribute17,
    epn_attribute18                 = p_rec.epn_attribute18,
    epn_attribute19                 = p_rec.epn_attribute19,
    epn_attribute20                 = p_rec.epn_attribute20,
    epn_attribute21                 = p_rec.epn_attribute21,
    epn_attribute22                 = p_rec.epn_attribute22,
    epn_attribute23                 = p_rec.epn_attribute23,
    epn_attribute24                 = p_rec.epn_attribute24,
    epn_attribute25                 = p_rec.epn_attribute25,
    epn_attribute26                 = p_rec.epn_attribute26,
    epn_attribute27                 = p_rec.epn_attribute27,
    epn_attribute28                 = p_rec.epn_attribute28,
    epn_attribute29                 = p_rec.epn_attribute29,
    epn_attribute30                 = p_rec.epn_attribute30,
    object_version_number           = p_rec.object_version_number ,
    criteria_score                  = p_rec.criteria_score,
    criteria_weight                 = p_rec.criteria_weight
    where   ELIG_PRBTN_PERD_PRTE_id = p_rec.ELIG_PRBTN_PERD_PRTE_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 155

End dt_update_dml;
Line: 188

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

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

End update_dml;
Line: 252

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

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

      ben_epn_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: 294

    ben_epn_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: 302

End dt_pre_update;
Line: 337

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

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

End pre_update;
Line: 393

Procedure post_update
	(p_rec 			 in ben_epn_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: 410

    ben_epn_rku.after_update
      (
  p_ELIG_PRBTN_PERD_PRTE_id        =>p_rec.ELIG_PRBTN_PERD_PRTE_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_PROBATION_PERIOD              =>p_rec.PROBATION_PERIOD
 ,p_probation_unit                =>p_rec.probation_unit
 ,p_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_epn_attribute_category        =>p_rec.epn_attribute_category
 ,p_epn_attribute1                =>p_rec.epn_attribute1
 ,p_epn_attribute2                =>p_rec.epn_attribute2
 ,p_epn_attribute3                =>p_rec.epn_attribute3
 ,p_epn_attribute4                =>p_rec.epn_attribute4
 ,p_epn_attribute5                =>p_rec.epn_attribute5
 ,p_epn_attribute6                =>p_rec.epn_attribute6
 ,p_epn_attribute7                =>p_rec.epn_attribute7
 ,p_epn_attribute8                =>p_rec.epn_attribute8
 ,p_epn_attribute9                =>p_rec.epn_attribute9
 ,p_epn_attribute10               =>p_rec.epn_attribute10
 ,p_epn_attribute11               =>p_rec.epn_attribute11
 ,p_epn_attribute12               =>p_rec.epn_attribute12
 ,p_epn_attribute13               =>p_rec.epn_attribute13
 ,p_epn_attribute14               =>p_rec.epn_attribute14
 ,p_epn_attribute15               =>p_rec.epn_attribute15
 ,p_epn_attribute16               =>p_rec.epn_attribute16
 ,p_epn_attribute17               =>p_rec.epn_attribute17
 ,p_epn_attribute18               =>p_rec.epn_attribute18
 ,p_epn_attribute19               =>p_rec.epn_attribute19
 ,p_epn_attribute20               =>p_rec.epn_attribute20
 ,p_epn_attribute21               =>p_rec.epn_attribute21
 ,p_epn_attribute22               =>p_rec.epn_attribute22
 ,p_epn_attribute23               =>p_rec.epn_attribute23
 ,p_epn_attribute24               =>p_rec.epn_attribute24
 ,p_epn_attribute25               =>p_rec.epn_attribute25
 ,p_epn_attribute26               =>p_rec.epn_attribute26
 ,p_epn_attribute27               =>p_rec.epn_attribute27
 ,p_epn_attribute28               =>p_rec.epn_attribute28
 ,p_epn_attribute29               =>p_rec.epn_attribute29
 ,p_epn_attribute30               =>p_rec.epn_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_epn_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_epn_shd.g_old_rec.effective_end_date
 ,p_excld_flag_o                  =>ben_epn_shd.g_old_rec.excld_flag
 ,p_ordr_num_o                    =>ben_epn_shd.g_old_rec.ordr_num
 ,p_PROBATION_PERIOD_o            =>ben_epn_shd.g_old_rec.PROBATION_PERIOD
 ,p_probation_unit_o              =>ben_epn_shd.g_old_rec.probation_unit
 ,p_eligy_prfl_id_o               =>ben_epn_shd.g_old_rec.eligy_prfl_id
 ,p_business_group_id_o           =>ben_epn_shd.g_old_rec.business_group_id
 ,p_epn_attribute_category_o      =>ben_epn_shd.g_old_rec.epn_attribute_category
 ,p_epn_attribute1_o              =>ben_epn_shd.g_old_rec.epn_attribute1
 ,p_epn_attribute2_o              =>ben_epn_shd.g_old_rec.epn_attribute2
 ,p_epn_attribute3_o              =>ben_epn_shd.g_old_rec.epn_attribute3
 ,p_epn_attribute4_o              =>ben_epn_shd.g_old_rec.epn_attribute4
 ,p_epn_attribute5_o              =>ben_epn_shd.g_old_rec.epn_attribute5
 ,p_epn_attribute6_o              =>ben_epn_shd.g_old_rec.epn_attribute6
 ,p_epn_attribute7_o              =>ben_epn_shd.g_old_rec.epn_attribute7
 ,p_epn_attribute8_o              =>ben_epn_shd.g_old_rec.epn_attribute8
 ,p_epn_attribute9_o              =>ben_epn_shd.g_old_rec.epn_attribute9
 ,p_epn_attribute10_o             =>ben_epn_shd.g_old_rec.epn_attribute10
 ,p_epn_attribute11_o             =>ben_epn_shd.g_old_rec.epn_attribute11
 ,p_epn_attribute12_o             =>ben_epn_shd.g_old_rec.epn_attribute12
 ,p_epn_attribute13_o             =>ben_epn_shd.g_old_rec.epn_attribute13
 ,p_epn_attribute14_o             =>ben_epn_shd.g_old_rec.epn_attribute14
 ,p_epn_attribute15_o             =>ben_epn_shd.g_old_rec.epn_attribute15
 ,p_epn_attribute16_o             =>ben_epn_shd.g_old_rec.epn_attribute16
 ,p_epn_attribute17_o             =>ben_epn_shd.g_old_rec.epn_attribute17
 ,p_epn_attribute18_o             =>ben_epn_shd.g_old_rec.epn_attribute18
 ,p_epn_attribute19_o             =>ben_epn_shd.g_old_rec.epn_attribute19
 ,p_epn_attribute20_o             =>ben_epn_shd.g_old_rec.epn_attribute20
 ,p_epn_attribute21_o             =>ben_epn_shd.g_old_rec.epn_attribute21
 ,p_epn_attribute22_o             =>ben_epn_shd.g_old_rec.epn_attribute22
 ,p_epn_attribute23_o             =>ben_epn_shd.g_old_rec.epn_attribute23
 ,p_epn_attribute24_o             =>ben_epn_shd.g_old_rec.epn_attribute24
 ,p_epn_attribute25_o             =>ben_epn_shd.g_old_rec.epn_attribute25
 ,p_epn_attribute26_o             =>ben_epn_shd.g_old_rec.epn_attribute26
 ,p_epn_attribute27_o             =>ben_epn_shd.g_old_rec.epn_attribute27
 ,p_epn_attribute28_o             =>ben_epn_shd.g_old_rec.epn_attribute28
 ,p_epn_attribute29_o             =>ben_epn_shd.g_old_rec.epn_attribute29
 ,p_epn_attribute30_o             =>ben_epn_shd.g_old_rec.epn_attribute30
 ,p_object_version_number_o       =>ben_epn_shd.g_old_rec.object_version_number
 ,p_criteria_score_o              =>ben_epn_shd.g_old_rec.criteria_score
 ,p_criteria_weight_o             =>ben_epn_shd.g_old_rec.criteria_weight
      );
Line: 517

End post_update;
Line: 775

  ben_epn_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: 784

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

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

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