DBA Data[Home] [Help]

APPS.BEN_PND_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_pnd_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_pl_dpnt_cvg_ctfn_f t
    where  t.pl_dpnt_cvg_ctfn_id       = p_rec.pl_dpnt_cvg_ctfn_id
    and    t.effective_start_date =
             ben_pnd_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_pl_dpnt_cvg_ctfn_f.last_update_date%TYPE;
Line: 79

  l_last_updated_by     ben_pl_dpnt_cvg_ctfn_f.last_updated_by%TYPE;
Line: 80

  l_last_update_login   ben_pl_dpnt_cvg_ctfn_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_pl_dpnt_cvg_ctfn_f
  (	pl_dpnt_cvg_ctfn_id,
	effective_start_date,
	effective_end_date,
	pl_id,
	pfd_flag,
	ctfn_rqd_when_rl,
	lack_ctfn_sspnd_enrt_flag,
	dpnt_cvg_ctfn_typ_cd,
	rqd_flag,
	rlshp_typ_cd,
	business_group_id,
	pnd_attribute_category,
	pnd_attribute1,
	pnd_attribute2,
	pnd_attribute3,
	pnd_attribute4,
	pnd_attribute5,
	pnd_attribute6,
	pnd_attribute7,
	pnd_attribute8,
	pnd_attribute9,
	pnd_attribute10,
	pnd_attribute11,
	pnd_attribute12,
	pnd_attribute13,
	pnd_attribute14,
	pnd_attribute15,
	pnd_attribute16,
	pnd_attribute17,
	pnd_attribute18,
	pnd_attribute19,
	pnd_attribute20,
	pnd_attribute21,
	pnd_attribute22,
	pnd_attribute23,
	pnd_attribute24,
	pnd_attribute25,
	pnd_attribute26,
	pnd_attribute27,
	pnd_attribute28,
	pnd_attribute29,
	pnd_attribute30,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number
   	, created_by,
   	creation_date,
   	last_update_date,
   	last_updated_by,
   	last_update_login
  )
  Values
  (	p_rec.pl_dpnt_cvg_ctfn_id,
	p_rec.effective_start_date,
	p_rec.effective_end_date,
	p_rec.pl_id,
	p_rec.pfd_flag,
	p_rec.ctfn_rqd_when_rl,
	p_rec.lack_ctfn_sspnd_enrt_flag,
	p_rec.dpnt_cvg_ctfn_typ_cd,
	p_rec.rqd_flag,
	p_rec.rlshp_typ_cd,
	p_rec.business_group_id,
	p_rec.pnd_attribute_category,
	p_rec.pnd_attribute1,
	p_rec.pnd_attribute2,
	p_rec.pnd_attribute3,
	p_rec.pnd_attribute4,
	p_rec.pnd_attribute5,
	p_rec.pnd_attribute6,
	p_rec.pnd_attribute7,
	p_rec.pnd_attribute8,
	p_rec.pnd_attribute9,
	p_rec.pnd_attribute10,
	p_rec.pnd_attribute11,
	p_rec.pnd_attribute12,
	p_rec.pnd_attribute13,
	p_rec.pnd_attribute14,
	p_rec.pnd_attribute15,
	p_rec.pnd_attribute16,
	p_rec.pnd_attribute17,
	p_rec.pnd_attribute18,
	p_rec.pnd_attribute19,
	p_rec.pnd_attribute20,
	p_rec.pnd_attribute21,
	p_rec.pnd_attribute22,
	p_rec.pnd_attribute23,
	p_rec.pnd_attribute24,
	p_rec.pnd_attribute25,
	p_rec.pnd_attribute26,
	p_rec.pnd_attribute27,
	p_rec.pnd_attribute28,
	p_rec.pnd_attribute29,
	p_rec.pnd_attribute30,
	p_rec.request_id,
	p_rec.program_application_id,
	p_rec.program_id,
	p_rec.program_update_date,
	p_rec.object_version_number
	, l_created_by,
   	l_creation_date,
   	l_last_update_date,
   	l_last_updated_by,
   	l_last_update_login
  );
