DBA Data[Home] [Help]

APPS.BEN_LDC_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_ldc_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_ler_chg_dpnt_cvg_f
    set
        ler_chg_dpnt_cvg_id             = p_rec.ler_chg_dpnt_cvg_id,
    pl_id                           = p_rec.pl_id,
    pgm_id                          = p_rec.pgm_id,
    business_group_id               = p_rec.business_group_id,
    ler_id                          = p_rec.ler_id,
    ptip_id                         = p_rec.ptip_id,
    add_rmv_cvg_cd                  = p_rec.add_rmv_cvg_cd,
    cvg_eff_end_cd                  = p_rec.cvg_eff_end_cd,
    cvg_eff_strt_cd                 = p_rec.cvg_eff_strt_cd,
    ler_chg_dpnt_cvg_rl             = p_rec.ler_chg_dpnt_cvg_rl,
    ler_chg_dpnt_cvg_cd             = p_rec.ler_chg_dpnt_cvg_cd,
    cvg_eff_strt_rl                 = p_rec.cvg_eff_strt_rl,
    cvg_eff_end_rl                  = p_rec.cvg_eff_end_rl,
    ldc_attribute_category          = p_rec.ldc_attribute_category,
    ldc_attribute1                  = p_rec.ldc_attribute1,
    ldc_attribute2                  = p_rec.ldc_attribute2,
    ldc_attribute3                  = p_rec.ldc_attribute3,
    ldc_attribute4                  = p_rec.ldc_attribute4,
    ldc_attribute5                  = p_rec.ldc_attribute5,
    ldc_attribute6                  = p_rec.ldc_attribute6,
    ldc_attribute7                  = p_rec.ldc_attribute7,
    ldc_attribute8                  = p_rec.ldc_attribute8,
    ldc_attribute9                  = p_rec.ldc_attribute9,
    ldc_attribute10                 = p_rec.ldc_attribute10,
    ldc_attribute11                 = p_rec.ldc_attribute11,
    ldc_attribute12                 = p_rec.ldc_attribute12,
    ldc_attribute13                 = p_rec.ldc_attribute13,
    ldc_attribute14                 = p_rec.ldc_attribute14,
    ldc_attribute15                 = p_rec.ldc_attribute15,
    ldc_attribute16                 = p_rec.ldc_attribute16,
    ldc_attribute17                 = p_rec.ldc_attribute17,
    ldc_attribute18                 = p_rec.ldc_attribute18,
    ldc_attribute19                 = p_rec.ldc_attribute19,
    ldc_attribute20                 = p_rec.ldc_attribute20,
    ldc_attribute21                 = p_rec.ldc_attribute21,
    ldc_attribute22                 = p_rec.ldc_attribute22,
    ldc_attribute23                 = p_rec.ldc_attribute23,
    ldc_attribute24                 = p_rec.ldc_attribute24,
    ldc_attribute25                 = p_rec.ldc_attribute25,
    ldc_attribute26                 = p_rec.ldc_attribute26,
    ldc_attribute27                 = p_rec.ldc_attribute27,
    ldc_attribute28                 = p_rec.ldc_attribute28,
    ldc_attribute29                 = p_rec.ldc_attribute29,
    ldc_attribute30                 = p_rec.ldc_attribute30,
    susp_if_ctfn_not_prvd_flag      = p_rec.susp_if_ctfn_not_prvd_flag,
    ctfn_determine_cd               = p_rec.ctfn_determine_cd,
    object_version_number           = p_rec.object_version_number
    where   ler_chg_dpnt_cvg_id = p_rec.ler_chg_dpnt_cvg_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 161

End dt_update_dml;
Line: 194

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

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

End update_dml;
Line: 258

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

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

      ben_ldc_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: 300

    ben_ldc_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: 308

End dt_pre_update;
Line: 343

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

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

End pre_update;
Line: 399

