DBA Data[Home] [Help]

APPS.BEN_BUR_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_bur_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_brgng_unit_rt_f
    set
        brgng_unit_rt_id                = p_rec.brgng_unit_rt_id,
    vrbl_rt_prfl_id                 = p_rec.vrbl_rt_prfl_id,
    excld_flag                      = p_rec.excld_flag,
    ordr_num                        = p_rec.ordr_num,
    brgng_unit_cd                   = p_rec.brgng_unit_cd,
    business_group_id               = p_rec.business_group_id,
    bur_attribute_category          = p_rec.bur_attribute_category,
    bur_attribute1                  = p_rec.bur_attribute1,
    bur_attribute2                  = p_rec.bur_attribute2,
    bur_attribute3                  = p_rec.bur_attribute3,
    bur_attribute4                  = p_rec.bur_attribute4,
    bur_attribute5                  = p_rec.bur_attribute5,
    bur_attribute6                  = p_rec.bur_attribute6,
    bur_attribute7                  = p_rec.bur_attribute7,
    bur_attribute8                  = p_rec.bur_attribute8,
    bur_attribute9                  = p_rec.bur_attribute9,
    bur_attribute10                 = p_rec.bur_attribute10,
    bur_attribute11                 = p_rec.bur_attribute11,
    bur_attribute12                 = p_rec.bur_attribute12,
    bur_attribute13                 = p_rec.bur_attribute13,
    bur_attribute14                 = p_rec.bur_attribute14,
    bur_attribute15                 = p_rec.bur_attribute15,
    bur_attribute16                 = p_rec.bur_attribute16,
    bur_attribute17                 = p_rec.bur_attribute17,
    bur_attribute18                 = p_rec.bur_attribute18,
    bur_attribute19                 = p_rec.bur_attribute19,
    bur_attribute20                 = p_rec.bur_attribute20,
    bur_attribute21                 = p_rec.bur_attribute21,
    bur_attribute22                 = p_rec.bur_attribute22,
    bur_attribute23                 = p_rec.bur_attribute23,
    bur_attribute24                 = p_rec.bur_attribute24,
    bur_attribute25                 = p_rec.bur_attribute25,
    bur_attribute26                 = p_rec.bur_attribute26,
    bur_attribute27                 = p_rec.bur_attribute27,
    bur_attribute28                 = p_rec.bur_attribute28,
    bur_attribute29                 = p_rec.bur_attribute29,
    bur_attribute30                 = p_rec.bur_attribute30,
    object_version_number           = p_rec.object_version_number
    where   brgng_unit_rt_id = p_rec.brgng_unit_rt_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_bur_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_bur_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_bur_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_bur_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_bur_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_bur_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_bur_rku.after_update
      (
  p_brgng_unit_rt_id              =>p_rec.brgng_unit_rt_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_vrbl_rt_prfl_id               =>p_rec.vrbl_rt_prfl_id
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_brgng_unit_cd                 =>p_rec.brgng_unit_cd
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_bur_attribute_category        =>p_rec.bur_attribute_category
 ,p_bur_attribute1                =>p_rec.bur_attribute1
 ,p_bur_attribute2                =>p_rec.bur_attribute2
 ,p_bur_attribute3                =>p_rec.bur_attribute3
 ,p_bur_attribute4                =>p_rec.bur_attribute4
 ,p_bur_attribute5                =>p_rec.bur_attribute5
 ,p_bur_attribute6                =>p_rec.bur_attribute6
 ,p_bur_attribute7                =>p_rec.bur_attribute7
 ,p_bur_attribute8                =>p_rec.bur_attribute8
 ,p_bur_attribute9                =>p_rec.bur_attribute9
 ,p_bur_attribute10               =>p_rec.bur_attribute10
 ,p_bur_attribute11               =>p_rec.bur_attribute11
 ,p_bur_attribute12               =>p_rec.bur_attribute12
 ,p_bur_attribute13               =>p_rec.bur_attribute13
 ,p_bur_attribute14               =>p_rec.bur_attribute14
 ,p_bur_attribute15               =>p_rec.bur_attribute15
 ,p_bur_attribute16               =>p_rec.bur_attribute16
 ,p_bur_attribute17               =>p_rec.bur_attribute17
 ,p_bur_attribute18               =>p_rec.bur_attribute18
 ,p_bur_attribute19               =>p_rec.bur_attribute19
 ,p_bur_attribute20               =>p_rec.bur_attribute20
 ,p_bur_attribute21               =>p_rec.bur_attribute21
 ,p_bur_attribute22               =>p_rec.bur_attribute22
 ,p_bur_attribute23               =>p_rec.bur_attribute23
 ,p_bur_attribute24               =>p_rec.bur_attribute24
 ,p_bur_attribute25               =>p_rec.bur_attribute25
 ,p_bur_attribute26               =>p_rec.bur_attribute26
 ,p_bur_attribute27               =>p_rec.bur_attribute27
 ,p_bur_attribute28               =>p_rec.bur_attribute28
 ,p_bur_attribute29               =>p_rec.bur_attribute29
 ,p_bur_attribute30               =>p_rec.bur_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_bur_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_bur_shd.g_old_rec.effective_end_date
 ,p_vrbl_rt_prfl_id_o             =>ben_bur_shd.g_old_rec.vrbl_rt_prfl_id
 ,p_excld_flag_o                  =>ben_bur_shd.g_old_rec.excld_flag
 ,p_ordr_num_o                    =>ben_bur_shd.g_old_rec.ordr_num
 ,p_brgng_unit_cd_o               =>ben_bur_shd.g_old_rec.brgng_unit_cd
 ,p_business_group_id_o           =>ben_bur_shd.g_old_rec.business_group_id
 ,p_bur_attribute_category_o      =>ben_bur_shd.g_old_rec.bur_attribute_category
 ,p_bur_attribute1_o              =>ben_bur_shd.g_old_rec.bur_attribute1
 ,p_bur_attribute2_o              =>ben_bur_shd.g_old_rec.bur_attribute2
 ,p_bur_attribute3_o              =>ben_bur_shd.g_old_rec.bur_attribute3
 ,p_bur_attribute4_o              =>ben_bur_shd.g_old_rec.bur_attribute4
 ,p_bur_attribute5_o              =>ben_bur_shd.g_old_rec.bur_attribute5
 ,p_bur_attribute6_o              =>ben_bur_shd.g_old_rec.bur_attribute6
 ,p_bur_attribute7_o              =>ben_bur_shd.g_old_rec.bur_attribute7
 ,p_bur_attribute8_o              =>ben_bur_shd.g_old_rec.bur_attribute8
 ,p_bur_attribute9_o              =>ben_bur_shd.g_old_rec.bur_attribute9
 ,p_bur_attribute10_o             =>ben_bur_shd.g_old_rec.bur_attribute10
 ,p_bur_attribute11_o             =>ben_bur_shd.g_old_rec.bur_attribute11
 ,p_bur_attribute12_o             =>ben_bur_shd.g_old_rec.bur_attribute12
 ,p_bur_attribute13_o             =>ben_bur_shd.g_old_rec.bur_attribute13
 ,p_bur_attribute14_o             =>ben_bur_shd.g_old_rec.bur_attribute14
 ,p_bur_attribute15_o             =>ben_bur_shd.g_old_rec.bur_attribute15
 ,p_bur_attribute16_o             =>ben_bur_shd.g_old_rec.bur_attribute16
 ,p_bur_attribute17_o             =>ben_bur_shd.g_old_rec.bur_attribute17
 ,p_bur_attribute18_o             =>ben_bur_shd.g_old_rec.bur_attribute18
 ,p_bur_attribute19_o             =>ben_bur_shd.g_old_rec.bur_attribute19
 ,p_bur_attribute20_o             =>ben_bur_shd.g_old_rec.bur_attribute20
 ,p_bur_attribute21_o             =>ben_bur_shd.g_old_rec.bur_attribute21
 ,p_bur_attribute22_o             =>ben_bur_shd.g_old_rec.bur_attribute22
 ,p_bur_attribute23_o             =>ben_bur_shd.g_old_rec.bur_attribute23
 ,p_bur_attribute24_o             =>ben_bur_shd.g_old_rec.bur_attribute24
 ,p_bur_attribute25_o             =>ben_bur_shd.g_old_rec.bur_attribute25
 ,p_bur_attribute26_o             =>ben_bur_shd.g_old_rec.bur_attribute26
 ,p_bur_attribute27_o             =>ben_bur_shd.g_old_rec.bur_attribute27
 ,p_bur_attribute28_o             =>ben_bur_shd.g_old_rec.bur_attribute28
 ,p_bur_attribute29_o             =>ben_bur_shd.g_old_rec.bur_attribute29
 ,p_bur_attribute30_o             =>ben_bur_shd.g_old_rec.bur_attribute30
 ,p_object_version_number_o       =>ben_bur_shd.g_old_rec.object_version_number
      );
Line: 508

End post_update;
Line: 754

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