Line: 259

End dt_insert_dml;
Line: 264

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

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

End insert_dml;
Line: 324

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

  Cursor C_Sel1 is select ben_pl_dpnt_cvg_ctfn_f_s.nextval from sys.dual;
Line: 345

End pre_insert;
Line: 379

Procedure post_insert
	(p_rec 			 in ben_pnd_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: 396

    ben_pnd_rki.after_insert
      (
  p_pl_dpnt_cvg_ctfn_id           =>p_rec.pl_dpnt_cvg_ctfn_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_pl_id                         =>p_rec.pl_id
 ,p_pfd_flag                      =>p_rec.pfd_flag
 ,p_ctfn_rqd_when_rl              =>p_rec.ctfn_rqd_when_rl
 ,p_lack_ctfn_sspnd_enrt_flag     =>p_rec.lack_ctfn_sspnd_enrt_flag
 ,p_dpnt_cvg_ctfn_typ_cd          =>p_rec.dpnt_cvg_ctfn_typ_cd
 ,p_rqd_flag                      =>p_rec.rqd_flag
 ,p_rlshp_typ_cd                  =>p_rec.rlshp_typ_cd
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_pnd_attribute_category        =>p_rec.pnd_attribute_category
 ,p_pnd_attribute1                =>p_rec.pnd_attribute1
 ,p_pnd_attribute2                =>p_rec.pnd_attribute2
 ,p_pnd_attribute3                =>p_rec.pnd_attribute3
 ,p_pnd_attribute4                =>p_rec.pnd_attribute4
 ,p_pnd_attribute5                =>p_rec.pnd_attribute5
 ,p_pnd_attribute6                =>p_rec.pnd_attribute6
 ,p_pnd_attribute7                =>p_rec.pnd_attribute7
 ,p_pnd_attribute8                =>p_rec.pnd_attribute8
 ,p_pnd_attribute9                =>p_rec.pnd_attribute9
 ,p_pnd_attribute10               =>p_rec.pnd_attribute10
 ,p_pnd_attribute11               =>p_rec.pnd_attribute11
 ,p_pnd_attribute12               =>p_rec.pnd_attribute12
 ,p_pnd_attribute13               =>p_rec.pnd_attribute13
 ,p_pnd_attribute14               =>p_rec.pnd_attribute14
 ,p_pnd_attribute15               =>p_rec.pnd_attribute15
 ,p_pnd_attribute16               =>p_rec.pnd_attribute16
 ,p_pnd_attribute17               =>p_rec.pnd_attribute17
 ,p_pnd_attribute18               =>p_rec.pnd_attribute18
 ,p_pnd_attribute19               =>p_rec.pnd_attribute19
 ,p_pnd_attribute20               =>p_rec.pnd_attribute20
 ,p_pnd_attribute21               =>p_rec.pnd_attribute21
 ,p_pnd_attribute22               =>p_rec.pnd_attribute22
 ,p_pnd_attribute23               =>p_rec.pnd_attribute23
 ,p_pnd_attribute24               =>p_rec.pnd_attribute24
 ,p_pnd_attribute25               =>p_rec.pnd_attribute25
 ,p_pnd_attribute26               =>p_rec.pnd_attribute26
 ,p_pnd_attribute27               =>p_rec.pnd_attribute27
 ,p_pnd_attribute28               =>p_rec.pnd_attribute28
 ,p_pnd_attribute29               =>p_rec.pnd_attribute29
 ,p_pnd_attribute30               =>p_rec.pnd_attribute30
 ,p_request_id                    =>p_rec.request_id
 ,p_program_application_id        =>p_rec.program_application_id
 ,p_program_id                    =>p_rec.program_id
 ,p_program_update_date           =>p_rec.program_update_date
 ,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: 464

End post_insert;
Line: 552

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

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

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

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

  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);
Line: 655

  p_program_update_date          in date             default null,
  p_object_version_number        out nocopy number,
  p_effective_date		 in date
  ) is
--
  l_rec		ben_pnd_shd.g_rec_type;
Line: 717

  p_program_update_date,
  null
  );