DBA Data[Home] [Help]

APPS.BEN_EAN_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_ean_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_asnt_set_prte_f t
    where  t.elig_asnt_set_prte_id       = p_rec.elig_asnt_set_prte_id
    and    t.effective_start_date =
             ben_ean_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_asnt_set_prte_f.last_update_date%TYPE;
Line: 79

  l_last_updated_by     ben_elig_asnt_set_prte_f.last_updated_by%TYPE;
Line: 80

  l_last_update_login   ben_elig_asnt_set_prte_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_asnt_set_prte_f
  (	elig_asnt_set_prte_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	assignment_set_id,
	ordr_num,
	eligy_prfl_id,
	excld_flag,
	ean_attribute_category,
	ean_attribute1,
	ean_attribute2,
	ean_attribute3,
	ean_attribute4,
	ean_attribute5,
	ean_attribute6,
	ean_attribute7,
	ean_attribute8,
	ean_attribute9,
	ean_attribute10,
	ean_attribute11,
	ean_attribute12,
	ean_attribute13,
	ean_attribute14,
	ean_attribute15,
	ean_attribute16,
	ean_attribute17,
	ean_attribute18,
	ean_attribute19,
	ean_attribute20,
	ean_attribute21,
	ean_attribute22,
	ean_attribute23,
	ean_attribute24,
	ean_attribute25,
	ean_attribute26,
	ean_attribute27,
	ean_attribute28,
	ean_attribute29,
	ean_attribute30,
	object_version_number
   	, created_by,
   	creation_date,
   	last_update_date,
   	last_updated_by,
   	last_update_login,
	criteria_score,
	criteria_weight
  )
  Values
  (	p_rec.elig_asnt_set_prte_id,
	p_rec.effective_start_date,
	p_rec.effective_end_date,
	p_rec.business_group_id,
	p_rec.assignment_set_id,
	p_rec.ordr_num,
	p_rec.eligy_prfl_id,
	p_rec.excld_flag,
	p_rec.ean_attribute_category,
	p_rec.ean_attribute1,
	p_rec.ean_attribute2,
	p_rec.ean_attribute3,
	p_rec.ean_attribute4,
	p_rec.ean_attribute5,
	p_rec.ean_attribute6,
	p_rec.ean_attribute7,
	p_rec.ean_attribute8,
	p_rec.ean_attribute9,
	p_rec.ean_attribute10,
	p_rec.ean_attribute11,
	p_rec.ean_attribute12,
	p_rec.ean_attribute13,
	p_rec.ean_attribute14,
	p_rec.ean_attribute15,
	p_rec.ean_attribute16,
	p_rec.ean_attribute17,
	p_rec.ean_attribute18,
	p_rec.ean_attribute19,
	p_rec.ean_attribute20,
	p_rec.ean_attribute21,
	p_rec.ean_attribute22,
	p_rec.ean_attribute23,
	p_rec.ean_attribute24,
	p_rec.ean_attribute25,
	p_rec.ean_attribute26,
	p_rec.ean_attribute27,
	p_rec.ean_attribute28,
	p_rec.ean_attribute29,
	p_rec.ean_attribute30,
	p_rec.object_version_number
	, l_created_by,
   	l_creation_date,
   	l_last_update_date,
   	l_last_updated_by,
   	l_last_update_login,
	p_rec.criteria_score,
       p_rec.criteria_weight
  );
Line: 249

End dt_insert_dml;
Line: 254

Procedure insert_dml
	(p_rec 			 in out nocopy ben_ean_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: 266

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

End insert_dml;
Line: 314

Procedure pre_insert
	(p_rec  			in out nocopy ben_ean_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: 324

   select ben_elig_asnt_set_prte_f_s.nextval
   from sys.dual;
Line: 338

End pre_insert;
Line: 372

Procedure post_insert
	(p_rec 			 in ben_ean_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: 389

    ben_ean_rki.after_insert
      (
  p_elig_asnt_set_prte_id         =>p_rec.elig_asnt_set_prte_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_assignment_set_id             =>p_rec.assignment_set_id
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_ean_attribute_category        =>p_rec.ean_attribute_category
 ,p_ean_attribute1                =>p_rec.ean_attribute1
 ,p_ean_attribute2                =>p_rec.ean_attribute2
 ,p_ean_attribute3                =>p_rec.ean_attribute3
 ,p_ean_attribute4                =>p_rec.ean_attribute4
 ,p_ean_attribute5                =>p_rec.ean_attribute5
 ,p_ean_attribute6                =>p_rec.ean_attribute6
 ,p_ean_attribute7                =>p_rec.ean_attribute7
 ,p_ean_attribute8                =>p_rec.ean_attribute8
 ,p_ean_attribute9                =>p_rec.ean_attribute9
 ,p_ean_attribute10               =>p_rec.ean_attribute10
 ,p_ean_attribute11               =>p_rec.ean_attribute11
 ,p_ean_attribute12               =>p_rec.ean_attribute12
 ,p_ean_attribute13               =>p_rec.ean_attribute13
 ,p_ean_attribute14               =>p_rec.ean_attribute14
 ,p_ean_attribute15               =>p_rec.ean_attribute15
 ,p_ean_attribute16               =>p_rec.ean_attribute16
 ,p_ean_attribute17               =>p_rec.ean_attribute17
 ,p_ean_attribute18               =>p_rec.ean_attribute18
 ,p_ean_attribute19               =>p_rec.ean_attribute19
 ,p_ean_attribute20               =>p_rec.ean_attribute20
 ,p_ean_attribute21               =>p_rec.ean_attribute21
 ,p_ean_attribute22               =>p_rec.ean_attribute22
 ,p_ean_attribute23               =>p_rec.ean_attribute23
 ,p_ean_attribute24               =>p_rec.ean_attribute24
 ,p_ean_attribute25               =>p_rec.ean_attribute25
 ,p_ean_attribute26               =>p_rec.ean_attribute26
 ,p_ean_attribute27               =>p_rec.ean_attribute27
 ,p_ean_attribute28               =>p_rec.ean_attribute28
 ,p_ean_attribute29               =>p_rec.ean_attribute29
 ,p_ean_attribute30               =>p_rec.ean_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
 ,p_criteria_score			=> p_rec.criteria_score
 ,p_criteria_weight		=> p_rec.criteria_weight
      );
Line: 452

End post_insert;
Line: 540

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

  ben_ean_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: 567

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

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

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