DBA Data[Home] [Help]

APPS.BEN_LCC_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_lcc_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_ctfn_f
    set
        ler_chg_dpnt_cvg_ctfn_id        = p_rec.ler_chg_dpnt_cvg_ctfn_id,
    dpnt_cvg_ctfn_typ_cd            = p_rec.dpnt_cvg_ctfn_typ_cd,
    rlshp_typ_cd                     = p_rec.rlshp_typ_cd,
    ctfn_rqd_when_rl                 = p_rec.ctfn_rqd_when_rl,
    lack_ctfn_sspnd_enrt_flag        = p_rec.lack_ctfn_sspnd_enrt_flag,
    rqd_flag                      = p_rec.rqd_flag,
    ler_chg_dpnt_cvg_id             = p_rec.ler_chg_dpnt_cvg_id,
    business_group_id               = p_rec.business_group_id,
    lcc_attribute_category          = p_rec.lcc_attribute_category,
    lcc_attribute1                  = p_rec.lcc_attribute1,
    lcc_attribute2                  = p_rec.lcc_attribute2,
    lcc_attribute3                  = p_rec.lcc_attribute3,
    lcc_attribute4                  = p_rec.lcc_attribute4,
    lcc_attribute5                  = p_rec.lcc_attribute5,
    lcc_attribute6                  = p_rec.lcc_attribute6,
    lcc_attribute7                  = p_rec.lcc_attribute7,
    lcc_attribute8                  = p_rec.lcc_attribute8,
    lcc_attribute9                  = p_rec.lcc_attribute9,
    lcc_attribute10                 = p_rec.lcc_attribute10,
    lcc_attribute11                 = p_rec.lcc_attribute11,
    lcc_attribute12                 = p_rec.lcc_attribute12,
    lcc_attribute13                 = p_rec.lcc_attribute13,
    lcc_attribute14                 = p_rec.lcc_attribute14,
    lcc_attribute15                 = p_rec.lcc_attribute15,
    lcc_attribute16                 = p_rec.lcc_attribute16,
    lcc_attribute17                 = p_rec.lcc_attribute17,
    lcc_attribute18                 = p_rec.lcc_attribute18,
    lcc_attribute19                 = p_rec.lcc_attribute19,
    lcc_attribute20                 = p_rec.lcc_attribute20,
    lcc_attribute21                 = p_rec.lcc_attribute21,
    lcc_attribute22                 = p_rec.lcc_attribute22,
    lcc_attribute23                 = p_rec.lcc_attribute23,
    lcc_attribute24                 = p_rec.lcc_attribute24,
    lcc_attribute25                 = p_rec.lcc_attribute25,
    lcc_attribute26                 = p_rec.lcc_attribute26,
    lcc_attribute27                 = p_rec.lcc_attribute27,
    lcc_attribute28                 = p_rec.lcc_attribute28,
    lcc_attribute29                 = p_rec.lcc_attribute29,
    lcc_attribute30                 = p_rec.lcc_attribute30,
    object_version_number           = p_rec.object_version_number
    where   ler_chg_dpnt_cvg_ctfn_id = p_rec.ler_chg_dpnt_cvg_ctfn_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 154

End dt_update_dml;
Line: 187

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

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

End update_dml;
Line: 251

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

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

      ben_lcc_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: 293

    ben_lcc_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: 301

End dt_pre_update;
Line: 336

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

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

End pre_update;
Line: 392

