DBA Data[Home] [Help]

APPS.BEN_PRT_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_prt_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_poe_rt_f
    set
        poe_rt_id                       = p_rec.poe_rt_id,
    mn_poe_num                      = p_rec.mn_poe_num,
    mx_poe_num                      = p_rec.mx_poe_num,
    no_mn_poe_flag                  = p_rec.no_mn_poe_flag,
    no_mx_poe_flag                  = p_rec.no_mx_poe_flag,
    rndg_cd                         = p_rec.rndg_cd,
    rndg_rl                         = p_rec.rndg_rl,
    poe_nnmntry_uom                 = p_rec.poe_nnmntry_uom,
    vrbl_rt_prfl_id                 = p_rec.vrbl_rt_prfl_id,
    business_group_id               = p_rec.business_group_id,
    prt_attribute_category          = p_rec.prt_attribute_category,
    prt_attribute1                  = p_rec.prt_attribute1,
    prt_attribute2                  = p_rec.prt_attribute2,
    prt_attribute3                  = p_rec.prt_attribute3,
    prt_attribute4                  = p_rec.prt_attribute4,
    prt_attribute5                  = p_rec.prt_attribute5,
    prt_attribute6                  = p_rec.prt_attribute6,
    prt_attribute7                  = p_rec.prt_attribute7,
    prt_attribute8                  = p_rec.prt_attribute8,
    prt_attribute9                  = p_rec.prt_attribute9,
    prt_attribute10                 = p_rec.prt_attribute10,
    prt_attribute11                 = p_rec.prt_attribute11,
    prt_attribute12                 = p_rec.prt_attribute12,
    prt_attribute13                 = p_rec.prt_attribute13,
    prt_attribute14                 = p_rec.prt_attribute14,
    prt_attribute15                 = p_rec.prt_attribute15,
    prt_attribute16                 = p_rec.prt_attribute16,
    prt_attribute17                 = p_rec.prt_attribute17,
    prt_attribute18                 = p_rec.prt_attribute18,
    prt_attribute19                 = p_rec.prt_attribute19,
    prt_attribute20                 = p_rec.prt_attribute20,
    prt_attribute21                 = p_rec.prt_attribute21,
    prt_attribute22                 = p_rec.prt_attribute22,
    prt_attribute23                 = p_rec.prt_attribute23,
    prt_attribute24                 = p_rec.prt_attribute24,
    prt_attribute25                 = p_rec.prt_attribute25,
    prt_attribute26                 = p_rec.prt_attribute26,
    prt_attribute27                 = p_rec.prt_attribute27,
    prt_attribute28                 = p_rec.prt_attribute28,
    prt_attribute29                 = p_rec.prt_attribute29,
    prt_attribute30                 = p_rec.prt_attribute30,
    object_version_number           = p_rec.object_version_number,
    cbr_dsblty_apls_flag            = p_rec.cbr_dsblty_apls_flag
    where   poe_rt_id = p_rec.poe_rt_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 157

End dt_update_dml;
Line: 190

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

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

End update_dml;
Line: 254

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

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

      ben_prt_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: 296

    ben_prt_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: 304

End dt_pre_update;
Line: 339

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

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

End pre_update;
Line: 395

