DBA Data[Home] [Help]

APPS.BEN_EEP_INS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 57

Procedure dt_insert_dml
	(p_rec 			 in out nocopy ben_eep_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
--
-- Cursor to select 'old' created AOL who column values
--
  Cursor C_Sel1 Is
    select t.created_by,
           t.creation_date
    from   ben_elig_enrld_anthr_pl_f t
    where  t.elig_enrld_anthr_pl_id       = p_rec.elig_enrld_anthr_pl_id
    and    t.effective_start_date =
             ben_eep_shd.g_old_rec.effective_start_date
    and    t.effective_end_date   = (p_validation_start_date - 1);
Line: 75

  l_proc		varchar2(72) := g_package||'dt_insert_dml';
Line: 78

  l_last_update_date   	ben_elig_enrld_anthr_pl_f.last_update_date%TYPE;
Line: 79

  l_last_updated_by     ben_elig_enrld_anthr_pl_f.last_updated_by%TYPE;
Line: 80

  l_last_update_login   ben_elig_enrld_anthr_pl_f.last_update_login%TYPE;
Line: 102

  If (p_datetrack_mode <> 'INSERT') then
    hr_utility.set_location(l_proc, 10);
Line: 124

    l_last_update_date   := sysdate;
Line: 125

    l_last_updated_by    := fnd_global.user_id;
Line: 126

    l_last_update_login  := fnd_global.login_id;
Line: 133

  insert into ben_elig_enrld_anthr_pl_f
  (	elig_enrld_anthr_pl_id,
	effective_start_date,
	effective_end_date,
	ordr_num,
	excld_flag,
	enrl_det_dt_cd,
	business_group_id,
	eligy_prfl_id,
	pl_id,
	eep_attribute_category,
	eep_attribute1,
	eep_attribute2,
	eep_attribute3,
	eep_attribute4,
	eep_attribute5,
	eep_attribute6,
	eep_attribute7,
	eep_attribute8,
	eep_attribute9,
	eep_attribute10,
	eep_attribute11,
	eep_attribute12,
	eep_attribute13,
	eep_attribute14,
	eep_attribute15,
	eep_attribute16,
	eep_attribute17,
	eep_attribute18,
	eep_attribute19,
	eep_attribute20,
	eep_attribute21,
	eep_attribute22,
	eep_attribute23,
	eep_attribute24,
	eep_attribute25,
	eep_attribute26,
	eep_attribute27,
	eep_attribute28,
	eep_attribute29,
	eep_attribute30,
	object_version_number
   	, created_by,
   	creation_date,
   	last_update_date,
   	last_updated_by,
   	last_update_login
  )
  Values
  (	p_rec.elig_enrld_anthr_pl_id,
	p_rec.effective_start_date,
	p_rec.effective_end_date,
	p_rec.ordr_num,
	p_rec.excld_flag,
	p_rec.enrl_det_dt_cd,
	p_rec.business_group_id,
	p_rec.eligy_prfl_id,
	p_rec.pl_id,
	p_rec.eep_attribute_category,
	p_rec.eep_attribute1,
	p_rec.eep_attribute2,
	p_rec.eep_attribute3,
	p_rec.eep_attribute4,
	p_rec.eep_attribute5,
	p_rec.eep_attribute6,
	p_rec.eep_attribute7,
	p_rec.eep_attribute8,
	p_rec.eep_attribute9,
	p_rec.eep_attribute10,
	p_rec.eep_attribute11,
	p_rec.eep_attribute12,
	p_rec.eep_attribute13,
	p_rec.eep_attribute14,
	p_rec.eep_attribute15,
	p_rec.eep_attribute16,
	p_rec.eep_attribute17,
	p_rec.eep_attribute18,
	p_rec.eep_attribute19,
	p_rec.eep_attribute20,
	p_rec.eep_attribute21,
	p_rec.eep_attribute22,
	p_rec.eep_attribute23,
	p_rec.eep_attribute24,
	p_rec.eep_attribute25,
	p_rec.eep_attribute26,
	p_rec.eep_attribute27,
	p_rec.eep_attribute28,
	p_rec.eep_attribute29,
	p_rec.eep_attribute30,
	p_rec.object_version_number
	, l_created_by,
   	l_creation_date,
   	l_last_update_date,
   	l_last_updated_by,
   	l_last_update_login
  );
Line: 247

End dt_insert_dml;
Line: 252

Procedure insert_dml
	(p_rec 			 in out nocopy ben_eep_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||'insert_dml';
Line: 264

  dt_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: 271

End insert_dml;
Line: 312

Procedure pre_insert
	(p_rec  			in out nocopy ben_eep_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_insert';
Line: 327

  select ben_elig_enrld_anthr_pl_f_s.nextval
    into p_rec.elig_enrld_anthr_pl_id from sys.dual;
Line: 332

End pre_insert;
Line: 366

Procedure post_insert
	(p_rec 			 in ben_eep_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_insert';
Line: 383

    ben_eep_rki.after_insert
      (
  p_elig_enrld_anthr_pl_id        =>p_rec.elig_enrld_anthr_pl_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_enrl_det_dt_cd                =>p_rec.enrl_det_dt_cd
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_pl_id                         =>p_rec.pl_id
 ,p_eep_attribute_category        =>p_rec.eep_attribute_category
 ,p_eep_attribute1                =>p_rec.eep_attribute1
 ,p_eep_attribute2                =>p_rec.eep_attribute2
 ,p_eep_attribute3                =>p_rec.eep_attribute3
 ,p_eep_attribute4                =>p_rec.eep_attribute4
 ,p_eep_attribute5                =>p_rec.eep_attribute5
 ,p_eep_attribute6                =>p_rec.eep_attribute6
 ,p_eep_attribute7                =>p_rec.eep_attribute7
 ,p_eep_attribute8                =>p_rec.eep_attribute8
 ,p_eep_attribute9                =>p_rec.eep_attribute9
 ,p_eep_attribute10               =>p_rec.eep_attribute10
 ,p_eep_attribute11               =>p_rec.eep_attribute11
 ,p_eep_attribute12               =>p_rec.eep_attribute12
 ,p_eep_attribute13               =>p_rec.eep_attribute13
 ,p_eep_attribute14               =>p_rec.eep_attribute14
 ,p_eep_attribute15               =>p_rec.eep_attribute15
 ,p_eep_attribute16               =>p_rec.eep_attribute16
 ,p_eep_attribute17               =>p_rec.eep_attribute17
 ,p_eep_attribute18               =>p_rec.eep_attribute18
 ,p_eep_attribute19               =>p_rec.eep_attribute19
 ,p_eep_attribute20               =>p_rec.eep_attribute20
 ,p_eep_attribute21               =>p_rec.eep_attribute21
 ,p_eep_attribute22               =>p_rec.eep_attribute22
 ,p_eep_attribute23               =>p_rec.eep_attribute23
 ,p_eep_attribute24               =>p_rec.eep_attribute24
 ,p_eep_attribute25               =>p_rec.eep_attribute25
 ,p_eep_attribute26               =>p_rec.eep_attribute26
 ,p_eep_attribute27               =>p_rec.eep_attribute27
 ,p_eep_attribute28               =>p_rec.eep_attribute28
 ,p_eep_attribute29               =>p_rec.eep_attribute29
 ,p_eep_attribute30               =>p_rec.eep_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
 ,p_validation_start_date         =>p_validation_start_date
 ,p_validation_end_date           =>p_validation_end_date
      );
Line: 445

End post_insert;
Line: 536

  l_datetrack_mode		varchar2(30) := 'INSERT';
Line: 554

  ben_eep_bus.insert_validate
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => l_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 563

  pre_insert
 	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => l_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 572

  insert_dml
 	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => l_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 581

  post_insert
 	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => l_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);