DBA Data[Home] [Help]

APPS.BEN_PYD_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_pyd_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_ptip_dpnt_cvg_ctfn_f
    set
    ptip_dpnt_cvg_ctfn_id           = p_rec.ptip_dpnt_cvg_ctfn_id,
    business_group_id               = p_rec.business_group_id,
    ptip_id                         = p_rec.ptip_id,
    pfd_flag                        = p_rec.pfd_flag,
    lack_ctfn_sspnd_enrt_flag       = p_rec.lack_ctfn_sspnd_enrt_flag,
    ctfn_rqd_when_rl                = p_rec.ctfn_rqd_when_rl,
    dpnt_cvg_ctfn_typ_cd            = p_rec.dpnt_cvg_ctfn_typ_cd,
    rlshp_typ_cd                    = p_rec.rlshp_typ_cd,
    rqd_flag                        = p_rec.rqd_flag,
    pyd_attribute_category          = p_rec.pyd_attribute_category,
    pyd_attribute1                  = p_rec.pyd_attribute1,
    pyd_attribute2                  = p_rec.pyd_attribute2,
    pyd_attribute3                  = p_rec.pyd_attribute3,
    pyd_attribute4                  = p_rec.pyd_attribute4,
    pyd_attribute5                  = p_rec.pyd_attribute5,
    pyd_attribute6                  = p_rec.pyd_attribute6,
    pyd_attribute7                  = p_rec.pyd_attribute7,
    pyd_attribute8                  = p_rec.pyd_attribute8,
    pyd_attribute9                  = p_rec.pyd_attribute9,
    pyd_attribute10                 = p_rec.pyd_attribute10,
    pyd_attribute11                 = p_rec.pyd_attribute11,
    pyd_attribute12                 = p_rec.pyd_attribute12,
    pyd_attribute13                 = p_rec.pyd_attribute13,
    pyd_attribute14                 = p_rec.pyd_attribute14,
    pyd_attribute15                 = p_rec.pyd_attribute15,
    pyd_attribute16                 = p_rec.pyd_attribute16,
    pyd_attribute17                 = p_rec.pyd_attribute17,
    pyd_attribute18                 = p_rec.pyd_attribute18,
    pyd_attribute19                 = p_rec.pyd_attribute19,
    pyd_attribute20                 = p_rec.pyd_attribute20,
    pyd_attribute21                 = p_rec.pyd_attribute21,
    pyd_attribute22                 = p_rec.pyd_attribute22,
    pyd_attribute23                 = p_rec.pyd_attribute23,
    pyd_attribute24                 = p_rec.pyd_attribute24,
    pyd_attribute25                 = p_rec.pyd_attribute25,
    pyd_attribute26                 = p_rec.pyd_attribute26,
    pyd_attribute27                 = p_rec.pyd_attribute27,
    pyd_attribute28                 = p_rec.pyd_attribute28,
    pyd_attribute29                 = p_rec.pyd_attribute29,
    pyd_attribute30                 = p_rec.pyd_attribute30,
    object_version_number           = p_rec.object_version_number
    where   ptip_dpnt_cvg_ctfn_id = p_rec.ptip_dpnt_cvg_ctfn_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_pyd_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_pyd_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_pyd_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_pyd_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_pyd_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_pyd_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_pyd_rku.after_update
      (
  p_ptip_dpnt_cvg_ctfn_id         =>p_rec.ptip_dpnt_cvg_ctfn_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_ptip_id                       =>p_rec.ptip_id
 ,p_pfd_flag                      =>p_rec.pfd_flag
 ,p_lack_ctfn_sspnd_enrt_flag     =>p_rec.lack_ctfn_sspnd_enrt_flag
 ,p_ctfn_rqd_when_rl              =>p_rec.ctfn_rqd_when_rl
 ,p_dpnt_cvg_ctfn_typ_cd          =>p_rec.dpnt_cvg_ctfn_typ_cd
 ,p_rlshp_typ_cd                  =>p_rec.rlshp_typ_cd
 ,p_rqd_flag                      =>p_rec.rqd_flag
 ,p_pyd_attribute_category        =>p_rec.pyd_attribute_category
 ,p_pyd_attribute1                =>p_rec.pyd_attribute1
 ,p_pyd_attribute2                =>p_rec.pyd_attribute2
 ,p_pyd_attribute3                =>p_rec.pyd_attribute3
 ,p_pyd_attribute4                =>p_rec.pyd_attribute4
 ,p_pyd_attribute5                =>p_rec.pyd_attribute5
 ,p_pyd_attribute6                =>p_rec.pyd_attribute6
 ,p_pyd_attribute7                =>p_rec.pyd_attribute7
 ,p_pyd_attribute8                =>p_rec.pyd_attribute8
 ,p_pyd_attribute9                =>p_rec.pyd_attribute9
 ,p_pyd_attribute10               =>p_rec.pyd_attribute10
 ,p_pyd_attribute11               =>p_rec.pyd_attribute11
 ,p_pyd_attribute12               =>p_rec.pyd_attribute12
 ,p_pyd_attribute13               =>p_rec.pyd_attribute13
 ,p_pyd_attribute14               =>p_rec.pyd_attribute14
 ,p_pyd_attribute15               =>p_rec.pyd_attribute15
 ,p_pyd_attribute16               =>p_rec.pyd_attribute16
 ,p_pyd_attribute17               =>p_rec.pyd_attribute17
 ,p_pyd_attribute18               =>p_rec.pyd_attribute18
 ,p_pyd_attribute19               =>p_rec.pyd_attribute19
 ,p_pyd_attribute20               =>p_rec.pyd_attribute20
 ,p_pyd_attribute21               =>p_rec.pyd_attribute21
 ,p_pyd_attribute22               =>p_rec.pyd_attribute22
 ,p_pyd_attribute23               =>p_rec.pyd_attribute23
 ,p_pyd_attribute24               =>p_rec.pyd_attribute24
 ,p_pyd_attribute25               =>p_rec.pyd_attribute25
 ,p_pyd_attribute26               =>p_rec.pyd_attribute26
 ,p_pyd_attribute27               =>p_rec.pyd_attribute27
 ,p_pyd_attribute28               =>p_rec.pyd_attribute28
 ,p_pyd_attribute29               =>p_rec.pyd_attribute29
 ,p_pyd_attribute30               =>p_rec.pyd_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_pyd_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_pyd_shd.g_old_rec.effective_end_date
 ,p_business_group_id_o           =>ben_pyd_shd.g_old_rec.business_group_id
 ,p_ptip_id_o                     =>ben_pyd_shd.g_old_rec.ptip_id
 ,p_pfd_flag_o                    =>ben_pyd_shd.g_old_rec.pfd_flag
 ,p_lack_ctfn_sspnd_enrt_flag_o   =>
                            ben_pyd_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
 ,p_ctfn_rqd_when_rl_o            =>ben_pyd_shd.g_old_rec.ctfn_rqd_when_rl
 ,p_dpnt_cvg_ctfn_typ_cd_o        =>ben_pyd_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
 ,p_rlshp_typ_cd_o                =>ben_pyd_shd.g_old_rec.rlshp_typ_cd
 ,p_rqd_flag_o                    =>ben_pyd_shd.g_old_rec.rqd_flag
 ,p_pyd_attribute_category_o     =>ben_pyd_shd.g_old_rec.pyd_attribute_category
 ,p_pyd_attribute1_o              =>ben_pyd_shd.g_old_rec.pyd_attribute1
 ,p_pyd_attribute2_o              =>ben_pyd_shd.g_old_rec.pyd_attribute2
 ,p_pyd_attribute3_o              =>ben_pyd_shd.g_old_rec.pyd_attribute3
 ,p_pyd_attribute4_o              =>ben_pyd_shd.g_old_rec.pyd_attribute4
 ,p_pyd_attribute5_o              =>ben_pyd_shd.g_old_rec.pyd_attribute5
 ,p_pyd_attribute6_o              =>ben_pyd_shd.g_old_rec.pyd_attribute6
 ,p_pyd_attribute7_o              =>ben_pyd_shd.g_old_rec.pyd_attribute7
 ,p_pyd_attribute8_o              =>ben_pyd_shd.g_old_rec.pyd_attribute8
 ,p_pyd_attribute9_o              =>ben_pyd_shd.g_old_rec.pyd_attribute9
 ,p_pyd_attribute10_o             =>ben_pyd_shd.g_old_rec.pyd_attribute10
 ,p_pyd_attribute11_o             =>ben_pyd_shd.g_old_rec.pyd_attribute11
 ,p_pyd_attribute12_o             =>ben_pyd_shd.g_old_rec.pyd_attribute12
 ,p_pyd_attribute13_o             =>ben_pyd_shd.g_old_rec.pyd_attribute13
 ,p_pyd_attribute14_o             =>ben_pyd_shd.g_old_rec.pyd_attribute14
 ,p_pyd_attribute15_o             =>ben_pyd_shd.g_old_rec.pyd_attribute15
 ,p_pyd_attribute16_o             =>ben_pyd_shd.g_old_rec.pyd_attribute16
 ,p_pyd_attribute17_o             =>ben_pyd_shd.g_old_rec.pyd_attribute17
 ,p_pyd_attribute18_o             =>ben_pyd_shd.g_old_rec.pyd_attribute18
 ,p_pyd_attribute19_o             =>ben_pyd_shd.g_old_rec.pyd_attribute19
 ,p_pyd_attribute20_o             =>ben_pyd_shd.g_old_rec.pyd_attribute20
 ,p_pyd_attribute21_o             =>ben_pyd_shd.g_old_rec.pyd_attribute21
 ,p_pyd_attribute22_o             =>ben_pyd_shd.g_old_rec.pyd_attribute22
 ,p_pyd_attribute23_o             =>ben_pyd_shd.g_old_rec.pyd_attribute23
 ,p_pyd_attribute24_o             =>ben_pyd_shd.g_old_rec.pyd_attribute24
 ,p_pyd_attribute25_o             =>ben_pyd_shd.g_old_rec.pyd_attribute25
 ,p_pyd_attribute26_o             =>ben_pyd_shd.g_old_rec.pyd_attribute26
 ,p_pyd_attribute27_o             =>ben_pyd_shd.g_old_rec.pyd_attribute27
 ,p_pyd_attribute28_o             =>ben_pyd_shd.g_old_rec.pyd_attribute28
 ,p_pyd_attribute29_o             =>ben_pyd_shd.g_old_rec.pyd_attribute29
 ,p_pyd_attribute30_o             =>ben_pyd_shd.g_old_rec.pyd_attribute30
 ,p_object_version_number_o       =>ben_pyd_shd.g_old_rec.object_version_number
      );
Line: 518

End post_update;
Line: 776

  ben_pyd_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: 785

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

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

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