DBA Data[Home] [Help]

APPS.BEN_PRD_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_prd_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_paird_rt_f
    set
        paird_rt_id                     = p_rec.paird_rt_id,
    use_parnt_ded_sched_flag        = p_rec.use_parnt_ded_sched_flag,
    asn_on_chc_of_parnt_flag        = p_rec.asn_on_chc_of_parnt_flag,
    use_parnt_prtl_mo_cd_flag       = p_rec.use_parnt_prtl_mo_cd_flag,
    alloc_sme_as_parnt_flag         = p_rec.alloc_sme_as_parnt_flag,
    use_parnt_pymt_sched_flag       = p_rec.use_parnt_pymt_sched_flag,
    no_cmbnd_mx_amt_dfnd_flag       = p_rec.no_cmbnd_mx_amt_dfnd_flag,
    cmbnd_mx_amt                    = p_rec.cmbnd_mx_amt,
    cmbnd_mn_amt                    = p_rec.cmbnd_mn_amt,
    cmbnd_mx_pct_num                = p_rec.cmbnd_mx_pct_num,
    cmbnd_mn_pct_num                = p_rec.cmbnd_mn_pct_num,
    no_cmbnd_mn_amt_dfnd_flag       = p_rec.no_cmbnd_mn_amt_dfnd_flag,
    no_cmbnd_mn_pct_dfnd_flag       = p_rec.no_cmbnd_mn_pct_dfnd_flag,
    no_cmbnd_mx_pct_dfnd_flag       = p_rec.no_cmbnd_mx_pct_dfnd_flag,
    parnt_acty_base_rt_id           = p_rec.parnt_acty_base_rt_id,
    chld_acty_base_rt_id            = p_rec.chld_acty_base_rt_id,
    business_group_id               = p_rec.business_group_id,
    prd_attribute_category          = p_rec.prd_attribute_category,
    prd_attribute1                  = p_rec.prd_attribute1,
    prd_attribute2                  = p_rec.prd_attribute2,
    prd_attribute3                  = p_rec.prd_attribute3,
    prd_attribute4                  = p_rec.prd_attribute4,
    prd_attribute5                  = p_rec.prd_attribute5,
    prd_attribute6                  = p_rec.prd_attribute6,
    prd_attribute7                  = p_rec.prd_attribute7,
    prd_attribute8                  = p_rec.prd_attribute8,
    prd_attribute9                  = p_rec.prd_attribute9,
    prd_attribute10                 = p_rec.prd_attribute10,
    prd_attribute11                 = p_rec.prd_attribute11,
    prd_attribute12                 = p_rec.prd_attribute12,
    prd_attribute13                 = p_rec.prd_attribute13,
    prd_attribute14                 = p_rec.prd_attribute14,
    prd_attribute15                 = p_rec.prd_attribute15,
    prd_attribute16                 = p_rec.prd_attribute16,
    prd_attribute17                 = p_rec.prd_attribute17,
    prd_attribute18                 = p_rec.prd_attribute18,
    prd_attribute19                 = p_rec.prd_attribute19,
    prd_attribute20                 = p_rec.prd_attribute20,
    prd_attribute21                 = p_rec.prd_attribute21,
    prd_attribute22                 = p_rec.prd_attribute22,
    prd_attribute23                 = p_rec.prd_attribute23,
    prd_attribute24                 = p_rec.prd_attribute24,
    prd_attribute25                 = p_rec.prd_attribute25,
    prd_attribute26                 = p_rec.prd_attribute26,
    prd_attribute27                 = p_rec.prd_attribute27,
    prd_attribute28                 = p_rec.prd_attribute28,
    prd_attribute29                 = p_rec.prd_attribute29,
    prd_attribute30                 = p_rec.prd_attribute30,
    object_version_number           = p_rec.object_version_number
    where   paird_rt_id = p_rec.paird_rt_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 163

End dt_update_dml;
Line: 196

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

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

End update_dml;
Line: 260

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

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

      ben_prd_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: 302

    ben_prd_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: 310

End dt_pre_update;
Line: 345

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

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

End pre_update;
Line: 401

