DBA Data[Home] [Help]

APPS.BEN_WCT_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_wct_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_wv_prtn_rsn_ctfn_ptip_f
    set
        wv_prtn_rsn_ctfn_ptip_id        = p_rec.wv_prtn_rsn_ctfn_ptip_id,
    wv_prtn_ctfn_cd                 = p_rec.wv_prtn_ctfn_cd,
    wv_prtn_rsn_ptip_id             = p_rec.wv_prtn_rsn_ptip_id,
    lack_ctfn_sspnd_wvr_flag        = p_rec.lack_ctfn_sspnd_wvr_flag,
    rqd_flag                        = p_rec.rqd_flag,
    ctfn_rqd_when_rl                = p_rec.ctfn_rqd_when_rl,
    pfd_flag                        = p_rec.pfd_flag,
    wv_prtn_ctfn_typ_cd             = p_rec.wv_prtn_ctfn_typ_cd,
    business_group_id               = p_rec.business_group_id,
    wct_attribute_category          = p_rec.wct_attribute_category,
    wct_attribute1                  = p_rec.wct_attribute1,
    wct_attribute2                  = p_rec.wct_attribute2,
    wct_attribute3                  = p_rec.wct_attribute3,
    wct_attribute4                  = p_rec.wct_attribute4,
    wct_attribute5                  = p_rec.wct_attribute5,
    wct_attribute6                  = p_rec.wct_attribute6,
    wct_attribute7                  = p_rec.wct_attribute7,
    wct_attribute8                  = p_rec.wct_attribute8,
    wct_attribute9                  = p_rec.wct_attribute9,
    wct_attribute10                 = p_rec.wct_attribute10,
    wct_attribute11                 = p_rec.wct_attribute11,
    wct_attribute12                 = p_rec.wct_attribute12,
    wct_attribute13                 = p_rec.wct_attribute13,
    wct_attribute14                 = p_rec.wct_attribute14,
    wct_attribute15                 = p_rec.wct_attribute15,
    wct_attribute16                 = p_rec.wct_attribute16,
    wct_attribute17                 = p_rec.wct_attribute17,
    wct_attribute18                 = p_rec.wct_attribute18,
    wct_attribute19                 = p_rec.wct_attribute19,
    wct_attribute20                 = p_rec.wct_attribute20,
    wct_attribute21                 = p_rec.wct_attribute21,
    wct_attribute22                 = p_rec.wct_attribute22,
    wct_attribute23                 = p_rec.wct_attribute23,
    wct_attribute24                 = p_rec.wct_attribute24,
    wct_attribute25                 = p_rec.wct_attribute25,
    wct_attribute26                 = p_rec.wct_attribute26,
    wct_attribute27                 = p_rec.wct_attribute27,
    wct_attribute28                 = p_rec.wct_attribute28,
    wct_attribute29                 = p_rec.wct_attribute29,
    wct_attribute30                 = p_rec.wct_attribute30,
    object_version_number           = p_rec.object_version_number
    where   wv_prtn_rsn_ctfn_ptip_id = p_rec.wv_prtn_rsn_ctfn_ptip_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_wct_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_wct_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_wct_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_wct_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_wct_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_wct_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_wct_rku.after_update
      (
  p_wv_prtn_rsn_ctfn_ptip_id      =>p_rec.wv_prtn_rsn_ctfn_ptip_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_wv_prtn_ctfn_cd               =>p_rec.wv_prtn_ctfn_cd
 ,p_wv_prtn_rsn_ptip_id           =>p_rec.wv_prtn_rsn_ptip_id
 ,p_lack_ctfn_sspnd_wvr_flag      =>p_rec.lack_ctfn_sspnd_wvr_flag
 ,p_rqd_flag                      =>p_rec.rqd_flag
 ,p_ctfn_rqd_when_rl              =>p_rec.ctfn_rqd_when_rl
 ,p_pfd_flag                      =>p_rec.pfd_flag
 ,p_wv_prtn_ctfn_typ_cd           =>p_rec.wv_prtn_ctfn_typ_cd
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_wct_attribute_category        =>p_rec.wct_attribute_category
 ,p_wct_attribute1                =>p_rec.wct_attribute1
 ,p_wct_attribute2                =>p_rec.wct_attribute2
 ,p_wct_attribute3                =>p_rec.wct_attribute3
 ,p_wct_attribute4                =>p_rec.wct_attribute4
 ,p_wct_attribute5                =>p_rec.wct_attribute5
 ,p_wct_attribute6                =>p_rec.wct_attribute6
 ,p_wct_attribute7                =>p_rec.wct_attribute7
 ,p_wct_attribute8                =>p_rec.wct_attribute8
 ,p_wct_attribute9                =>p_rec.wct_attribute9
 ,p_wct_attribute10               =>p_rec.wct_attribute10
 ,p_wct_attribute11               =>p_rec.wct_attribute11
 ,p_wct_attribute12               =>p_rec.wct_attribute12
 ,p_wct_attribute13               =>p_rec.wct_attribute13
 ,p_wct_attribute14               =>p_rec.wct_attribute14
 ,p_wct_attribute15               =>p_rec.wct_attribute15
 ,p_wct_attribute16               =>p_rec.wct_attribute16
 ,p_wct_attribute17               =>p_rec.wct_attribute17
 ,p_wct_attribute18               =>p_rec.wct_attribute18
 ,p_wct_attribute19               =>p_rec.wct_attribute19
 ,p_wct_attribute20               =>p_rec.wct_attribute20
 ,p_wct_attribute21               =>p_rec.wct_attribute21
 ,p_wct_attribute22               =>p_rec.wct_attribute22
 ,p_wct_attribute23               =>p_rec.wct_attribute23
 ,p_wct_attribute24               =>p_rec.wct_attribute24
 ,p_wct_attribute25               =>p_rec.wct_attribute25
 ,p_wct_attribute26               =>p_rec.wct_attribute26
 ,p_wct_attribute27               =>p_rec.wct_attribute27
 ,p_wct_attribute28               =>p_rec.wct_attribute28
 ,p_wct_attribute29               =>p_rec.wct_attribute29
 ,p_wct_attribute30               =>p_rec.wct_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_wct_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_wct_shd.g_old_rec.effective_end_date
 ,p_wv_prtn_ctfn_cd_o             =>ben_wct_shd.g_old_rec.wv_prtn_ctfn_cd
 ,p_wv_prtn_rsn_ptip_id_o         =>ben_wct_shd.g_old_rec.wv_prtn_rsn_ptip_id
 ,p_lack_ctfn_sspnd_wvr_flag_o    =>ben_wct_shd.g_old_rec.lack_ctfn_sspnd_wvr_flag
 ,p_rqd_flag_o                    =>ben_wct_shd.g_old_rec.rqd_flag
 ,p_ctfn_rqd_when_rl_o            =>ben_wct_shd.g_old_rec.ctfn_rqd_when_rl
 ,p_pfd_flag_o                    =>ben_wct_shd.g_old_rec.pfd_flag
 ,p_wv_prtn_ctfn_typ_cd_o         =>ben_wct_shd.g_old_rec.wv_prtn_ctfn_typ_cd
 ,p_business_group_id_o           =>ben_wct_shd.g_old_rec.business_group_id
 ,p_wct_attribute_category_o      =>ben_wct_shd.g_old_rec.wct_attribute_category
 ,p_wct_attribute1_o              =>ben_wct_shd.g_old_rec.wct_attribute1
 ,p_wct_attribute2_o              =>ben_wct_shd.g_old_rec.wct_attribute2
 ,p_wct_attribute3_o              =>ben_wct_shd.g_old_rec.wct_attribute3
 ,p_wct_attribute4_o              =>ben_wct_shd.g_old_rec.wct_attribute4
 ,p_wct_attribute5_o              =>ben_wct_shd.g_old_rec.wct_attribute5
 ,p_wct_attribute6_o              =>ben_wct_shd.g_old_rec.wct_attribute6
 ,p_wct_attribute7_o              =>ben_wct_shd.g_old_rec.wct_attribute7
 ,p_wct_attribute8_o              =>ben_wct_shd.g_old_rec.wct_attribute8
 ,p_wct_attribute9_o              =>ben_wct_shd.g_old_rec.wct_attribute9
 ,p_wct_attribute10_o             =>ben_wct_shd.g_old_rec.wct_attribute10
 ,p_wct_attribute11_o             =>ben_wct_shd.g_old_rec.wct_attribute11
 ,p_wct_attribute12_o             =>ben_wct_shd.g_old_rec.wct_attribute12
 ,p_wct_attribute13_o             =>ben_wct_shd.g_old_rec.wct_attribute13
 ,p_wct_attribute14_o             =>ben_wct_shd.g_old_rec.wct_attribute14
 ,p_wct_attribute15_o             =>ben_wct_shd.g_old_rec.wct_attribute15
 ,p_wct_attribute16_o             =>ben_wct_shd.g_old_rec.wct_attribute16
 ,p_wct_attribute17_o             =>ben_wct_shd.g_old_rec.wct_attribute17
 ,p_wct_attribute18_o             =>ben_wct_shd.g_old_rec.wct_attribute18
 ,p_wct_attribute19_o             =>ben_wct_shd.g_old_rec.wct_attribute19
 ,p_wct_attribute20_o             =>ben_wct_shd.g_old_rec.wct_attribute20
 ,p_wct_attribute21_o             =>ben_wct_shd.g_old_rec.wct_attribute21
 ,p_wct_attribute22_o             =>ben_wct_shd.g_old_rec.wct_attribute22
 ,p_wct_attribute23_o             =>ben_wct_shd.g_old_rec.wct_attribute23
 ,p_wct_attribute24_o             =>ben_wct_shd.g_old_rec.wct_attribute24
 ,p_wct_attribute25_o             =>ben_wct_shd.g_old_rec.wct_attribute25
 ,p_wct_attribute26_o             =>ben_wct_shd.g_old_rec.wct_attribute26
 ,p_wct_attribute27_o             =>ben_wct_shd.g_old_rec.wct_attribute27
 ,p_wct_attribute28_o             =>ben_wct_shd.g_old_rec.wct_attribute28
 ,p_wct_attribute29_o             =>ben_wct_shd.g_old_rec.wct_attribute29
 ,p_wct_attribute30_o             =>ben_wct_shd.g_old_rec.wct_attribute30
 ,p_object_version_number_o       =>ben_wct_shd.g_old_rec.object_version_number
      );
Line: 517

End post_update;
Line: 775

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