DBA Data[Home] [Help]

APPS.BEN_LER_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_ler_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_f
    set
        ler_id                          = p_rec.ler_id,
    name                            = p_rec.name,
    business_group_id               = p_rec.business_group_id,
    typ_cd                          = p_rec.typ_cd,
    lf_evt_oper_cd                  = p_rec.lf_evt_oper_cd,
    short_name                      = p_rec.short_name,
    short_code                      = p_rec.short_code,
    ptnl_ler_trtmt_cd               = p_rec.ptnl_ler_trtmt_cd,
    ck_rltd_per_elig_flag           = p_rec.ck_rltd_per_elig_flag,
    ler_eval_rl                     = p_rec.ler_eval_rl,
    cm_aply_flag                    = p_rec.cm_aply_flag,
    ovridg_le_flag                  = p_rec.ovridg_le_flag,
    qualg_evt_flag                  = p_rec.qualg_evt_flag,
    whn_to_prcs_cd                  = p_rec.whn_to_prcs_cd,
    desc_txt                        = p_rec.desc_txt,
    tmlns_eval_cd                   = p_rec.tmlns_eval_cd,
    tmlns_perd_cd                   = p_rec.tmlns_perd_cd,
    tmlns_dys_num                   = p_rec.tmlns_dys_num,
    tmlns_perd_rl                   = p_rec.tmlns_perd_rl,
    ocrd_dt_det_cd                  = p_rec.ocrd_dt_det_cd,
    ler_stat_cd                     = p_rec.ler_stat_cd,
    slctbl_slf_svc_cd               = p_rec.slctbl_slf_svc_cd,
    ss_pcp_disp_cd                  = p_rec.ss_pcp_disp_cd,
    ler_attribute_category          = p_rec.ler_attribute_category,
    ler_attribute1                  = p_rec.ler_attribute1,
    ler_attribute2                  = p_rec.ler_attribute2,
    ler_attribute3                  = p_rec.ler_attribute3,
    ler_attribute4                  = p_rec.ler_attribute4,
    ler_attribute5                  = p_rec.ler_attribute5,
    ler_attribute6                  = p_rec.ler_attribute6,
    ler_attribute7                  = p_rec.ler_attribute7,
    ler_attribute8                  = p_rec.ler_attribute8,
    ler_attribute9                  = p_rec.ler_attribute9,
    ler_attribute10                 = p_rec.ler_attribute10,
    ler_attribute11                 = p_rec.ler_attribute11,
    ler_attribute12                 = p_rec.ler_attribute12,
    ler_attribute13                 = p_rec.ler_attribute13,
    ler_attribute14                 = p_rec.ler_attribute14,
    ler_attribute15                 = p_rec.ler_attribute15,
    ler_attribute16                 = p_rec.ler_attribute16,
    ler_attribute17                 = p_rec.ler_attribute17,
    ler_attribute18                 = p_rec.ler_attribute18,
    ler_attribute19                 = p_rec.ler_attribute19,
    ler_attribute20                 = p_rec.ler_attribute20,
    ler_attribute21                 = p_rec.ler_attribute21,
    ler_attribute22                 = p_rec.ler_attribute22,
    ler_attribute23                 = p_rec.ler_attribute23,
    ler_attribute24                 = p_rec.ler_attribute24,
    ler_attribute25                 = p_rec.ler_attribute25,
    ler_attribute26                 = p_rec.ler_attribute26,
    ler_attribute27                 = p_rec.ler_attribute27,
    ler_attribute28                 = p_rec.ler_attribute28,
    ler_attribute29                 = p_rec.ler_attribute29,
    ler_attribute30                 = p_rec.ler_attribute30,
    object_version_number           = p_rec.object_version_number
    where   ler_id = p_rec.ler_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 148

    update ben_ler_f_tl
    set name   = p_rec.name,
        typ_cd = p_rec.typ_cd,
    last_update_date  = sysdate,
    last_updated_by   = fnd_global.user_id,
    last_update_login = fnd_global.login_id,
    source_lang = userenv('LANG')
    where ler_id = p_rec.ler_id
    and   effective_start_date = p_validation_start_date
    and   effective_end_date = p_validation_end_date
    and   userenv('LANG') in (language, source_lang);
Line: 183

End dt_update_dml;
Line: 216

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

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

End update_dml;
Line: 280

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

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

      ben_ler_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: 322

    ben_ler_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: 330

End dt_pre_update;
Line: 365

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

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

End pre_update;
Line: 421

