DBA Data[Home] [Help]

APPS.BEN_EST_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_est_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_suppl_role_prte_f t
    where  t.elig_suppl_role_prte_id = p_rec.elig_suppl_role_prte_id
    and    t.effective_start_date =
             ben_est_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_suppl_role_prte_f.last_update_date%TYPE;
Line: 79

  l_last_updated_by     ben_elig_suppl_role_prte_f.last_updated_by%TYPE;
Line: 80

  l_last_update_login   ben_elig_suppl_role_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_suppl_role_prte_f
  (	elig_suppl_role_prte_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	eligy_prfl_id,
	ordr_num,
	excld_flag,
	job_group_id,
	job_id,
	est_attribute_category,
	est_attribute1,
	est_attribute2,
	est_attribute3,
	est_attribute4,
	est_attribute5,
	est_attribute6,
	est_attribute7,
	est_attribute8,
	est_attribute9,
	est_attribute10,
	est_attribute11,
	est_attribute12,
	est_attribute13,
	est_attribute14,
	est_attribute15,
	est_attribute16,
	est_attribute17,
	est_attribute18,
	est_attribute19,
	est_attribute20,
	est_attribute21,
	est_attribute22,
	est_attribute23,
	est_attribute24,
	est_attribute25,
	est_attribute26,
	est_attribute27,
	est_attribute28,
	est_attribute29,
	est_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_suppl_role_prte_id,
	p_rec.effective_start_date,
	p_rec.effective_end_date,
	p_rec.business_group_id,
	p_rec.eligy_prfl_id,
	p_rec.ordr_num,
	p_rec.excld_flag,
	p_rec.job_group_id,
	p_rec.job_id,
	p_rec.est_attribute_category,
	p_rec.est_attribute1,
	p_rec.est_attribute2,
	p_rec.est_attribute3,
	p_rec.est_attribute4,
	p_rec.est_attribute5,
	p_rec.est_attribute6,
	p_rec.est_attribute7,
	p_rec.est_attribute8,
	p_rec.est_attribute9,
	p_rec.est_attribute10,
	p_rec.est_attribute11,
	p_rec.est_attribute12,
	p_rec.est_attribute13,
	p_rec.est_attribute14,
	p_rec.est_attribute15,
	p_rec.est_attribute16,
	p_rec.est_attribute17,
	p_rec.est_attribute18,
	p_rec.est_attribute19,
	p_rec.est_attribute20,
	p_rec.est_attribute21,
	p_rec.est_attribute22,
	p_rec.est_attribute23,
	p_rec.est_attribute24,
	p_rec.est_attribute25,
	p_rec.est_attribute26,
	p_rec.est_attribute27,
	p_rec.est_attribute28,
	p_rec.est_attribute29,
	p_rec.est_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: 251

End dt_insert_dml;
Line: 256

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

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

End insert_dml;
Line: 316

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

    select ben_elig_suppl_role_prte_f_s.nextval
    from sys.dual;
Line: 340

End pre_insert;
Line: 374

Procedure post_insert
	(p_rec 			 in ben_est_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: 391

    ben_est_rki.after_insert
      (
  p_elig_suppl_role_prte_id    =>p_rec.elig_suppl_role_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_eligy_prfl_id                 =>p_rec.eligy_prfl_id
 ,p_ordr_num                      =>p_rec.ordr_num
 ,p_excld_flag                    =>p_rec.excld_flag
 ,p_est_attribute_category        =>p_rec.est_attribute_category
 ,p_est_attribute1                =>p_rec.est_attribute1
 ,p_est_attribute2                =>p_rec.est_attribute2
 ,p_est_attribute3                =>p_rec.est_attribute3
 ,p_est_attribute4                =>p_rec.est_attribute4
 ,p_est_attribute5                =>p_rec.est_attribute5
 ,p_est_attribute6                =>p_rec.est_attribute6
 ,p_est_attribute7                =>p_rec.est_attribute7
 ,p_est_attribute8                =>p_rec.est_attribute8
 ,p_est_attribute9                =>p_rec.est_attribute9
 ,p_est_attribute10               =>p_rec.est_attribute10
 ,p_est_attribute11               =>p_rec.est_attribute11
 ,p_est_attribute12               =>p_rec.est_attribute12
 ,p_est_attribute13               =>p_rec.est_attribute13
 ,p_est_attribute14               =>p_rec.est_attribute14
 ,p_est_attribute15               =>p_rec.est_attribute15
 ,p_est_attribute16               =>p_rec.est_attribute16
 ,p_est_attribute17               =>p_rec.est_attribute17
 ,p_est_attribute18               =>p_rec.est_attribute18
 ,p_est_attribute19               =>p_rec.est_attribute19
 ,p_est_attribute20               =>p_rec.est_attribute20
 ,p_est_attribute21               =>p_rec.est_attribute21
 ,p_est_attribute22               =>p_rec.est_attribute22
 ,p_est_attribute23               =>p_rec.est_attribute23
 ,p_est_attribute24               =>p_rec.est_attribute24
 ,p_est_attribute25               =>p_rec.est_attribute25
 ,p_est_attribute26               =>p_rec.est_attribute26
 ,p_est_attribute27               =>p_rec.est_attribute27
 ,p_est_attribute28               =>p_rec.est_attribute28
 ,p_est_attribute29               =>p_rec.est_attribute29
 ,p_est_attribute30               =>p_rec.est_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_job_group_id                  =>p_rec.job_group_id
 ,p_job_id                        =>p_rec.job_id
 ,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: 455

End post_insert;
Line: 543

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

  ben_est_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: 570

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

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

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