DBA Data[Home] [Help]

APPS.BEN_PGC_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_pgc_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_pgm_dpnt_cvg_ctfn_f
    set
        pgm_dpnt_cvg_ctfn_id            = p_rec.pgm_dpnt_cvg_ctfn_id,
    business_group_id               = p_rec.business_group_id,
    pgm_id                          = p_rec.pgm_id,
    lack_ctfn_sspnd_enrt_flag       = p_rec.lack_ctfn_sspnd_enrt_flag,
    ctfn_rqd_when_rl                = p_rec.ctfn_rqd_when_rl,
    pfd_flag                        = p_rec.pfd_flag,
    dpnt_cvg_ctfn_typ_cd            = p_rec.dpnt_cvg_ctfn_typ_cd,
    rqd_flag                        = p_rec.rqd_flag,
    rlshp_typ_cd                    = p_rec.rlshp_typ_cd,
    pgc_attribute_category          = p_rec.pgc_attribute_category,
    pgc_attribute1                  = p_rec.pgc_attribute1,
    pgc_attribute2                  = p_rec.pgc_attribute2,
    pgc_attribute3                  = p_rec.pgc_attribute3,
    pgc_attribute4                  = p_rec.pgc_attribute4,
    pgc_attribute5                  = p_rec.pgc_attribute5,
    pgc_attribute6                  = p_rec.pgc_attribute6,
    pgc_attribute7                  = p_rec.pgc_attribute7,
    pgc_attribute8                  = p_rec.pgc_attribute8,
    pgc_attribute9                  = p_rec.pgc_attribute9,
    pgc_attribute10                 = p_rec.pgc_attribute10,
    pgc_attribute11                 = p_rec.pgc_attribute11,
    pgc_attribute12                 = p_rec.pgc_attribute12,
    pgc_attribute13                 = p_rec.pgc_attribute13,
    pgc_attribute14                 = p_rec.pgc_attribute14,
    pgc_attribute15                 = p_rec.pgc_attribute15,
    pgc_attribute16                 = p_rec.pgc_attribute16,
    pgc_attribute17                 = p_rec.pgc_attribute17,
    pgc_attribute18                 = p_rec.pgc_attribute18,
    pgc_attribute19                 = p_rec.pgc_attribute19,
    pgc_attribute20                 = p_rec.pgc_attribute20,
    pgc_attribute21                 = p_rec.pgc_attribute21,
    pgc_attribute22                 = p_rec.pgc_attribute22,
    pgc_attribute23                 = p_rec.pgc_attribute23,
    pgc_attribute24                 = p_rec.pgc_attribute24,
    pgc_attribute25                 = p_rec.pgc_attribute25,
    pgc_attribute26                 = p_rec.pgc_attribute26,
    pgc_attribute27                 = p_rec.pgc_attribute27,
    pgc_attribute28                 = p_rec.pgc_attribute28,
    pgc_attribute29                 = p_rec.pgc_attribute29,
    pgc_attribute30                 = p_rec.pgc_attribute30,
    object_version_number           = p_rec.object_version_number
    where   pgm_dpnt_cvg_ctfn_id = p_rec.pgm_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_pgc_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_pgc_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_pgc_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_pgc_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_pgc_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_pgc_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_pgc_rku.after_update
      (
  p_pgm_dpnt_cvg_ctfn_id          =>p_rec.pgm_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_pgm_id                        =>p_rec.pgm_id
 ,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_pfd_flag                      =>p_rec.pfd_flag
 ,p_dpnt_cvg_ctfn_typ_cd          =>p_rec.dpnt_cvg_ctfn_typ_cd
 ,p_rqd_flag                      =>p_rec.rqd_flag
 ,p_rlshp_typ_cd                  =>p_rec.rlshp_typ_cd
 ,p_pgc_attribute_category        =>p_rec.pgc_attribute_category
 ,p_pgc_attribute1                =>p_rec.pgc_attribute1
 ,p_pgc_attribute2                =>p_rec.pgc_attribute2
 ,p_pgc_attribute3                =>p_rec.pgc_attribute3
 ,p_pgc_attribute4                =>p_rec.pgc_attribute4
 ,p_pgc_attribute5                =>p_rec.pgc_attribute5
 ,p_pgc_attribute6                =>p_rec.pgc_attribute6
 ,p_pgc_attribute7                =>p_rec.pgc_attribute7
 ,p_pgc_attribute8                =>p_rec.pgc_attribute8
 ,p_pgc_attribute9                =>p_rec.pgc_attribute9
 ,p_pgc_attribute10               =>p_rec.pgc_attribute10
 ,p_pgc_attribute11               =>p_rec.pgc_attribute11
 ,p_pgc_attribute12               =>p_rec.pgc_attribute12
 ,p_pgc_attribute13               =>p_rec.pgc_attribute13
 ,p_pgc_attribute14               =>p_rec.pgc_attribute14
 ,p_pgc_attribute15               =>p_rec.pgc_attribute15
 ,p_pgc_attribute16               =>p_rec.pgc_attribute16
 ,p_pgc_attribute17               =>p_rec.pgc_attribute17
 ,p_pgc_attribute18               =>p_rec.pgc_attribute18
 ,p_pgc_attribute19               =>p_rec.pgc_attribute19
 ,p_pgc_attribute20               =>p_rec.pgc_attribute20
 ,p_pgc_attribute21               =>p_rec.pgc_attribute21
 ,p_pgc_attribute22               =>p_rec.pgc_attribute22
 ,p_pgc_attribute23               =>p_rec.pgc_attribute23
 ,p_pgc_attribute24               =>p_rec.pgc_attribute24
 ,p_pgc_attribute25               =>p_rec.pgc_attribute25
 ,p_pgc_attribute26               =>p_rec.pgc_attribute26
 ,p_pgc_attribute27               =>p_rec.pgc_attribute27
 ,p_pgc_attribute28               =>p_rec.pgc_attribute28
 ,p_pgc_attribute29               =>p_rec.pgc_attribute29
 ,p_pgc_attribute30               =>p_rec.pgc_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_pgc_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_pgc_shd.g_old_rec.effective_end_date
 ,p_business_group_id_o           =>ben_pgc_shd.g_old_rec.business_group_id
 ,p_pgm_id_o                      =>ben_pgc_shd.g_old_rec.pgm_id
 ,p_lack_ctfn_sspnd_enrt_flag_o   =>ben_pgc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
 ,p_ctfn_rqd_when_rl_o            =>ben_pgc_shd.g_old_rec.ctfn_rqd_when_rl
 ,p_pfd_flag_o                    =>ben_pgc_shd.g_old_rec.pfd_flag
 ,p_dpnt_cvg_ctfn_typ_cd_o        =>ben_pgc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
 ,p_rqd_flag_o                    =>ben_pgc_shd.g_old_rec.rqd_flag
 ,p_rlshp_typ_cd_o                =>ben_pgc_shd.g_old_rec.rlshp_typ_cd
 ,p_pgc_attribute_category_o      =>ben_pgc_shd.g_old_rec.pgc_attribute_category
 ,p_pgc_attribute1_o              =>ben_pgc_shd.g_old_rec.pgc_attribute1
 ,p_pgc_attribute2_o              =>ben_pgc_shd.g_old_rec.pgc_attribute2
 ,p_pgc_attribute3_o              =>ben_pgc_shd.g_old_rec.pgc_attribute3
 ,p_pgc_attribute4_o              =>ben_pgc_shd.g_old_rec.pgc_attribute4
 ,p_pgc_attribute5_o              =>ben_pgc_shd.g_old_rec.pgc_attribute5
 ,p_pgc_attribute6_o              =>ben_pgc_shd.g_old_rec.pgc_attribute6
 ,p_pgc_attribute7_o              =>ben_pgc_shd.g_old_rec.pgc_attribute7
 ,p_pgc_attribute8_o              =>ben_pgc_shd.g_old_rec.pgc_attribute8
 ,p_pgc_attribute9_o              =>ben_pgc_shd.g_old_rec.pgc_attribute9
 ,p_pgc_attribute10_o             =>ben_pgc_shd.g_old_rec.pgc_attribute10
 ,p_pgc_attribute11_o             =>ben_pgc_shd.g_old_rec.pgc_attribute11
 ,p_pgc_attribute12_o             =>ben_pgc_shd.g_old_rec.pgc_attribute12
 ,p_pgc_attribute13_o             =>ben_pgc_shd.g_old_rec.pgc_attribute13
 ,p_pgc_attribute14_o             =>ben_pgc_shd.g_old_rec.pgc_attribute14
 ,p_pgc_attribute15_o             =>ben_pgc_shd.g_old_rec.pgc_attribute15
 ,p_pgc_attribute16_o             =>ben_pgc_shd.g_old_rec.pgc_attribute16
 ,p_pgc_attribute17_o             =>ben_pgc_shd.g_old_rec.pgc_attribute17
 ,p_pgc_attribute18_o             =>ben_pgc_shd.g_old_rec.pgc_attribute18
 ,p_pgc_attribute19_o             =>ben_pgc_shd.g_old_rec.pgc_attribute19
 ,p_pgc_attribute20_o             =>ben_pgc_shd.g_old_rec.pgc_attribute20
 ,p_pgc_attribute21_o             =>ben_pgc_shd.g_old_rec.pgc_attribute21
 ,p_pgc_attribute22_o             =>ben_pgc_shd.g_old_rec.pgc_attribute22
 ,p_pgc_attribute23_o             =>ben_pgc_shd.g_old_rec.pgc_attribute23
 ,p_pgc_attribute24_o             =>ben_pgc_shd.g_old_rec.pgc_attribute24
 ,p_pgc_attribute25_o             =>ben_pgc_shd.g_old_rec.pgc_attribute25
 ,p_pgc_attribute26_o             =>ben_pgc_shd.g_old_rec.pgc_attribute26
 ,p_pgc_attribute27_o             =>ben_pgc_shd.g_old_rec.pgc_attribute27
 ,p_pgc_attribute28_o             =>ben_pgc_shd.g_old_rec.pgc_attribute28
 ,p_pgc_attribute29_o             =>ben_pgc_shd.g_old_rec.pgc_attribute29
 ,p_pgc_attribute30_o             =>ben_pgc_shd.g_old_rec.pgc_attribute30
 ,p_object_version_number_o       =>ben_pgc_shd.g_old_rec.object_version_number
      );
Line: 517

End post_update;
Line: 775

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