Procedure post_update
	(p_rec 			 in ben_ldc_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: 416

    ben_ldc_rku.after_update
      (
  p_ler_chg_dpnt_cvg_id           =>p_rec.ler_chg_dpnt_cvg_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_pgm_id                        =>p_rec.pgm_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_ler_id                        =>p_rec.ler_id
 ,p_ptip_id                       =>p_rec.ptip_id
 ,p_add_rmv_cvg_cd                =>p_rec.add_rmv_cvg_cd
 ,p_cvg_eff_end_cd                =>p_rec.cvg_eff_end_cd
 ,p_cvg_eff_strt_cd               =>p_rec.cvg_eff_strt_cd
 ,p_ler_chg_dpnt_cvg_rl           =>p_rec.ler_chg_dpnt_cvg_rl
 ,p_ler_chg_dpnt_cvg_cd           =>p_rec.ler_chg_dpnt_cvg_cd
 ,p_cvg_eff_strt_rl               =>p_rec.cvg_eff_strt_rl
 ,p_cvg_eff_end_rl                =>p_rec.cvg_eff_end_rl
 ,p_ldc_attribute_category        =>p_rec.ldc_attribute_category
 ,p_ldc_attribute1                =>p_rec.ldc_attribute1
 ,p_ldc_attribute2                =>p_rec.ldc_attribute2
 ,p_ldc_attribute3                =>p_rec.ldc_attribute3
 ,p_ldc_attribute4                =>p_rec.ldc_attribute4
 ,p_ldc_attribute5                =>p_rec.ldc_attribute5
 ,p_ldc_attribute6                =>p_rec.ldc_attribute6
 ,p_ldc_attribute7                =>p_rec.ldc_attribute7
 ,p_ldc_attribute8                =>p_rec.ldc_attribute8
 ,p_ldc_attribute9                =>p_rec.ldc_attribute9
 ,p_ldc_attribute10               =>p_rec.ldc_attribute10
 ,p_ldc_attribute11               =>p_rec.ldc_attribute11
 ,p_ldc_attribute12               =>p_rec.ldc_attribute12
 ,p_ldc_attribute13               =>p_rec.ldc_attribute13
 ,p_ldc_attribute14               =>p_rec.ldc_attribute14
 ,p_ldc_attribute15               =>p_rec.ldc_attribute15
 ,p_ldc_attribute16               =>p_rec.ldc_attribute16
 ,p_ldc_attribute17               =>p_rec.ldc_attribute17
 ,p_ldc_attribute18               =>p_rec.ldc_attribute18
 ,p_ldc_attribute19               =>p_rec.ldc_attribute19
 ,p_ldc_attribute20               =>p_rec.ldc_attribute20
 ,p_ldc_attribute21               =>p_rec.ldc_attribute21
 ,p_ldc_attribute22               =>p_rec.ldc_attribute22
 ,p_ldc_attribute23               =>p_rec.ldc_attribute23
 ,p_ldc_attribute24               =>p_rec.ldc_attribute24
 ,p_ldc_attribute25               =>p_rec.ldc_attribute25
 ,p_ldc_attribute26               =>p_rec.ldc_attribute26
 ,p_ldc_attribute27               =>p_rec.ldc_attribute27
 ,p_ldc_attribute28               =>p_rec.ldc_attribute28
 ,p_ldc_attribute29               =>p_rec.ldc_attribute29
 ,p_ldc_attribute30               =>p_rec.ldc_attribute30
 ,p_susp_if_ctfn_not_prvd_flag    =>p_rec.susp_if_ctfn_not_prvd_flag
 ,p_ctfn_determine_cd             =>p_rec.ctfn_determine_cd
 ,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_ldc_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_ldc_shd.g_old_rec.effective_end_date
 ,p_pl_id_o                       =>ben_ldc_shd.g_old_rec.pl_id
 ,p_pgm_id_o                      =>ben_ldc_shd.g_old_rec.pgm_id
 ,p_business_group_id_o           =>ben_ldc_shd.g_old_rec.business_group_id
 ,p_ler_id_o                      =>ben_ldc_shd.g_old_rec.ler_id
 ,p_ptip_id_o                     =>ben_ldc_shd.g_old_rec.ptip_id
 ,p_add_rmv_cvg_cd_o              =>ben_ldc_shd.g_old_rec.add_rmv_cvg_cd
 ,p_cvg_eff_end_cd_o              =>ben_ldc_shd.g_old_rec.cvg_eff_end_cd
 ,p_cvg_eff_strt_cd_o             =>ben_ldc_shd.g_old_rec.cvg_eff_strt_cd
 ,p_ler_chg_dpnt_cvg_rl_o         =>ben_ldc_shd.g_old_rec.ler_chg_dpnt_cvg_rl
 ,p_ler_chg_dpnt_cvg_cd_o         =>ben_ldc_shd.g_old_rec.ler_chg_dpnt_cvg_cd
 ,p_cvg_eff_strt_rl_o             =>ben_ldc_shd.g_old_rec.cvg_eff_strt_rl
 ,p_cvg_eff_end_rl_o              =>ben_ldc_shd.g_old_rec.cvg_eff_end_rl
 ,p_ldc_attribute_category_o      =>ben_ldc_shd.g_old_rec.ldc_attribute_category
 ,p_ldc_attribute1_o              =>ben_ldc_shd.g_old_rec.ldc_attribute1
 ,p_ldc_attribute2_o              =>ben_ldc_shd.g_old_rec.ldc_attribute2
 ,p_ldc_attribute3_o              =>ben_ldc_shd.g_old_rec.ldc_attribute3
 ,p_ldc_attribute4_o              =>ben_ldc_shd.g_old_rec.ldc_attribute4
 ,p_ldc_attribute5_o              =>ben_ldc_shd.g_old_rec.ldc_attribute5
 ,p_ldc_attribute6_o              =>ben_ldc_shd.g_old_rec.ldc_attribute6
 ,p_ldc_attribute7_o              =>ben_ldc_shd.g_old_rec.ldc_attribute7
 ,p_ldc_attribute8_o              =>ben_ldc_shd.g_old_rec.ldc_attribute8
 ,p_ldc_attribute9_o              =>ben_ldc_shd.g_old_rec.ldc_attribute9
 ,p_ldc_attribute10_o             =>ben_ldc_shd.g_old_rec.ldc_attribute10
 ,p_ldc_attribute11_o             =>ben_ldc_shd.g_old_rec.ldc_attribute11
 ,p_ldc_attribute12_o             =>ben_ldc_shd.g_old_rec.ldc_attribute12
 ,p_ldc_attribute13_o             =>ben_ldc_shd.g_old_rec.ldc_attribute13
 ,p_ldc_attribute14_o             =>ben_ldc_shd.g_old_rec.ldc_attribute14
 ,p_ldc_attribute15_o             =>ben_ldc_shd.g_old_rec.ldc_attribute15
 ,p_ldc_attribute16_o             =>ben_ldc_shd.g_old_rec.ldc_attribute16
 ,p_ldc_attribute17_o             =>ben_ldc_shd.g_old_rec.ldc_attribute17
 ,p_ldc_attribute18_o             =>ben_ldc_shd.g_old_rec.ldc_attribute18
 ,p_ldc_attribute19_o             =>ben_ldc_shd.g_old_rec.ldc_attribute19
 ,p_ldc_attribute20_o             =>ben_ldc_shd.g_old_rec.ldc_attribute20
 ,p_ldc_attribute21_o             =>ben_ldc_shd.g_old_rec.ldc_attribute21
 ,p_ldc_attribute22_o             =>ben_ldc_shd.g_old_rec.ldc_attribute22
 ,p_ldc_attribute23_o             =>ben_ldc_shd.g_old_rec.ldc_attribute23
 ,p_ldc_attribute24_o             =>ben_ldc_shd.g_old_rec.ldc_attribute24
 ,p_ldc_attribute25_o             =>ben_ldc_shd.g_old_rec.ldc_attribute25
 ,p_ldc_attribute26_o             =>ben_ldc_shd.g_old_rec.ldc_attribute26
 ,p_ldc_attribute27_o             =>ben_ldc_shd.g_old_rec.ldc_attribute27
 ,p_ldc_attribute28_o             =>ben_ldc_shd.g_old_rec.ldc_attribute28
 ,p_ldc_attribute29_o             =>ben_ldc_shd.g_old_rec.ldc_attribute29
 ,p_ldc_attribute30_o             =>ben_ldc_shd.g_old_rec.ldc_attribute30
 ,p_susp_if_ctfn_not_prvd_flag_o  =>ben_ldc_shd.g_old_rec.susp_if_ctfn_not_prvd_flag
 ,p_ctfn_determine_cd_o           =>ben_ldc_shd.g_old_rec.ctfn_determine_cd
 ,p_object_version_number_o       =>ben_ldc_shd.g_old_rec.object_version_number
      );
Line: 535

End post_update;
Line: 813

  ben_ldc_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: 822

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

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

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