DBA Data[Home] [Help]

APPS.BEN_EPG_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_epg_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_ppl_grp_prte_f t
    where  t.elig_ppl_grp_prte_id       = p_rec.elig_ppl_grp_prte_id
    and    t.effective_start_date =
             ben_epg_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_ppl_grp_prte_f.last_update_date%TYPE;
Line: 79

  l_last_updated_by     ben_elig_ppl_grp_prte_f.last_updated_by%TYPE;
Line: 80

  l_last_update_login   ben_elig_ppl_grp_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_ppl_grp_prte_f
  (	elig_ppl_grp_prte_id,
	effective_start_date,
	effective_end_date,
	excld_flag,
	ordr_num,
	eligy_prfl_id,
	people_group_id,
	business_group_id,
	epg_attribute_category,
	epg_attribute1,
	epg_attribute2,
	epg_attribute3,
	epg_attribute4,
	epg_attribute5,
	epg_attribute6,
	epg_attribute7,
	epg_attribute8,
	epg_attribute9,
	epg_attribute10,
	epg_attribute11,
	epg_attribute12,
	epg_attribute13,
	epg_attribute14,
	epg_attribute15,
	epg_attribute16,
	epg_attribute17,
	epg_attribute18,
	epg_attribute19,
	epg_attribute20,
	epg_attribute21,
	epg_attribute22,
	epg_attribute23,
	epg_attribute24,
	epg_attribute25,
	epg_attribute26,
	epg_attribute27,
	epg_attribute28,
	epg_attribute29,
	epg_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_ppl_grp_prte_id,
	p_rec.effective_start_date,
	p_rec.effective_end_date,
	p_rec.excld_flag,
	p_rec.ordr_num,
	p_rec.eligy_prfl_id,
	p_rec.people_group_id,
	p_rec.business_group_id,
	p_rec.epg_attribute_category,
	p_rec.epg_attribute1,
	p_rec.epg_attribute2,
	p_rec.epg_attribute3,
	p_rec.epg_attribute4,
	p_rec.epg_attribute5,
	p_rec.epg_attribute6,
	p_rec.epg_attribute7,
	p_rec.epg_attribute8,
	p_rec.epg_attribute9,
	p_rec.epg_attribute10,
	p_rec.epg_attribute11,
	p_rec.epg_attribute12,
	p_rec.epg_attribute13,
	p_rec.epg_attribute14,
	p_rec.epg_attribute15,
	p_rec.epg_attribute16,
	p_rec.epg_attribute17,
	p_rec.epg_attribute18,
	p_rec.epg_attribute19,
	p_rec.epg_attribute20,
	p_rec.epg_attribute21,
	p_rec.epg_attribute22,
	p_rec.epg_attribute23,
	p_rec.epg_attribute24,
	p_rec.epg_attribute25,
	p_rec.epg_attribute26,
	p_rec.epg_attribute27,
	p_rec.epg_attribute28,
	p_rec.epg_attribute29,
	p_rec.epg_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_epg_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_epg_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: 323

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

End pre_insert;
Line: 372

Procedure post_insert
	(p_rec 			 in ben_epg_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_epg_rki.after_insert
      (
  p_elig_ppl_grp_prte_id          =>p_rec.elig_ppl_grp_prte_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_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_people_group_id               =>p_rec.people_group_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_epg_attribute_category        =>p_rec.epg_attribute_category
 ,p_epg_attribute1                =>p_rec.epg_attribute1
 ,p_epg_attribute2                =>p_rec.epg_attribute2
 ,p_epg_attribute3                =>p_rec.epg_attribute3
 ,p_epg_attribute4                =>p_rec.epg_attribute4
 ,p_epg_attribute5                =>p_rec.epg_attribute5
 ,p_epg_attribute6                =>p_rec.epg_attribute6
 ,p_epg_attribute7                =>p_rec.epg_attribute7
 ,p_epg_attribute8                =>p_rec.epg_attribute8
 ,p_epg_attribute9                =>p_rec.epg_attribute9
 ,p_epg_attribute10               =>p_rec.epg_attribute10
 ,p_epg_attribute11               =>p_rec.epg_attribute11
 ,p_epg_attribute12               =>p_rec.epg_attribute12
 ,p_epg_attribute13               =>p_rec.epg_attribute13
 ,p_epg_attribute14               =>p_rec.epg_attribute14
 ,p_epg_attribute15               =>p_rec.epg_attribute15
 ,p_epg_attribute16               =>p_rec.epg_attribute16
 ,p_epg_attribute17               =>p_rec.epg_attribute17
 ,p_epg_attribute18               =>p_rec.epg_attribute18
 ,p_epg_attribute19               =>p_rec.epg_attribute19
 ,p_epg_attribute20               =>p_rec.epg_attribute20
 ,p_epg_attribute21               =>p_rec.epg_attribute21
 ,p_epg_attribute22               =>p_rec.epg_attribute22
 ,p_epg_attribute23               =>p_rec.epg_attribute23
 ,p_epg_attribute24               =>p_rec.epg_attribute24
 ,p_epg_attribute25               =>p_rec.epg_attribute25
 ,p_epg_attribute26               =>p_rec.epg_attribute26
 ,p_epg_attribute27               =>p_rec.epg_attribute27
 ,p_epg_attribute28               =>p_rec.epg_attribute28
 ,p_epg_attribute29               =>p_rec.epg_attribute29
 ,p_epg_attribute30               =>p_rec.epg_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_epg_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);