DBA Data[Home] [Help]

APPS.BEN_LPL_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_lpl_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_per_info_cs_ler_f
    set
        ler_per_info_cs_ler_id          = p_rec.ler_per_info_cs_ler_id,
    ler_per_info_cs_ler_rl          = p_rec.ler_per_info_cs_ler_rl,
    per_info_chg_cs_ler_id          = p_rec.per_info_chg_cs_ler_id,
    ler_id                          = p_rec.ler_id,
    business_group_id               = p_rec.business_group_id,
    lpl_attribute_category          = p_rec.lpl_attribute_category,
    lpl_attribute1                  = p_rec.lpl_attribute1,
    lpl_attribute2                  = p_rec.lpl_attribute2,
    lpl_attribute3                  = p_rec.lpl_attribute3,
    lpl_attribute4                  = p_rec.lpl_attribute4,
    lpl_attribute5                  = p_rec.lpl_attribute5,
    lpl_attribute6                  = p_rec.lpl_attribute6,
    lpl_attribute7                  = p_rec.lpl_attribute7,
    lpl_attribute8                  = p_rec.lpl_attribute8,
    lpl_attribute9                  = p_rec.lpl_attribute9,
    lpl_attribute10                 = p_rec.lpl_attribute10,
    lpl_attribute11                 = p_rec.lpl_attribute11,
    lpl_attribute12                 = p_rec.lpl_attribute12,
    lpl_attribute13                 = p_rec.lpl_attribute13,
    lpl_attribute14                 = p_rec.lpl_attribute14,
    lpl_attribute15                 = p_rec.lpl_attribute15,
    lpl_attribute16                 = p_rec.lpl_attribute16,
    lpl_attribute17                 = p_rec.lpl_attribute17,
    lpl_attribute18                 = p_rec.lpl_attribute18,
    lpl_attribute19                 = p_rec.lpl_attribute19,
    lpl_attribute20                 = p_rec.lpl_attribute20,
    lpl_attribute21                 = p_rec.lpl_attribute21,
    lpl_attribute22                 = p_rec.lpl_attribute22,
    lpl_attribute23                 = p_rec.lpl_attribute23,
    lpl_attribute24                 = p_rec.lpl_attribute24,
    lpl_attribute25                 = p_rec.lpl_attribute25,
    lpl_attribute26                 = p_rec.lpl_attribute26,
    lpl_attribute27                 = p_rec.lpl_attribute27,
    lpl_attribute28                 = p_rec.lpl_attribute28,
    lpl_attribute29                 = p_rec.lpl_attribute29,
    lpl_attribute30                 = p_rec.lpl_attribute30,
    chg_mandatory_cd                 = p_rec.chg_mandatory_cd,
    object_version_number           = p_rec.object_version_number
    where   ler_per_info_cs_ler_id = p_rec.ler_per_info_cs_ler_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 152

End dt_update_dml;
Line: 185

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

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

End update_dml;
Line: 249

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

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

      ben_lpl_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: 291

    ben_lpl_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: 299

End dt_pre_update;
Line: 334

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

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

End pre_update;
Line: 390

