DBA Data[Home] [Help]

APPS.BEN_PCX_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_pcx_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_pl_bnf_ctfn_f
    set
        pl_bnf_ctfn_id                  = p_rec.pl_bnf_ctfn_id,
    pl_id                           = p_rec.pl_id,
    bnf_ctfn_typ_cd                 = p_rec.bnf_ctfn_typ_cd,
    lack_ctfn_sspnd_enrt_flag       = p_rec.lack_ctfn_sspnd_enrt_flag,
    pfd_flag                        = p_rec.pfd_flag,
    rqd_flag                        = p_rec.rqd_flag,
    ctfn_rqd_when_rl                = p_rec.ctfn_rqd_when_rl,
    bnf_typ_cd                      = p_rec.bnf_typ_cd,
    rlshp_typ_cd                    = p_rec.rlshp_typ_cd,
    object_version_number           = p_rec.object_version_number,
    business_group_id               = p_rec.business_group_id,
    pcx_attribute_category          = p_rec.pcx_attribute_category,
    pcx_attribute1                  = p_rec.pcx_attribute1,
    pcx_attribute2                  = p_rec.pcx_attribute2,
    pcx_attribute3                  = p_rec.pcx_attribute3,
    pcx_attribute4                  = p_rec.pcx_attribute4,
    pcx_attribute5                  = p_rec.pcx_attribute5,
    pcx_attribute6                  = p_rec.pcx_attribute6,
    pcx_attribute7                  = p_rec.pcx_attribute7,
    pcx_attribute8                  = p_rec.pcx_attribute8,
    pcx_attribute9                  = p_rec.pcx_attribute9,
    pcx_attribute10                 = p_rec.pcx_attribute10,
    pcx_attribute11                 = p_rec.pcx_attribute11,
    pcx_attribute12                 = p_rec.pcx_attribute12,
    pcx_attribute13                 = p_rec.pcx_attribute13,
    pcx_attribute14                 = p_rec.pcx_attribute14,
    pcx_attribute15                 = p_rec.pcx_attribute15,
    pcx_attribute16                 = p_rec.pcx_attribute16,
    pcx_attribute17                 = p_rec.pcx_attribute17,
    pcx_attribute18                 = p_rec.pcx_attribute18,
    pcx_attribute19                 = p_rec.pcx_attribute19,
    pcx_attribute20                 = p_rec.pcx_attribute20,
    pcx_attribute21                 = p_rec.pcx_attribute21,
    pcx_attribute22                 = p_rec.pcx_attribute22,
    pcx_attribute23                 = p_rec.pcx_attribute23,
    pcx_attribute24                 = p_rec.pcx_attribute24,
    pcx_attribute25                 = p_rec.pcx_attribute25,
    pcx_attribute26                 = p_rec.pcx_attribute26,
    pcx_attribute27                 = p_rec.pcx_attribute27,
    pcx_attribute28                 = p_rec.pcx_attribute28,
    pcx_attribute29                 = p_rec.pcx_attribute29,
    pcx_attribute30                 = p_rec.pcx_attribute30
    where   pl_bnf_ctfn_id = p_rec.pl_bnf_ctfn_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 156

End dt_update_dml;
Line: 189

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

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

End update_dml;
Line: 253

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

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

      ben_pcx_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: 295

    ben_pcx_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: 303

End dt_pre_update;
Line: 338

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

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

End pre_update;
Line: 394

