DBA Data[Home] [Help]

APPS.BEN_DCR_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_dcr_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_cvg_rqd_rlshp_f
    set
        dpnt_cvg_rqd_rlshp_id           = p_rec.dpnt_cvg_rqd_rlshp_id,
    business_group_id               = p_rec.business_group_id,
    per_relshp_typ_cd               = p_rec.per_relshp_typ_cd,
    cvg_strt_dt_cd                  = p_rec.cvg_strt_dt_cd,
    cvg_thru_dt_rl                  = p_rec.cvg_thru_dt_rl,
    cvg_thru_dt_cd                  = p_rec.cvg_thru_dt_cd,
    cvg_strt_dt_rl                  = p_rec.cvg_strt_dt_rl,
    dpnt_cvg_eligy_prfl_id          = p_rec.dpnt_cvg_eligy_prfl_id,
    dcr_attribute_category          = p_rec.dcr_attribute_category,
    dcr_attribute1                  = p_rec.dcr_attribute1,
    dcr_attribute2                  = p_rec.dcr_attribute2,
    dcr_attribute3                  = p_rec.dcr_attribute3,
    dcr_attribute4                  = p_rec.dcr_attribute4,
    dcr_attribute5                  = p_rec.dcr_attribute5,
    dcr_attribute6                  = p_rec.dcr_attribute6,
    dcr_attribute7                  = p_rec.dcr_attribute7,
    dcr_attribute8                  = p_rec.dcr_attribute8,
    dcr_attribute9                  = p_rec.dcr_attribute9,
    dcr_attribute10                 = p_rec.dcr_attribute10,
    dcr_attribute11                 = p_rec.dcr_attribute11,
    dcr_attribute12                 = p_rec.dcr_attribute12,
    dcr_attribute13                 = p_rec.dcr_attribute13,
    dcr_attribute14                 = p_rec.dcr_attribute14,
    dcr_attribute15                 = p_rec.dcr_attribute15,
    dcr_attribute16                 = p_rec.dcr_attribute16,
    dcr_attribute17                 = p_rec.dcr_attribute17,
    dcr_attribute18                 = p_rec.dcr_attribute18,
    dcr_attribute19                 = p_rec.dcr_attribute19,
    dcr_attribute20                 = p_rec.dcr_attribute20,
    dcr_attribute21                 = p_rec.dcr_attribute21,
    dcr_attribute22                 = p_rec.dcr_attribute22,
    dcr_attribute23                 = p_rec.dcr_attribute23,
    dcr_attribute24                 = p_rec.dcr_attribute24,
    dcr_attribute25                 = p_rec.dcr_attribute25,
    dcr_attribute26                 = p_rec.dcr_attribute26,
    dcr_attribute27                 = p_rec.dcr_attribute27,
    dcr_attribute28                 = p_rec.dcr_attribute28,
    dcr_attribute29                 = p_rec.dcr_attribute29,
    dcr_attribute30                 = p_rec.dcr_attribute30,
    object_version_number           = p_rec.object_version_number
    where   dpnt_cvg_rqd_rlshp_id = p_rec.dpnt_cvg_rqd_rlshp_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_dcr_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_dcr_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_dcr_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_dcr_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_dcr_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_dcr_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_dcr_rku.after_update
      (
  p_dpnt_cvg_rqd_rlshp_id         =>p_rec.dpnt_cvg_rqd_rlshp_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_per_relshp_typ_cd             =>p_rec.per_relshp_typ_cd
 ,p_cvg_strt_dt_cd                =>p_rec.cvg_strt_dt_cd
 ,p_cvg_thru_dt_rl                =>p_rec.cvg_thru_dt_rl
 ,p_cvg_thru_dt_cd                =>p_rec.cvg_thru_dt_cd
 ,p_cvg_strt_dt_rl                =>p_rec.cvg_strt_dt_rl
 ,p_dpnt_cvg_eligy_prfl_id        =>p_rec.dpnt_cvg_eligy_prfl_id
 ,p_dcr_attribute_category        =>p_rec.dcr_attribute_category
 ,p_dcr_attribute1                =>p_rec.dcr_attribute1
 ,p_dcr_attribute2                =>p_rec.dcr_attribute2
 ,p_dcr_attribute3                =>p_rec.dcr_attribute3
 ,p_dcr_attribute4                =>p_rec.dcr_attribute4
 ,p_dcr_attribute5                =>p_rec.dcr_attribute5
 ,p_dcr_attribute6                =>p_rec.dcr_attribute6
 ,p_dcr_attribute7                =>p_rec.dcr_attribute7
 ,p_dcr_attribute8                =>p_rec.dcr_attribute8
 ,p_dcr_attribute9                =>p_rec.dcr_attribute9
 ,p_dcr_attribute10               =>p_rec.dcr_attribute10
 ,p_dcr_attribute11               =>p_rec.dcr_attribute11
 ,p_dcr_attribute12               =>p_rec.dcr_attribute12
 ,p_dcr_attribute13               =>p_rec.dcr_attribute13
 ,p_dcr_attribute14               =>p_rec.dcr_attribute14
 ,p_dcr_attribute15               =>p_rec.dcr_attribute15
 ,p_dcr_attribute16               =>p_rec.dcr_attribute16
 ,p_dcr_attribute17               =>p_rec.dcr_attribute17
 ,p_dcr_attribute18               =>p_rec.dcr_attribute18
 ,p_dcr_attribute19               =>p_rec.dcr_attribute19
 ,p_dcr_attribute20               =>p_rec.dcr_attribute20
 ,p_dcr_attribute21               =>p_rec.dcr_attribute21
 ,p_dcr_attribute22               =>p_rec.dcr_attribute22
 ,p_dcr_attribute23               =>p_rec.dcr_attribute23
 ,p_dcr_attribute24               =>p_rec.dcr_attribute24
 ,p_dcr_attribute25               =>p_rec.dcr_attribute25
 ,p_dcr_attribute26               =>p_rec.dcr_attribute26
 ,p_dcr_attribute27               =>p_rec.dcr_attribute27
 ,p_dcr_attribute28               =>p_rec.dcr_attribute28
 ,p_dcr_attribute29               =>p_rec.dcr_attribute29
 ,p_dcr_attribute30               =>p_rec.dcr_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_dcr_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_dcr_shd.g_old_rec.effective_end_date
 ,p_business_group_id_o           =>ben_dcr_shd.g_old_rec.business_group_id
 ,p_per_relshp_typ_cd_o           =>ben_dcr_shd.g_old_rec.per_relshp_typ_cd
 ,p_cvg_strt_dt_cd_o              =>ben_dcr_shd.g_old_rec.cvg_strt_dt_cd
 ,p_cvg_thru_dt_rl_o              =>ben_dcr_shd.g_old_rec.cvg_thru_dt_rl
 ,p_cvg_thru_dt_cd_o              =>ben_dcr_shd.g_old_rec.cvg_thru_dt_cd
 ,p_cvg_strt_dt_rl_o              =>ben_dcr_shd.g_old_rec.cvg_strt_dt_rl
 ,p_dpnt_cvg_eligy_prfl_id_o      =>ben_dcr_shd.g_old_rec.dpnt_cvg_eligy_prfl_id
 ,p_dcr_attribute_category_o      =>ben_dcr_shd.g_old_rec.dcr_attribute_category
 ,p_dcr_attribute1_o              =>ben_dcr_shd.g_old_rec.dcr_attribute1
 ,p_dcr_attribute2_o              =>ben_dcr_shd.g_old_rec.dcr_attribute2
 ,p_dcr_attribute3_o              =>ben_dcr_shd.g_old_rec.dcr_attribute3
 ,p_dcr_attribute4_o              =>ben_dcr_shd.g_old_rec.dcr_attribute4
 ,p_dcr_attribute5_o              =>ben_dcr_shd.g_old_rec.dcr_attribute5
 ,p_dcr_attribute6_o              =>ben_dcr_shd.g_old_rec.dcr_attribute6
 ,p_dcr_attribute7_o              =>ben_dcr_shd.g_old_rec.dcr_attribute7
 ,p_dcr_attribute8_o              =>ben_dcr_shd.g_old_rec.dcr_attribute8
 ,p_dcr_attribute9_o              =>ben_dcr_shd.g_old_rec.dcr_attribute9
 ,p_dcr_attribute10_o             =>ben_dcr_shd.g_old_rec.dcr_attribute10
 ,p_dcr_attribute11_o             =>ben_dcr_shd.g_old_rec.dcr_attribute11
 ,p_dcr_attribute12_o             =>ben_dcr_shd.g_old_rec.dcr_attribute12
 ,p_dcr_attribute13_o             =>ben_dcr_shd.g_old_rec.dcr_attribute13
 ,p_dcr_attribute14_o             =>ben_dcr_shd.g_old_rec.dcr_attribute14
 ,p_dcr_attribute15_o             =>ben_dcr_shd.g_old_rec.dcr_attribute15
 ,p_dcr_attribute16_o             =>ben_dcr_shd.g_old_rec.dcr_attribute16
 ,p_dcr_attribute17_o             =>ben_dcr_shd.g_old_rec.dcr_attribute17
 ,p_dcr_attribute18_o             =>ben_dcr_shd.g_old_rec.dcr_attribute18
 ,p_dcr_attribute19_o             =>ben_dcr_shd.g_old_rec.dcr_attribute19
 ,p_dcr_attribute20_o             =>ben_dcr_shd.g_old_rec.dcr_attribute20
 ,p_dcr_attribute21_o             =>ben_dcr_shd.g_old_rec.dcr_attribute21
 ,p_dcr_attribute22_o             =>ben_dcr_shd.g_old_rec.dcr_attribute22
 ,p_dcr_attribute23_o             =>ben_dcr_shd.g_old_rec.dcr_attribute23
 ,p_dcr_attribute24_o             =>ben_dcr_shd.g_old_rec.dcr_attribute24
 ,p_dcr_attribute25_o             =>ben_dcr_shd.g_old_rec.dcr_attribute25
 ,p_dcr_attribute26_o             =>ben_dcr_shd.g_old_rec.dcr_attribute26
 ,p_dcr_attribute27_o             =>ben_dcr_shd.g_old_rec.dcr_attribute27
 ,p_dcr_attribute28_o             =>ben_dcr_shd.g_old_rec.dcr_attribute28
 ,p_dcr_attribute29_o             =>ben_dcr_shd.g_old_rec.dcr_attribute29
 ,p_dcr_attribute30_o             =>ben_dcr_shd.g_old_rec.dcr_attribute30
 ,p_object_version_number_o       =>ben_dcr_shd.g_old_rec.object_version_number
      );
Line: 514

End post_update;
Line: 768

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