Procedure post_update
	(p_rec 			 in ben_prd_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: 418

    ben_prd_rku.after_update
      (
  p_paird_rt_id                   =>p_rec.paird_rt_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_use_parnt_ded_sched_flag      =>p_rec.use_parnt_ded_sched_flag
 ,p_asn_on_chc_of_parnt_flag      =>p_rec.asn_on_chc_of_parnt_flag
 ,p_use_parnt_prtl_mo_cd_flag     =>p_rec.use_parnt_prtl_mo_cd_flag
 ,p_alloc_sme_as_parnt_flag       =>p_rec.alloc_sme_as_parnt_flag
 ,p_use_parnt_pymt_sched_flag     =>p_rec.use_parnt_pymt_sched_flag
 ,p_no_cmbnd_mx_amt_dfnd_flag     =>p_rec.no_cmbnd_mx_amt_dfnd_flag
 ,p_cmbnd_mx_amt                  =>p_rec.cmbnd_mx_amt
 ,p_cmbnd_mn_amt                  =>p_rec.cmbnd_mn_amt
 ,p_cmbnd_mx_pct_num              =>p_rec.cmbnd_mx_pct_num
 ,p_cmbnd_mn_pct_num              =>p_rec.cmbnd_mn_pct_num
 ,p_no_cmbnd_mn_amt_dfnd_flag     =>p_rec.no_cmbnd_mn_amt_dfnd_flag
 ,p_no_cmbnd_mn_pct_dfnd_flag     =>p_rec.no_cmbnd_mn_pct_dfnd_flag
 ,p_no_cmbnd_mx_pct_dfnd_flag     =>p_rec.no_cmbnd_mx_pct_dfnd_flag
 ,p_parnt_acty_base_rt_id         =>p_rec.parnt_acty_base_rt_id
 ,p_chld_acty_base_rt_id          =>p_rec.chld_acty_base_rt_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_prd_attribute_category        =>p_rec.prd_attribute_category
 ,p_prd_attribute1                =>p_rec.prd_attribute1
 ,p_prd_attribute2                =>p_rec.prd_attribute2
 ,p_prd_attribute3                =>p_rec.prd_attribute3
 ,p_prd_attribute4                =>p_rec.prd_attribute4
 ,p_prd_attribute5                =>p_rec.prd_attribute5
 ,p_prd_attribute6                =>p_rec.prd_attribute6
 ,p_prd_attribute7                =>p_rec.prd_attribute7
 ,p_prd_attribute8                =>p_rec.prd_attribute8
 ,p_prd_attribute9                =>p_rec.prd_attribute9
 ,p_prd_attribute10               =>p_rec.prd_attribute10
 ,p_prd_attribute11               =>p_rec.prd_attribute11
 ,p_prd_attribute12               =>p_rec.prd_attribute12
 ,p_prd_attribute13               =>p_rec.prd_attribute13
 ,p_prd_attribute14               =>p_rec.prd_attribute14
 ,p_prd_attribute15               =>p_rec.prd_attribute15
 ,p_prd_attribute16               =>p_rec.prd_attribute16
 ,p_prd_attribute17               =>p_rec.prd_attribute17
 ,p_prd_attribute18               =>p_rec.prd_attribute18
 ,p_prd_attribute19               =>p_rec.prd_attribute19
 ,p_prd_attribute20               =>p_rec.prd_attribute20
 ,p_prd_attribute21               =>p_rec.prd_attribute21
 ,p_prd_attribute22               =>p_rec.prd_attribute22
 ,p_prd_attribute23               =>p_rec.prd_attribute23
 ,p_prd_attribute24               =>p_rec.prd_attribute24
 ,p_prd_attribute25               =>p_rec.prd_attribute25
 ,p_prd_attribute26               =>p_rec.prd_attribute26
 ,p_prd_attribute27               =>p_rec.prd_attribute27
 ,p_prd_attribute28               =>p_rec.prd_attribute28
 ,p_prd_attribute29               =>p_rec.prd_attribute29
 ,p_prd_attribute30               =>p_rec.prd_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_prd_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_prd_shd.g_old_rec.effective_end_date
 ,p_use_parnt_ded_sched_flag_o    =>ben_prd_shd.g_old_rec.use_parnt_ded_sched_flag
 ,p_asn_on_chc_of_parnt_flag_o    =>ben_prd_shd.g_old_rec.asn_on_chc_of_parnt_flag
 ,p_use_parnt_prtl_mo_cd_flag_o   =>ben_prd_shd.g_old_rec.use_parnt_prtl_mo_cd_flag
 ,p_alloc_sme_as_parnt_flag_o     =>ben_prd_shd.g_old_rec.alloc_sme_as_parnt_flag
 ,p_use_parnt_pymt_sched_flag_o   =>ben_prd_shd.g_old_rec.use_parnt_pymt_sched_flag
 ,p_no_cmbnd_mx_amt_dfnd_flag_o   =>ben_prd_shd.g_old_rec.no_cmbnd_mx_amt_dfnd_flag
 ,p_cmbnd_mx_amt_o                =>ben_prd_shd.g_old_rec.cmbnd_mx_amt
 ,p_cmbnd_mn_amt_o                =>ben_prd_shd.g_old_rec.cmbnd_mn_amt
 ,p_cmbnd_mx_pct_num_o            =>ben_prd_shd.g_old_rec.cmbnd_mx_pct_num
 ,p_cmbnd_mn_pct_num_o            =>ben_prd_shd.g_old_rec.cmbnd_mn_pct_num
 ,p_no_cmbnd_mn_amt_dfnd_flag_o   =>ben_prd_shd.g_old_rec.no_cmbnd_mn_amt_dfnd_flag
 ,p_no_cmbnd_mn_pct_dfnd_flag_o   =>ben_prd_shd.g_old_rec.no_cmbnd_mn_pct_dfnd_flag
 ,p_no_cmbnd_mx_pct_dfnd_flag_o   =>ben_prd_shd.g_old_rec.no_cmbnd_mx_pct_dfnd_flag
 ,p_parnt_acty_base_rt_id_o       =>ben_prd_shd.g_old_rec.parnt_acty_base_rt_id
 ,p_chld_acty_base_rt_id_o        =>ben_prd_shd.g_old_rec.chld_acty_base_rt_id
 ,p_business_group_id_o           =>ben_prd_shd.g_old_rec.business_group_id
 ,p_prd_attribute_category_o      =>ben_prd_shd.g_old_rec.prd_attribute_category
 ,p_prd_attribute1_o              =>ben_prd_shd.g_old_rec.prd_attribute1
 ,p_prd_attribute2_o              =>ben_prd_shd.g_old_rec.prd_attribute2
 ,p_prd_attribute3_o              =>ben_prd_shd.g_old_rec.prd_attribute3
 ,p_prd_attribute4_o              =>ben_prd_shd.g_old_rec.prd_attribute4
 ,p_prd_attribute5_o              =>ben_prd_shd.g_old_rec.prd_attribute5
 ,p_prd_attribute6_o              =>ben_prd_shd.g_old_rec.prd_attribute6
 ,p_prd_attribute7_o              =>ben_prd_shd.g_old_rec.prd_attribute7
 ,p_prd_attribute8_o              =>ben_prd_shd.g_old_rec.prd_attribute8
 ,p_prd_attribute9_o              =>ben_prd_shd.g_old_rec.prd_attribute9
 ,p_prd_attribute10_o             =>ben_prd_shd.g_old_rec.prd_attribute10
 ,p_prd_attribute11_o             =>ben_prd_shd.g_old_rec.prd_attribute11
 ,p_prd_attribute12_o             =>ben_prd_shd.g_old_rec.prd_attribute12
 ,p_prd_attribute13_o             =>ben_prd_shd.g_old_rec.prd_attribute13
 ,p_prd_attribute14_o             =>ben_prd_shd.g_old_rec.prd_attribute14
 ,p_prd_attribute15_o             =>ben_prd_shd.g_old_rec.prd_attribute15
 ,p_prd_attribute16_o             =>ben_prd_shd.g_old_rec.prd_attribute16
 ,p_prd_attribute17_o             =>ben_prd_shd.g_old_rec.prd_attribute17
 ,p_prd_attribute18_o             =>ben_prd_shd.g_old_rec.prd_attribute18
 ,p_prd_attribute19_o             =>ben_prd_shd.g_old_rec.prd_attribute19
 ,p_prd_attribute20_o             =>ben_prd_shd.g_old_rec.prd_attribute20
 ,p_prd_attribute21_o             =>ben_prd_shd.g_old_rec.prd_attribute21
 ,p_prd_attribute22_o             =>ben_prd_shd.g_old_rec.prd_attribute22
 ,p_prd_attribute23_o             =>ben_prd_shd.g_old_rec.prd_attribute23
 ,p_prd_attribute24_o             =>ben_prd_shd.g_old_rec.prd_attribute24
 ,p_prd_attribute25_o             =>ben_prd_shd.g_old_rec.prd_attribute25
 ,p_prd_attribute26_o             =>ben_prd_shd.g_old_rec.prd_attribute26
 ,p_prd_attribute27_o             =>ben_prd_shd.g_old_rec.prd_attribute27
 ,p_prd_attribute28_o             =>ben_prd_shd.g_old_rec.prd_attribute28
 ,p_prd_attribute29_o             =>ben_prd_shd.g_old_rec.prd_attribute29
 ,p_prd_attribute30_o             =>ben_prd_shd.g_old_rec.prd_attribute30
 ,p_object_version_number_o       =>ben_prd_shd.g_old_rec.object_version_number
      );
Line: 541

End post_update;
Line: 831

  ben_prd_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: 840

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

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

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