DBA Data[Home] [Help]

APPS.BEN_EHC_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_ehc_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_HLTH_CVG_PRTE_f
    set
    ELIG_HLTH_CVG_PRTE_id           = p_rec.ELIG_HLTH_CVG_PRTE_id,
    excld_flag                      = p_rec.excld_flag,
    ordr_num                        = p_rec.ordr_num,
    pl_typ_opt_typ_id               = p_rec.pl_typ_opt_typ_id,
    oipl_id                         = p_rec.oipl_id,
    eligy_prfl_id                   = p_rec.eligy_prfl_id,
    business_group_id               = p_rec.business_group_id,
    ehc_attribute_category          = p_rec.ehc_attribute_category,
    ehc_attribute1                  = p_rec.ehc_attribute1,
    ehc_attribute2                  = p_rec.ehc_attribute2,
    ehc_attribute3                  = p_rec.ehc_attribute3,
    ehc_attribute4                  = p_rec.ehc_attribute4,
    ehc_attribute5                  = p_rec.ehc_attribute5,
    ehc_attribute6                  = p_rec.ehc_attribute6,
    ehc_attribute7                  = p_rec.ehc_attribute7,
    ehc_attribute8                  = p_rec.ehc_attribute8,
    ehc_attribute9                  = p_rec.ehc_attribute9,
    ehc_attribute10                 = p_rec.ehc_attribute10,
    ehc_attribute11                 = p_rec.ehc_attribute11,
    ehc_attribute12                 = p_rec.ehc_attribute12,
    ehc_attribute13                 = p_rec.ehc_attribute13,
    ehc_attribute14                 = p_rec.ehc_attribute14,
    ehc_attribute15                 = p_rec.ehc_attribute15,
    ehc_attribute16                 = p_rec.ehc_attribute16,
    ehc_attribute17                 = p_rec.ehc_attribute17,
    ehc_attribute18                 = p_rec.ehc_attribute18,
    ehc_attribute19                 = p_rec.ehc_attribute19,
    ehc_attribute20                 = p_rec.ehc_attribute20,
    ehc_attribute21                 = p_rec.ehc_attribute21,
    ehc_attribute22                 = p_rec.ehc_attribute22,
    ehc_attribute23                 = p_rec.ehc_attribute23,
    ehc_attribute24                 = p_rec.ehc_attribute24,
    ehc_attribute25                 = p_rec.ehc_attribute25,
    ehc_attribute26                 = p_rec.ehc_attribute26,
    ehc_attribute27                 = p_rec.ehc_attribute27,
    ehc_attribute28                 = p_rec.ehc_attribute28,
    ehc_attribute29                 = p_rec.ehc_attribute29,
    ehc_attribute30                 = p_rec.ehc_attribute30,
    object_version_number           = p_rec.object_version_number
    where   ELIG_HLTH_CVG_PRTE_id = p_rec.ELIG_HLTH_CVG_PRTE_id
    and     effective_start_date  = p_validation_start_date
    and     effective_end_date    = p_validation_end_date;
Line: 153

End dt_update_dml;
Line: 186

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

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

End update_dml;
Line: 250

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

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

      ben_ehc_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: 292

    ben_ehc_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: 300

End dt_pre_update;
Line: 335

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

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

End pre_update;
Line: 391

