DBA Data[Home] [Help]

APPS.BEN_ETD_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_etd_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_elig_dpnt_othr_ptip_f
    set
        elig_dpnt_othr_ptip_id          = p_rec.elig_dpnt_othr_ptip_id,
    excld_flag                      = p_rec.excld_flag,
    ordr_num                        = p_rec.ordr_num,
    ptip_id                         = p_rec.ptip_id,
    eligy_prfl_id                   = p_rec.eligy_prfl_id,
    business_group_id               = p_rec.business_group_id,
    etd_attribute_category          = p_rec.etd_attribute_category,
    etd_attribute1                  = p_rec.etd_attribute1,
    etd_attribute2                  = p_rec.etd_attribute2,
    etd_attribute3                  = p_rec.etd_attribute3,
    etd_attribute4                  = p_rec.etd_attribute4,
    etd_attribute5                  = p_rec.etd_attribute5,
    etd_attribute6                  = p_rec.etd_attribute6,
    etd_attribute7                  = p_rec.etd_attribute7,
    etd_attribute8                  = p_rec.etd_attribute8,
    etd_attribute9                  = p_rec.etd_attribute9,
    etd_attribute10                 = p_rec.etd_attribute10,
    etd_attribute11                 = p_rec.etd_attribute11,
    etd_attribute12                 = p_rec.etd_attribute12,
    etd_attribute13                 = p_rec.etd_attribute13,
    etd_attribute14                 = p_rec.etd_attribute14,
    etd_attribute15                 = p_rec.etd_attribute15,
    etd_attribute16                 = p_rec.etd_attribute16,
    etd_attribute17                 = p_rec.etd_attribute17,
    etd_attribute18                 = p_rec.etd_attribute18,
    etd_attribute19                 = p_rec.etd_attribute19,
    etd_attribute20                 = p_rec.etd_attribute20,
    etd_attribute21                 = p_rec.etd_attribute21,
    etd_attribute22                 = p_rec.etd_attribute22,
    etd_attribute23                 = p_rec.etd_attribute23,
    etd_attribute24                 = p_rec.etd_attribute24,
    etd_attribute25                 = p_rec.etd_attribute25,
    etd_attribute26                 = p_rec.etd_attribute26,
    etd_attribute27                 = p_rec.etd_attribute27,
    etd_attribute28                 = p_rec.etd_attribute28,
    etd_attribute29                 = p_rec.etd_attribute29,
    etd_attribute30                 = p_rec.etd_attribute30,
    object_version_number           = p_rec.object_version_number
    where   elig_dpnt_othr_ptip_id = p_rec.elig_dpnt_othr_ptip_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_etd_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_etd_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_etd_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_etd_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_etd_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_etd_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_etd_rku.after_update
      (
  p_elig_dpnt_othr_ptip_id        =>p_rec.elig_dpnt_othr_ptip_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_ptip_id                       =>p_rec.ptip_id
 ,p_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_etd_attribute_category        =>p_rec.etd_attribute_category
 ,p_etd_attribute1                =>p_rec.etd_attribute1
 ,p_etd_attribute2                =>p_rec.etd_attribute2
 ,p_etd_attribute3                =>p_rec.etd_attribute3
 ,p_etd_attribute4                =>p_rec.etd_attribute4
 ,p_etd_attribute5                =>p_rec.etd_attribute5
 ,p_etd_attribute6                =>p_rec.etd_attribute6
 ,p_etd_attribute7                =>p_rec.etd_attribute7
 ,p_etd_attribute8                =>p_rec.etd_attribute8
 ,p_etd_attribute9                =>p_rec.etd_attribute9
 ,p_etd_attribute10               =>p_rec.etd_attribute10
 ,p_etd_attribute11               =>p_rec.etd_attribute11
 ,p_etd_attribute12               =>p_rec.etd_attribute12
 ,p_etd_attribute13               =>p_rec.etd_attribute13
 ,p_etd_attribute14               =>p_rec.etd_attribute14
 ,p_etd_attribute15               =>p_rec.etd_attribute15
 ,p_etd_attribute16               =>p_rec.etd_attribute16
 ,p_etd_attribute17               =>p_rec.etd_attribute17
 ,p_etd_attribute18               =>p_rec.etd_attribute18
 ,p_etd_attribute19               =>p_rec.etd_attribute19
 ,p_etd_attribute20               =>p_rec.etd_attribute20
 ,p_etd_attribute21               =>p_rec.etd_attribute21
 ,p_etd_attribute22               =>p_rec.etd_attribute22
 ,p_etd_attribute23               =>p_rec.etd_attribute23
 ,p_etd_attribute24               =>p_rec.etd_attribute24
 ,p_etd_attribute25               =>p_rec.etd_attribute25
 ,p_etd_attribute26               =>p_rec.etd_attribute26
 ,p_etd_attribute27               =>p_rec.etd_attribute27
 ,p_etd_attribute28               =>p_rec.etd_attribute28
 ,p_etd_attribute29               =>p_rec.etd_attribute29
 ,p_etd_attribute30               =>p_rec.etd_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_etd_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_etd_shd.g_old_rec.effective_end_date
 ,p_excld_flag_o                  =>ben_etd_shd.g_old_rec.excld_flag
 ,p_ordr_num_o                    =>ben_etd_shd.g_old_rec.ordr_num
 ,p_ptip_id_o                     =>ben_etd_shd.g_old_rec.ptip_id
 ,p_eligy_prfl_id_o               =>ben_etd_shd.g_old_rec.eligy_prfl_id
 ,p_business_group_id_o           =>ben_etd_shd.g_old_rec.business_group_id
 ,p_etd_attribute_category_o      =>ben_etd_shd.g_old_rec.etd_attribute_category
 ,p_etd_attribute1_o              =>ben_etd_shd.g_old_rec.etd_attribute1
 ,p_etd_attribute2_o              =>ben_etd_shd.g_old_rec.etd_attribute2
 ,p_etd_attribute3_o              =>ben_etd_shd.g_old_rec.etd_attribute3
 ,p_etd_attribute4_o              =>ben_etd_shd.g_old_rec.etd_attribute4
 ,p_etd_attribute5_o              =>ben_etd_shd.g_old_rec.etd_attribute5
 ,p_etd_attribute6_o              =>ben_etd_shd.g_old_rec.etd_attribute6
 ,p_etd_attribute7_o              =>ben_etd_shd.g_old_rec.etd_attribute7
 ,p_etd_attribute8_o              =>ben_etd_shd.g_old_rec.etd_attribute8
 ,p_etd_attribute9_o              =>ben_etd_shd.g_old_rec.etd_attribute9
 ,p_etd_attribute10_o             =>ben_etd_shd.g_old_rec.etd_attribute10
 ,p_etd_attribute11_o             =>ben_etd_shd.g_old_rec.etd_attribute11
 ,p_etd_attribute12_o             =>ben_etd_shd.g_old_rec.etd_attribute12
 ,p_etd_attribute13_o             =>ben_etd_shd.g_old_rec.etd_attribute13
 ,p_etd_attribute14_o             =>ben_etd_shd.g_old_rec.etd_attribute14
 ,p_etd_attribute15_o             =>ben_etd_shd.g_old_rec.etd_attribute15
 ,p_etd_attribute16_o             =>ben_etd_shd.g_old_rec.etd_attribute16
 ,p_etd_attribute17_o             =>ben_etd_shd.g_old_rec.etd_attribute17
 ,p_etd_attribute18_o             =>ben_etd_shd.g_old_rec.etd_attribute18
 ,p_etd_attribute19_o             =>ben_etd_shd.g_old_rec.etd_attribute19
 ,p_etd_attribute20_o             =>ben_etd_shd.g_old_rec.etd_attribute20
 ,p_etd_attribute21_o             =>ben_etd_shd.g_old_rec.etd_attribute21
 ,p_etd_attribute22_o             =>ben_etd_shd.g_old_rec.etd_attribute22
 ,p_etd_attribute23_o             =>ben_etd_shd.g_old_rec.etd_attribute23
 ,p_etd_attribute24_o             =>ben_etd_shd.g_old_rec.etd_attribute24
 ,p_etd_attribute25_o             =>ben_etd_shd.g_old_rec.etd_attribute25
 ,p_etd_attribute26_o             =>ben_etd_shd.g_old_rec.etd_attribute26
 ,p_etd_attribute27_o             =>ben_etd_shd.g_old_rec.etd_attribute27
 ,p_etd_attribute28_o             =>ben_etd_shd.g_old_rec.etd_attribute28
 ,p_etd_attribute29_o             =>ben_etd_shd.g_old_rec.etd_attribute29
 ,p_etd_attribute30_o             =>ben_etd_shd.g_old_rec.etd_attribute30
 ,p_object_version_number_o       =>ben_etd_shd.g_old_rec.object_version_number
      );
Line: 508

End post_update;
Line: 754

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