Procedure post_update
	(p_rec 			 in ben_ler_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: 438

    ben_ler_rku.after_update
      (
  p_ler_id                        =>p_rec.ler_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_name                          =>p_rec.name
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_typ_cd                        =>p_rec.typ_cd
 ,p_lf_evt_oper_cd                =>p_rec.lf_evt_oper_cd
 ,p_short_name                    =>p_rec.short_name
 ,p_short_code                    =>p_rec.short_code
 ,p_ptnl_ler_trtmt_cd             =>p_rec.ptnl_ler_trtmt_cd
 ,p_ck_rltd_per_elig_flag         =>p_rec.ck_rltd_per_elig_flag
 ,p_ler_eval_rl                   =>p_rec.ler_eval_rl
 ,p_cm_aply_flag                  =>p_rec.cm_aply_flag
 ,p_ovridg_le_flag                =>p_rec.ovridg_le_flag
 ,p_qualg_evt_flag                =>p_rec.qualg_evt_flag
 ,p_whn_to_prcs_cd                =>p_rec.whn_to_prcs_cd
 ,p_desc_txt                      =>p_rec.desc_txt
 ,p_tmlns_eval_cd                 =>p_rec.tmlns_eval_cd
 ,p_tmlns_perd_cd                 =>p_rec.tmlns_perd_cd
 ,p_tmlns_dys_num                 =>p_rec.tmlns_dys_num
 ,p_tmlns_perd_rl                 =>p_rec.tmlns_perd_rl
 ,p_ocrd_dt_det_cd                =>p_rec.ocrd_dt_det_cd
 ,p_ler_stat_cd                   =>p_rec.ler_stat_cd
 ,p_slctbl_slf_svc_cd             =>p_rec.slctbl_slf_svc_cd
 ,p_ss_pcp_disp_cd                =>p_rec.ss_pcp_disp_cd
 ,p_ler_attribute_category        =>p_rec.ler_attribute_category
 ,p_ler_attribute1                =>p_rec.ler_attribute1
 ,p_ler_attribute2                =>p_rec.ler_attribute2
 ,p_ler_attribute3                =>p_rec.ler_attribute3
 ,p_ler_attribute4                =>p_rec.ler_attribute4
 ,p_ler_attribute5                =>p_rec.ler_attribute5
 ,p_ler_attribute6                =>p_rec.ler_attribute6
 ,p_ler_attribute7                =>p_rec.ler_attribute7
 ,p_ler_attribute8                =>p_rec.ler_attribute8
 ,p_ler_attribute9                =>p_rec.ler_attribute9
 ,p_ler_attribute10               =>p_rec.ler_attribute10
 ,p_ler_attribute11               =>p_rec.ler_attribute11
 ,p_ler_attribute12               =>p_rec.ler_attribute12
 ,p_ler_attribute13               =>p_rec.ler_attribute13
 ,p_ler_attribute14               =>p_rec.ler_attribute14
 ,p_ler_attribute15               =>p_rec.ler_attribute15
 ,p_ler_attribute16               =>p_rec.ler_attribute16
 ,p_ler_attribute17               =>p_rec.ler_attribute17
 ,p_ler_attribute18               =>p_rec.ler_attribute18
 ,p_ler_attribute19               =>p_rec.ler_attribute19
 ,p_ler_attribute20               =>p_rec.ler_attribute20
 ,p_ler_attribute21               =>p_rec.ler_attribute21
 ,p_ler_attribute22               =>p_rec.ler_attribute22
 ,p_ler_attribute23               =>p_rec.ler_attribute23
 ,p_ler_attribute24               =>p_rec.ler_attribute24
 ,p_ler_attribute25               =>p_rec.ler_attribute25
 ,p_ler_attribute26               =>p_rec.ler_attribute26
 ,p_ler_attribute27               =>p_rec.ler_attribute27
 ,p_ler_attribute28               =>p_rec.ler_attribute28
 ,p_ler_attribute29               =>p_rec.ler_attribute29
 ,p_ler_attribute30               =>p_rec.ler_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_ler_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_ler_shd.g_old_rec.effective_end_date
 ,p_name_o                        =>ben_ler_shd.g_old_rec.name
 ,p_business_group_id_o           =>ben_ler_shd.g_old_rec.business_group_id
 ,p_typ_cd_o                      =>ben_ler_shd.g_old_rec.typ_cd
 ,p_lf_evt_oper_cd_o              =>ben_ler_shd.g_old_rec.lf_evt_oper_cd
 ,p_short_name_o                  =>ben_ler_shd.g_old_rec.short_name
 ,p_short_code_o                  =>ben_ler_shd.g_old_rec.short_code
 ,p_ptnl_ler_trtmt_cd_o           =>ben_ler_shd.g_old_rec.ptnl_ler_trtmt_cd
 ,p_ck_rltd_per_elig_flag_o       =>ben_ler_shd.g_old_rec.ck_rltd_per_elig_flag
 ,p_ler_eval_rl_o                 =>ben_ler_shd.g_old_rec.ler_eval_rl
 ,p_cm_aply_flag_o                =>ben_ler_shd.g_old_rec.cm_aply_flag
 ,p_ovridg_le_flag_o              =>ben_ler_shd.g_old_rec.ovridg_le_flag
 ,p_qualg_evt_flag_o              =>ben_ler_shd.g_old_rec.qualg_evt_flag
 ,p_whn_to_prcs_cd_o              =>ben_ler_shd.g_old_rec.whn_to_prcs_cd
 ,p_desc_txt_o                    =>ben_ler_shd.g_old_rec.desc_txt
 ,p_tmlns_eval_cd_o               =>ben_ler_shd.g_old_rec.tmlns_eval_cd
 ,p_tmlns_perd_cd_o               =>ben_ler_shd.g_old_rec.tmlns_perd_cd
 ,p_tmlns_dys_num_o               =>ben_ler_shd.g_old_rec.tmlns_dys_num
 ,p_tmlns_perd_rl_o               =>ben_ler_shd.g_old_rec.tmlns_perd_rl
 ,p_ocrd_dt_det_cd_o              =>ben_ler_shd.g_old_rec.ocrd_dt_det_cd
 ,p_ler_stat_cd_o                 =>ben_ler_shd.g_old_rec.ler_stat_cd
 ,p_slctbl_slf_svc_cd_o           =>ben_ler_shd.g_old_rec.slctbl_slf_svc_cd
 ,p_ss_pcp_disp_cd_o              =>ben_ler_shd.g_old_rec.ss_pcp_disp_cd
 ,p_ler_attribute_category_o      =>ben_ler_shd.g_old_rec.ler_attribute_category
 ,p_ler_attribute1_o              =>ben_ler_shd.g_old_rec.ler_attribute1
 ,p_ler_attribute2_o              =>ben_ler_shd.g_old_rec.ler_attribute2
 ,p_ler_attribute3_o              =>ben_ler_shd.g_old_rec.ler_attribute3
 ,p_ler_attribute4_o              =>ben_ler_shd.g_old_rec.ler_attribute4
 ,p_ler_attribute5_o              =>ben_ler_shd.g_old_rec.ler_attribute5
 ,p_ler_attribute6_o              =>ben_ler_shd.g_old_rec.ler_attribute6
 ,p_ler_attribute7_o              =>ben_ler_shd.g_old_rec.ler_attribute7
 ,p_ler_attribute8_o              =>ben_ler_shd.g_old_rec.ler_attribute8
 ,p_ler_attribute9_o              =>ben_ler_shd.g_old_rec.ler_attribute9
 ,p_ler_attribute10_o             =>ben_ler_shd.g_old_rec.ler_attribute10
 ,p_ler_attribute11_o             =>ben_ler_shd.g_old_rec.ler_attribute11
 ,p_ler_attribute12_o             =>ben_ler_shd.g_old_rec.ler_attribute12
 ,p_ler_attribute13_o             =>ben_ler_shd.g_old_rec.ler_attribute13
 ,p_ler_attribute14_o             =>ben_ler_shd.g_old_rec.ler_attribute14
 ,p_ler_attribute15_o             =>ben_ler_shd.g_old_rec.ler_attribute15
 ,p_ler_attribute16_o             =>ben_ler_shd.g_old_rec.ler_attribute16
 ,p_ler_attribute17_o             =>ben_ler_shd.g_old_rec.ler_attribute17
 ,p_ler_attribute18_o             =>ben_ler_shd.g_old_rec.ler_attribute18
 ,p_ler_attribute19_o             =>ben_ler_shd.g_old_rec.ler_attribute19
 ,p_ler_attribute20_o             =>ben_ler_shd.g_old_rec.ler_attribute20
 ,p_ler_attribute21_o             =>ben_ler_shd.g_old_rec.ler_attribute21
 ,p_ler_attribute22_o             =>ben_ler_shd.g_old_rec.ler_attribute22
 ,p_ler_attribute23_o             =>ben_ler_shd.g_old_rec.ler_attribute23
 ,p_ler_attribute24_o             =>ben_ler_shd.g_old_rec.ler_attribute24
 ,p_ler_attribute25_o             =>ben_ler_shd.g_old_rec.ler_attribute25
 ,p_ler_attribute26_o             =>ben_ler_shd.g_old_rec.ler_attribute26
 ,p_ler_attribute27_o             =>ben_ler_shd.g_old_rec.ler_attribute27
 ,p_ler_attribute28_o             =>ben_ler_shd.g_old_rec.ler_attribute28
 ,p_ler_attribute29_o             =>ben_ler_shd.g_old_rec.ler_attribute29
 ,p_ler_attribute30_o             =>ben_ler_shd.g_old_rec.ler_attribute30
 ,p_object_version_number_o       =>ben_ler_shd.g_old_rec.object_version_number
      );
Line: 573

End post_update;
Line: 887

  ben_ler_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: 896

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

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

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