Procedure post_update
	(p_rec 			 in ben_prt_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: 412

    ben_prt_rku.after_update
      (
  p_poe_rt_id                     =>p_rec.poe_rt_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_mn_poe_num                    =>p_rec.mn_poe_num
 ,p_mx_poe_num                    =>p_rec.mx_poe_num
 ,p_no_mn_poe_flag                =>p_rec.no_mn_poe_flag
 ,p_no_mx_poe_flag                =>p_rec.no_mx_poe_flag
 ,p_rndg_cd                       =>p_rec.rndg_cd
 ,p_rndg_rl                       =>p_rec.rndg_rl
 ,p_poe_nnmntry_uom               =>p_rec.poe_nnmntry_uom
 ,p_vrbl_rt_prfl_id               =>p_rec.vrbl_rt_prfl_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_prt_attribute_category        =>p_rec.prt_attribute_category
 ,p_prt_attribute1                =>p_rec.prt_attribute1
 ,p_prt_attribute2                =>p_rec.prt_attribute2
 ,p_prt_attribute3                =>p_rec.prt_attribute3
 ,p_prt_attribute4                =>p_rec.prt_attribute4
 ,p_prt_attribute5                =>p_rec.prt_attribute5
 ,p_prt_attribute6                =>p_rec.prt_attribute6
 ,p_prt_attribute7                =>p_rec.prt_attribute7
 ,p_prt_attribute8                =>p_rec.prt_attribute8
 ,p_prt_attribute9                =>p_rec.prt_attribute9
 ,p_prt_attribute10               =>p_rec.prt_attribute10
 ,p_prt_attribute11               =>p_rec.prt_attribute11
 ,p_prt_attribute12               =>p_rec.prt_attribute12
 ,p_prt_attribute13               =>p_rec.prt_attribute13
 ,p_prt_attribute14               =>p_rec.prt_attribute14
 ,p_prt_attribute15               =>p_rec.prt_attribute15
 ,p_prt_attribute16               =>p_rec.prt_attribute16
 ,p_prt_attribute17               =>p_rec.prt_attribute17
 ,p_prt_attribute18               =>p_rec.prt_attribute18
 ,p_prt_attribute19               =>p_rec.prt_attribute19
 ,p_prt_attribute20               =>p_rec.prt_attribute20
 ,p_prt_attribute21               =>p_rec.prt_attribute21
 ,p_prt_attribute22               =>p_rec.prt_attribute22
 ,p_prt_attribute23               =>p_rec.prt_attribute23
 ,p_prt_attribute24               =>p_rec.prt_attribute24
 ,p_prt_attribute25               =>p_rec.prt_attribute25
 ,p_prt_attribute26               =>p_rec.prt_attribute26
 ,p_prt_attribute27               =>p_rec.prt_attribute27
 ,p_prt_attribute28               =>p_rec.prt_attribute28
 ,p_prt_attribute29               =>p_rec.prt_attribute29
 ,p_prt_attribute30               =>p_rec.prt_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_cbr_dsblty_apls_flag          =>p_rec.cbr_dsblty_apls_flag
 ,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_prt_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_prt_shd.g_old_rec.effective_end_date
 ,p_mn_poe_num_o                  =>ben_prt_shd.g_old_rec.mn_poe_num
 ,p_mx_poe_num_o                  =>ben_prt_shd.g_old_rec.mx_poe_num
 ,p_no_mn_poe_flag_o              =>ben_prt_shd.g_old_rec.no_mn_poe_flag
 ,p_no_mx_poe_flag_o              =>ben_prt_shd.g_old_rec.no_mx_poe_flag
 ,p_rndg_cd_o                     =>ben_prt_shd.g_old_rec.rndg_cd
 ,p_rndg_rl_o                     =>ben_prt_shd.g_old_rec.rndg_rl
 ,p_poe_nnmntry_uom_o             =>ben_prt_shd.g_old_rec.poe_nnmntry_uom
 ,p_vrbl_rt_prfl_id_o             =>ben_prt_shd.g_old_rec.vrbl_rt_prfl_id
 ,p_business_group_id_o           =>ben_prt_shd.g_old_rec.business_group_id
 ,p_prt_attribute_category_o      =>ben_prt_shd.g_old_rec.prt_attribute_category
 ,p_prt_attribute1_o              =>ben_prt_shd.g_old_rec.prt_attribute1
 ,p_prt_attribute2_o              =>ben_prt_shd.g_old_rec.prt_attribute2
 ,p_prt_attribute3_o              =>ben_prt_shd.g_old_rec.prt_attribute3
 ,p_prt_attribute4_o              =>ben_prt_shd.g_old_rec.prt_attribute4
 ,p_prt_attribute5_o              =>ben_prt_shd.g_old_rec.prt_attribute5
 ,p_prt_attribute6_o              =>ben_prt_shd.g_old_rec.prt_attribute6
 ,p_prt_attribute7_o              =>ben_prt_shd.g_old_rec.prt_attribute7
 ,p_prt_attribute8_o              =>ben_prt_shd.g_old_rec.prt_attribute8
 ,p_prt_attribute9_o              =>ben_prt_shd.g_old_rec.prt_attribute9
 ,p_prt_attribute10_o             =>ben_prt_shd.g_old_rec.prt_attribute10
 ,p_prt_attribute11_o             =>ben_prt_shd.g_old_rec.prt_attribute11
 ,p_prt_attribute12_o             =>ben_prt_shd.g_old_rec.prt_attribute12
 ,p_prt_attribute13_o             =>ben_prt_shd.g_old_rec.prt_attribute13
 ,p_prt_attribute14_o             =>ben_prt_shd.g_old_rec.prt_attribute14
 ,p_prt_attribute15_o             =>ben_prt_shd.g_old_rec.prt_attribute15
 ,p_prt_attribute16_o             =>ben_prt_shd.g_old_rec.prt_attribute16
 ,p_prt_attribute17_o             =>ben_prt_shd.g_old_rec.prt_attribute17
 ,p_prt_attribute18_o             =>ben_prt_shd.g_old_rec.prt_attribute18
 ,p_prt_attribute19_o             =>ben_prt_shd.g_old_rec.prt_attribute19
 ,p_prt_attribute20_o             =>ben_prt_shd.g_old_rec.prt_attribute20
 ,p_prt_attribute21_o             =>ben_prt_shd.g_old_rec.prt_attribute21
 ,p_prt_attribute22_o             =>ben_prt_shd.g_old_rec.prt_attribute22
 ,p_prt_attribute23_o             =>ben_prt_shd.g_old_rec.prt_attribute23
 ,p_prt_attribute24_o             =>ben_prt_shd.g_old_rec.prt_attribute24
 ,p_prt_attribute25_o             =>ben_prt_shd.g_old_rec.prt_attribute25
 ,p_prt_attribute26_o             =>ben_prt_shd.g_old_rec.prt_attribute26
 ,p_prt_attribute27_o             =>ben_prt_shd.g_old_rec.prt_attribute27
 ,p_prt_attribute28_o             =>ben_prt_shd.g_old_rec.prt_attribute28
 ,p_prt_attribute29_o             =>ben_prt_shd.g_old_rec.prt_attribute29
 ,p_prt_attribute30_o             =>ben_prt_shd.g_old_rec.prt_attribute30
 ,p_object_version_number_o       =>ben_prt_shd.g_old_rec.object_version_number
 ,p_cbr_dsblty_apls_flag_o        =>ben_prt_shd.g_old_rec.cbr_dsblty_apls_flag
      );
Line: 523

End post_update;
Line: 788

  ben_prt_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: 797

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

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

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