Procedure post_update
	(p_rec 			 in ben_lcc_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: 409

    ben_lcc_rku.after_update
      (
  p_ler_chg_dpnt_cvg_ctfn_id      =>p_rec.ler_chg_dpnt_cvg_ctfn_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_dpnt_cvg_ctfn_typ_cd          =>p_rec.dpnt_cvg_ctfn_typ_cd
 ,p_rlshp_typ_cd                  =>p_rec.rlshp_typ_cd
 ,p_ctfn_rqd_when_rl              =>p_rec.ctfn_rqd_when_rl
 ,p_lack_ctfn_sspnd_enrt_flag     =>p_rec.lack_ctfn_sspnd_enrt_flag
 ,p_rqd_flag                      =>p_rec.rqd_flag
 ,p_ler_chg_dpnt_cvg_id           =>p_rec.ler_chg_dpnt_cvg_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_lcc_attribute_category        =>p_rec.lcc_attribute_category
 ,p_lcc_attribute1                =>p_rec.lcc_attribute1
 ,p_lcc_attribute2                =>p_rec.lcc_attribute2
 ,p_lcc_attribute3                =>p_rec.lcc_attribute3
 ,p_lcc_attribute4                =>p_rec.lcc_attribute4
 ,p_lcc_attribute5                =>p_rec.lcc_attribute5
 ,p_lcc_attribute6                =>p_rec.lcc_attribute6
 ,p_lcc_attribute7                =>p_rec.lcc_attribute7
 ,p_lcc_attribute8                =>p_rec.lcc_attribute8
 ,p_lcc_attribute9                =>p_rec.lcc_attribute9
 ,p_lcc_attribute10               =>p_rec.lcc_attribute10
 ,p_lcc_attribute11               =>p_rec.lcc_attribute11
 ,p_lcc_attribute12               =>p_rec.lcc_attribute12
 ,p_lcc_attribute13               =>p_rec.lcc_attribute13
 ,p_lcc_attribute14               =>p_rec.lcc_attribute14
 ,p_lcc_attribute15               =>p_rec.lcc_attribute15
 ,p_lcc_attribute16               =>p_rec.lcc_attribute16
 ,p_lcc_attribute17               =>p_rec.lcc_attribute17
 ,p_lcc_attribute18               =>p_rec.lcc_attribute18
 ,p_lcc_attribute19               =>p_rec.lcc_attribute19
 ,p_lcc_attribute20               =>p_rec.lcc_attribute20
 ,p_lcc_attribute21               =>p_rec.lcc_attribute21
 ,p_lcc_attribute22               =>p_rec.lcc_attribute22
 ,p_lcc_attribute23               =>p_rec.lcc_attribute23
 ,p_lcc_attribute24               =>p_rec.lcc_attribute24
 ,p_lcc_attribute25               =>p_rec.lcc_attribute25
 ,p_lcc_attribute26               =>p_rec.lcc_attribute26
 ,p_lcc_attribute27               =>p_rec.lcc_attribute27
 ,p_lcc_attribute28               =>p_rec.lcc_attribute28
 ,p_lcc_attribute29               =>p_rec.lcc_attribute29
 ,p_lcc_attribute30               =>p_rec.lcc_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_lcc_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_lcc_shd.g_old_rec.effective_end_date
 ,p_dpnt_cvg_ctfn_typ_cd_o        =>ben_lcc_shd.g_old_rec.dpnt_cvg_ctfn_typ_cd
 ,p_rlshp_typ_cd_o                =>ben_lcc_shd.g_old_rec.rlshp_typ_cd
 ,p_ctfn_rqd_when_rl_o            =>ben_lcc_shd.g_old_rec.ctfn_rqd_when_rl
 ,p_lack_ctfn_sspnd_enrt_flag_o   =>ben_lcc_shd.g_old_rec.lack_ctfn_sspnd_enrt_flag
 ,p_rqd_flag_o                    =>ben_lcc_shd.g_old_rec.rqd_flag
 ,p_ler_chg_dpnt_cvg_id_o         =>ben_lcc_shd.g_old_rec.ler_chg_dpnt_cvg_id
 ,p_business_group_id_o           =>ben_lcc_shd.g_old_rec.business_group_id
 ,p_lcc_attribute_category_o      =>ben_lcc_shd.g_old_rec.lcc_attribute_category
 ,p_lcc_attribute1_o              =>ben_lcc_shd.g_old_rec.lcc_attribute1
 ,p_lcc_attribute2_o              =>ben_lcc_shd.g_old_rec.lcc_attribute2
 ,p_lcc_attribute3_o              =>ben_lcc_shd.g_old_rec.lcc_attribute3
 ,p_lcc_attribute4_o              =>ben_lcc_shd.g_old_rec.lcc_attribute4
 ,p_lcc_attribute5_o              =>ben_lcc_shd.g_old_rec.lcc_attribute5
 ,p_lcc_attribute6_o              =>ben_lcc_shd.g_old_rec.lcc_attribute6
 ,p_lcc_attribute7_o              =>ben_lcc_shd.g_old_rec.lcc_attribute7
 ,p_lcc_attribute8_o              =>ben_lcc_shd.g_old_rec.lcc_attribute8
 ,p_lcc_attribute9_o              =>ben_lcc_shd.g_old_rec.lcc_attribute9
 ,p_lcc_attribute10_o             =>ben_lcc_shd.g_old_rec.lcc_attribute10
 ,p_lcc_attribute11_o             =>ben_lcc_shd.g_old_rec.lcc_attribute11
 ,p_lcc_attribute12_o             =>ben_lcc_shd.g_old_rec.lcc_attribute12
 ,p_lcc_attribute13_o             =>ben_lcc_shd.g_old_rec.lcc_attribute13
 ,p_lcc_attribute14_o             =>ben_lcc_shd.g_old_rec.lcc_attribute14
 ,p_lcc_attribute15_o             =>ben_lcc_shd.g_old_rec.lcc_attribute15
 ,p_lcc_attribute16_o             =>ben_lcc_shd.g_old_rec.lcc_attribute16
 ,p_lcc_attribute17_o             =>ben_lcc_shd.g_old_rec.lcc_attribute17
 ,p_lcc_attribute18_o             =>ben_lcc_shd.g_old_rec.lcc_attribute18
 ,p_lcc_attribute19_o             =>ben_lcc_shd.g_old_rec.lcc_attribute19
 ,p_lcc_attribute20_o             =>ben_lcc_shd.g_old_rec.lcc_attribute20
 ,p_lcc_attribute21_o             =>ben_lcc_shd.g_old_rec.lcc_attribute21
 ,p_lcc_attribute22_o             =>ben_lcc_shd.g_old_rec.lcc_attribute22
 ,p_lcc_attribute23_o             =>ben_lcc_shd.g_old_rec.lcc_attribute23
 ,p_lcc_attribute24_o             =>ben_lcc_shd.g_old_rec.lcc_attribute24
 ,p_lcc_attribute25_o             =>ben_lcc_shd.g_old_rec.lcc_attribute25
 ,p_lcc_attribute26_o             =>ben_lcc_shd.g_old_rec.lcc_attribute26
 ,p_lcc_attribute27_o             =>ben_lcc_shd.g_old_rec.lcc_attribute27
 ,p_lcc_attribute28_o             =>ben_lcc_shd.g_old_rec.lcc_attribute28
 ,p_lcc_attribute29_o             =>ben_lcc_shd.g_old_rec.lcc_attribute29
 ,p_lcc_attribute30_o             =>ben_lcc_shd.g_old_rec.lcc_attribute30
 ,p_object_version_number_o       =>ben_lcc_shd.g_old_rec.object_version_number
      );
Line: 514

End post_update;
Line: 752

  ben_lcc_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: 761

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

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

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