Procedure post_update
	(p_rec 			 in ben_ehc_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: 408

    ben_ehc_rku.after_update
      (
  p_ELIG_HLTH_CVG_PRTE_id         =>p_rec.ELIG_HLTH_CVG_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_pl_typ_opt_typ_id             =>p_rec.pl_typ_opt_typ_id
 ,p_oipl_id                       =>p_rec.oipl_id
 ,p_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_ehc_attribute_category        =>p_rec.ehc_attribute_category
 ,p_ehc_attribute1                =>p_rec.ehc_attribute1
 ,p_ehc_attribute2                =>p_rec.ehc_attribute2
 ,p_ehc_attribute3                =>p_rec.ehc_attribute3
 ,p_ehc_attribute4                =>p_rec.ehc_attribute4
 ,p_ehc_attribute5                =>p_rec.ehc_attribute5
 ,p_ehc_attribute6                =>p_rec.ehc_attribute6
 ,p_ehc_attribute7                =>p_rec.ehc_attribute7
 ,p_ehc_attribute8                =>p_rec.ehc_attribute8
 ,p_ehc_attribute9                =>p_rec.ehc_attribute9
 ,p_ehc_attribute10               =>p_rec.ehc_attribute10
 ,p_ehc_attribute11               =>p_rec.ehc_attribute11
 ,p_ehc_attribute12               =>p_rec.ehc_attribute12
 ,p_ehc_attribute13               =>p_rec.ehc_attribute13
 ,p_ehc_attribute14               =>p_rec.ehc_attribute14
 ,p_ehc_attribute15               =>p_rec.ehc_attribute15
 ,p_ehc_attribute16               =>p_rec.ehc_attribute16
 ,p_ehc_attribute17               =>p_rec.ehc_attribute17
 ,p_ehc_attribute18               =>p_rec.ehc_attribute18
 ,p_ehc_attribute19               =>p_rec.ehc_attribute19
 ,p_ehc_attribute20               =>p_rec.ehc_attribute20
 ,p_ehc_attribute21               =>p_rec.ehc_attribute21
 ,p_ehc_attribute22               =>p_rec.ehc_attribute22
 ,p_ehc_attribute23               =>p_rec.ehc_attribute23
 ,p_ehc_attribute24               =>p_rec.ehc_attribute24
 ,p_ehc_attribute25               =>p_rec.ehc_attribute25
 ,p_ehc_attribute26               =>p_rec.ehc_attribute26
 ,p_ehc_attribute27               =>p_rec.ehc_attribute27
 ,p_ehc_attribute28               =>p_rec.ehc_attribute28
 ,p_ehc_attribute29               =>p_rec.ehc_attribute29
 ,p_ehc_attribute30               =>p_rec.ehc_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_effective_start_date_o        =>ben_ehc_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_ehc_shd.g_old_rec.effective_end_date
 ,p_excld_flag_o                  =>ben_ehc_shd.g_old_rec.excld_flag
 ,p_ordr_num_o                    =>ben_ehc_shd.g_old_rec.ordr_num
 ,p_pl_typ_opt_typ_id_o           =>ben_ehc_shd.g_old_rec.pl_typ_opt_typ_id
 ,p_oipl_id_o                     =>ben_ehc_shd.g_old_rec.oipl_id
 ,p_eligy_prfl_id_o               =>ben_ehc_shd.g_old_rec.eligy_prfl_id
 ,p_business_group_id_o           =>ben_ehc_shd.g_old_rec.business_group_id
 ,p_ehc_attribute_category_o      =>ben_ehc_shd.g_old_rec.ehc_attribute_category
 ,p_ehc_attribute1_o              =>ben_ehc_shd.g_old_rec.ehc_attribute1
 ,p_ehc_attribute2_o              =>ben_ehc_shd.g_old_rec.ehc_attribute2
 ,p_ehc_attribute3_o              =>ben_ehc_shd.g_old_rec.ehc_attribute3
 ,p_ehc_attribute4_o              =>ben_ehc_shd.g_old_rec.ehc_attribute4
 ,p_ehc_attribute5_o              =>ben_ehc_shd.g_old_rec.ehc_attribute5
 ,p_ehc_attribute6_o              =>ben_ehc_shd.g_old_rec.ehc_attribute6
 ,p_ehc_attribute7_o              =>ben_ehc_shd.g_old_rec.ehc_attribute7
 ,p_ehc_attribute8_o              =>ben_ehc_shd.g_old_rec.ehc_attribute8
 ,p_ehc_attribute9_o              =>ben_ehc_shd.g_old_rec.ehc_attribute9
 ,p_ehc_attribute10_o             =>ben_ehc_shd.g_old_rec.ehc_attribute10
 ,p_ehc_attribute11_o             =>ben_ehc_shd.g_old_rec.ehc_attribute11
 ,p_ehc_attribute12_o             =>ben_ehc_shd.g_old_rec.ehc_attribute12
 ,p_ehc_attribute13_o             =>ben_ehc_shd.g_old_rec.ehc_attribute13
 ,p_ehc_attribute14_o             =>ben_ehc_shd.g_old_rec.ehc_attribute14
 ,p_ehc_attribute15_o             =>ben_ehc_shd.g_old_rec.ehc_attribute15
 ,p_ehc_attribute16_o             =>ben_ehc_shd.g_old_rec.ehc_attribute16
 ,p_ehc_attribute17_o             =>ben_ehc_shd.g_old_rec.ehc_attribute17
 ,p_ehc_attribute18_o             =>ben_ehc_shd.g_old_rec.ehc_attribute18
 ,p_ehc_attribute19_o             =>ben_ehc_shd.g_old_rec.ehc_attribute19
 ,p_ehc_attribute20_o             =>ben_ehc_shd.g_old_rec.ehc_attribute20
 ,p_ehc_attribute21_o             =>ben_ehc_shd.g_old_rec.ehc_attribute21
 ,p_ehc_attribute22_o             =>ben_ehc_shd.g_old_rec.ehc_attribute22
 ,p_ehc_attribute23_o             =>ben_ehc_shd.g_old_rec.ehc_attribute23
 ,p_ehc_attribute24_o             =>ben_ehc_shd.g_old_rec.ehc_attribute24
 ,p_ehc_attribute25_o             =>ben_ehc_shd.g_old_rec.ehc_attribute25
 ,p_ehc_attribute26_o             =>ben_ehc_shd.g_old_rec.ehc_attribute26
 ,p_ehc_attribute27_o             =>ben_ehc_shd.g_old_rec.ehc_attribute27
 ,p_ehc_attribute28_o             =>ben_ehc_shd.g_old_rec.ehc_attribute28
 ,p_ehc_attribute29_o             =>ben_ehc_shd.g_old_rec.ehc_attribute29
 ,p_ehc_attribute30_o             =>ben_ehc_shd.g_old_rec.ehc_attribute30
 ,p_object_version_number_o       =>ben_ehc_shd.g_old_rec.object_version_number
      );
Line: 511

End post_update;
Line: 761

  ben_ehc_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: 770

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

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

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