Procedure post_update
	(p_rec 			 in ben_pcx_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: 411

    ben_pcx_rku.after_update
      (
  p_pl_bnf_ctfn_id                =>p_rec.pl_bnf_ctfn_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_pl_id                         =>p_rec.pl_id
 ,p_bnf_ctfn_typ_cd               =>p_rec.bnf_ctfn_typ_cd
 ,p_lack_ctfn_sspnd_enrt_flag     =>p_rec.lack_ctfn_sspnd_enrt_flag
 ,p_pfd_flag                      =>p_rec.pfd_flag
 ,p_rqd_flag                      =>p_rec.rqd_flag
 ,p_ctfn_rqd_when_rl              =>p_rec.ctfn_rqd_when_rl
 ,p_bnf_typ_cd                    =>p_rec.bnf_typ_cd
 ,p_rlshp_typ_cd                  =>p_rec.rlshp_typ_cd
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_pcx_attribute_category        =>p_rec.pcx_attribute_category
 ,p_pcx_attribute1                =>p_rec.pcx_attribute1
 ,p_pcx_attribute2                =>p_rec.pcx_attribute2
 ,p_pcx_attribute3                =>p_rec.pcx_attribute3
 ,p_pcx_attribute4                =>p_rec.pcx_attribute4
 ,p_pcx_attribute5                =>p_rec.pcx_attribute5
 ,p_pcx_attribute6                =>p_rec.pcx_attribute6
 ,p_pcx_attribute7                =>p_rec.pcx_attribute7
 ,p_pcx_attribute8                =>p_rec.pcx_attribute8
 ,p_pcx_attribute9                =>p_rec.pcx_attribute9
 ,p_pcx_attribute10               =>p_rec.pcx_attribute10
 ,p_pcx_attribute11               =>p_rec.pcx_attribute11
 ,p_pcx_attribute12               =>p_rec.pcx_attribute12
 ,p_pcx_attribute13               =>p_rec.pcx_attribute13
 ,p_pcx_attribute14               =>p_rec.pcx_attribute14
 ,p_pcx_attribute15               =>p_rec.pcx_attribute15
 ,p_pcx_attribute16               =>p_rec.pcx_attribute16
 ,p_pcx_attribute17               =>p_rec.pcx_attribute17
 ,p_pcx_attribute18               =>p_rec.pcx_attribute18
 ,p_pcx_attribute19               =>p_rec.pcx_attribute19
 ,p_pcx_attribute20               =>p_rec.pcx_attribute20
 ,p_pcx_attribute21               =>p_rec.pcx_attribute21
 ,p_pcx_attribute22               =>p_rec.pcx_attribute22
 ,p_pcx_attribute23               =>p_rec.pcx_attribute23
 ,p_pcx_attribute24               =>p_rec.pcx_attribute24
 ,p_pcx_attribute25               =>p_rec.pcx_attribute25
 ,p_pcx_attribute26               =>p_rec.pcx_attribute26
 ,p_pcx_attribute27               =>p_rec.pcx_attribute27
 ,p_pcx_attribute28               =>p_rec.pcx_attribute28
 ,p_pcx_attribute29               =>p_rec.pcx_attribute29
 ,p_pcx_attribute30               =>p_rec.pcx_attribute30
 ,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_pcx_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_pcx_shd.g_old_rec.effective_end_date
 ,p_pl_id_o                       =>ben_pcx_shd.g_old_rec.pl_id
 ,p_bnf_ctfn_typ_cd_o             =>ben_pcx_shd.g_old_rec.bnf_ctfn_typ_cd
 ,p_lack_ctfn_sspnd_enrt_flag_o   =>ben_pcx_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
 ,p_pfd_flag_o                    =>ben_pcx_shd.g_old_rec.pfd_flag
 ,p_rqd_flag_o                    =>ben_pcx_shd.g_old_rec.rqd_flag
 ,p_ctfn_rqd_when_rl_o            =>ben_pcx_shd.g_old_rec.ctfn_rqd_when_rl
 ,p_bnf_typ_cd_o                  =>ben_pcx_shd.g_old_rec.bnf_typ_cd
 ,p_rlshp_typ_cd_o                =>ben_pcx_shd.g_old_rec.rlshp_typ_cd
 ,p_object_version_number_o       =>ben_pcx_shd.g_old_rec.object_version_number
 ,p_business_group_id_o           =>ben_pcx_shd.g_old_rec.business_group_id
 ,p_pcx_attribute_category_o      =>ben_pcx_shd.g_old_rec.pcx_attribute_category
 ,p_pcx_attribute1_o              =>ben_pcx_shd.g_old_rec.pcx_attribute1
 ,p_pcx_attribute2_o              =>ben_pcx_shd.g_old_rec.pcx_attribute2
 ,p_pcx_attribute3_o              =>ben_pcx_shd.g_old_rec.pcx_attribute3
 ,p_pcx_attribute4_o              =>ben_pcx_shd.g_old_rec.pcx_attribute4
 ,p_pcx_attribute5_o              =>ben_pcx_shd.g_old_rec.pcx_attribute5
 ,p_pcx_attribute6_o              =>ben_pcx_shd.g_old_rec.pcx_attribute6
 ,p_pcx_attribute7_o              =>ben_pcx_shd.g_old_rec.pcx_attribute7
 ,p_pcx_attribute8_o              =>ben_pcx_shd.g_old_rec.pcx_attribute8
 ,p_pcx_attribute9_o              =>ben_pcx_shd.g_old_rec.pcx_attribute9
 ,p_pcx_attribute10_o             =>ben_pcx_shd.g_old_rec.pcx_attribute10
 ,p_pcx_attribute11_o             =>ben_pcx_shd.g_old_rec.pcx_attribute11
 ,p_pcx_attribute12_o             =>ben_pcx_shd.g_old_rec.pcx_attribute12
 ,p_pcx_attribute13_o             =>ben_pcx_shd.g_old_rec.pcx_attribute13
 ,p_pcx_attribute14_o             =>ben_pcx_shd.g_old_rec.pcx_attribute14
 ,p_pcx_attribute15_o             =>ben_pcx_shd.g_old_rec.pcx_attribute15
 ,p_pcx_attribute16_o             =>ben_pcx_shd.g_old_rec.pcx_attribute16
 ,p_pcx_attribute17_o             =>ben_pcx_shd.g_old_rec.pcx_attribute17
 ,p_pcx_attribute18_o             =>ben_pcx_shd.g_old_rec.pcx_attribute18
 ,p_pcx_attribute19_o             =>ben_pcx_shd.g_old_rec.pcx_attribute19
 ,p_pcx_attribute20_o             =>ben_pcx_shd.g_old_rec.pcx_attribute20
 ,p_pcx_attribute21_o             =>ben_pcx_shd.g_old_rec.pcx_attribute21
 ,p_pcx_attribute22_o             =>ben_pcx_shd.g_old_rec.pcx_attribute22
 ,p_pcx_attribute23_o             =>ben_pcx_shd.g_old_rec.pcx_attribute23
 ,p_pcx_attribute24_o             =>ben_pcx_shd.g_old_rec.pcx_attribute24
 ,p_pcx_attribute25_o             =>ben_pcx_shd.g_old_rec.pcx_attribute25
 ,p_pcx_attribute26_o             =>ben_pcx_shd.g_old_rec.pcx_attribute26
 ,p_pcx_attribute27_o             =>ben_pcx_shd.g_old_rec.pcx_attribute27
 ,p_pcx_attribute28_o             =>ben_pcx_shd.g_old_rec.pcx_attribute28
 ,p_pcx_attribute29_o             =>ben_pcx_shd.g_old_rec.pcx_attribute29
 ,p_pcx_attribute30_o             =>ben_pcx_shd.g_old_rec.pcx_attribute30
      );
Line: 520

End post_update;
Line: 781

  ben_pcx_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: 790

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

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

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