Procedure post_update
	(p_rec 			 in ben_lpl_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: 407

    ben_lpl_rku.after_update
      (
  p_ler_per_info_cs_ler_id        =>p_rec.ler_per_info_cs_ler_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_ler_per_info_cs_ler_rl        =>p_rec.ler_per_info_cs_ler_rl
 ,p_per_info_chg_cs_ler_id        =>p_rec.per_info_chg_cs_ler_id
 ,p_ler_id                        =>p_rec.ler_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_lpl_attribute_category        =>p_rec.lpl_attribute_category
 ,p_lpl_attribute1                =>p_rec.lpl_attribute1
 ,p_lpl_attribute2                =>p_rec.lpl_attribute2
 ,p_lpl_attribute3                =>p_rec.lpl_attribute3
 ,p_lpl_attribute4                =>p_rec.lpl_attribute4
 ,p_lpl_attribute5                =>p_rec.lpl_attribute5
 ,p_lpl_attribute6                =>p_rec.lpl_attribute6
 ,p_lpl_attribute7                =>p_rec.lpl_attribute7
 ,p_lpl_attribute8                =>p_rec.lpl_attribute8
 ,p_lpl_attribute9                =>p_rec.lpl_attribute9
 ,p_lpl_attribute10               =>p_rec.lpl_attribute10
 ,p_lpl_attribute11               =>p_rec.lpl_attribute11
 ,p_lpl_attribute12               =>p_rec.lpl_attribute12
 ,p_lpl_attribute13               =>p_rec.lpl_attribute13
 ,p_lpl_attribute14               =>p_rec.lpl_attribute14
 ,p_lpl_attribute15               =>p_rec.lpl_attribute15
 ,p_lpl_attribute16               =>p_rec.lpl_attribute16
 ,p_lpl_attribute17               =>p_rec.lpl_attribute17
 ,p_lpl_attribute18               =>p_rec.lpl_attribute18
 ,p_lpl_attribute19               =>p_rec.lpl_attribute19
 ,p_lpl_attribute20               =>p_rec.lpl_attribute20
 ,p_lpl_attribute21               =>p_rec.lpl_attribute21
 ,p_lpl_attribute22               =>p_rec.lpl_attribute22
 ,p_lpl_attribute23               =>p_rec.lpl_attribute23
 ,p_lpl_attribute24               =>p_rec.lpl_attribute24
 ,p_lpl_attribute25               =>p_rec.lpl_attribute25
 ,p_lpl_attribute26               =>p_rec.lpl_attribute26
 ,p_lpl_attribute27               =>p_rec.lpl_attribute27
 ,p_lpl_attribute28               =>p_rec.lpl_attribute28
 ,p_lpl_attribute29               =>p_rec.lpl_attribute29
 ,p_lpl_attribute30               =>p_rec.lpl_attribute30
 ,p_chg_mandatory_cd               =>p_rec.chg_mandatory_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_lpl_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_lpl_shd.g_old_rec.effective_end_date
 ,p_ler_per_info_cs_ler_rl_o      =>ben_lpl_shd.g_old_rec.ler_per_info_cs_ler_rl
 ,p_per_info_chg_cs_ler_id_o      =>ben_lpl_shd.g_old_rec.per_info_chg_cs_ler_id
 ,p_ler_id_o                      =>ben_lpl_shd.g_old_rec.ler_id
 ,p_business_group_id_o           =>ben_lpl_shd.g_old_rec.business_group_id
 ,p_lpl_attribute_category_o      =>ben_lpl_shd.g_old_rec.lpl_attribute_category
 ,p_lpl_attribute1_o              =>ben_lpl_shd.g_old_rec.lpl_attribute1
 ,p_lpl_attribute2_o              =>ben_lpl_shd.g_old_rec.lpl_attribute2
 ,p_lpl_attribute3_o              =>ben_lpl_shd.g_old_rec.lpl_attribute3
 ,p_lpl_attribute4_o              =>ben_lpl_shd.g_old_rec.lpl_attribute4
 ,p_lpl_attribute5_o              =>ben_lpl_shd.g_old_rec.lpl_attribute5
 ,p_lpl_attribute6_o              =>ben_lpl_shd.g_old_rec.lpl_attribute6
 ,p_lpl_attribute7_o              =>ben_lpl_shd.g_old_rec.lpl_attribute7
 ,p_lpl_attribute8_o              =>ben_lpl_shd.g_old_rec.lpl_attribute8
 ,p_lpl_attribute9_o              =>ben_lpl_shd.g_old_rec.lpl_attribute9
 ,p_lpl_attribute10_o             =>ben_lpl_shd.g_old_rec.lpl_attribute10
 ,p_lpl_attribute11_o             =>ben_lpl_shd.g_old_rec.lpl_attribute11
 ,p_lpl_attribute12_o             =>ben_lpl_shd.g_old_rec.lpl_attribute12
 ,p_lpl_attribute13_o             =>ben_lpl_shd.g_old_rec.lpl_attribute13
 ,p_lpl_attribute14_o             =>ben_lpl_shd.g_old_rec.lpl_attribute14
 ,p_lpl_attribute15_o             =>ben_lpl_shd.g_old_rec.lpl_attribute15
 ,p_lpl_attribute16_o             =>ben_lpl_shd.g_old_rec.lpl_attribute16
 ,p_lpl_attribute17_o             =>ben_lpl_shd.g_old_rec.lpl_attribute17
 ,p_lpl_attribute18_o             =>ben_lpl_shd.g_old_rec.lpl_attribute18
 ,p_lpl_attribute19_o             =>ben_lpl_shd.g_old_rec.lpl_attribute19
 ,p_lpl_attribute20_o             =>ben_lpl_shd.g_old_rec.lpl_attribute20
 ,p_lpl_attribute21_o             =>ben_lpl_shd.g_old_rec.lpl_attribute21
 ,p_lpl_attribute22_o             =>ben_lpl_shd.g_old_rec.lpl_attribute22
 ,p_lpl_attribute23_o             =>ben_lpl_shd.g_old_rec.lpl_attribute23
 ,p_lpl_attribute24_o             =>ben_lpl_shd.g_old_rec.lpl_attribute24
 ,p_lpl_attribute25_o             =>ben_lpl_shd.g_old_rec.lpl_attribute25
 ,p_lpl_attribute26_o             =>ben_lpl_shd.g_old_rec.lpl_attribute26
 ,p_lpl_attribute27_o             =>ben_lpl_shd.g_old_rec.lpl_attribute27
 ,p_lpl_attribute28_o             =>ben_lpl_shd.g_old_rec.lpl_attribute28
 ,p_lpl_attribute29_o             =>ben_lpl_shd.g_old_rec.lpl_attribute29
 ,p_lpl_attribute30_o             =>ben_lpl_shd.g_old_rec.lpl_attribute30
 ,p_chg_mandatory_cd_o             =>ben_lpl_shd.g_old_rec.chg_mandatory_cd
 ,p_object_version_number_o       =>ben_lpl_shd.g_old_rec.object_version_number
      );
Line: 508

End post_update;
Line: 754

  ben_lpl_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: 763

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

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

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