DBA Data[Home] [Help]

APPS.BEN_CCP_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_ccp_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_cvrd_dpnt_ctfn_prvdd_f t
    where  t.cvrd_dpnt_ctfn_prvdd_id       = p_rec.cvrd_dpnt_ctfn_prvdd_id
    and    t.effective_start_date =
             ben_ccp_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_cvrd_dpnt_ctfn_prvdd_f.last_update_date%TYPE;
Line: 79

  l_last_updated_by     ben_cvrd_dpnt_ctfn_prvdd_f.last_updated_by%TYPE;
Line: 80

  l_last_update_login   ben_cvrd_dpnt_ctfn_prvdd_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_cvrd_dpnt_ctfn_prvdd_f
  (	cvrd_dpnt_ctfn_prvdd_id,
	effective_start_date,
	effective_end_date,
	dpnt_dsgn_ctfn_typ_cd,
	dpnt_dsgn_ctfn_rqd_flag,
	dpnt_dsgn_ctfn_recd_dt,
	elig_cvrd_dpnt_id,
	prtt_enrt_actn_id,
	business_group_id,
	ccp_attribute_category,
	ccp_attribute1,
	ccp_attribute2,
	ccp_attribute3,
	ccp_attribute4,
	ccp_attribute5,
	ccp_attribute6,
	ccp_attribute7,
	ccp_attribute8,
	ccp_attribute9,
	ccp_attribute10,
	ccp_attribute11,
	ccp_attribute12,
	ccp_attribute13,
	ccp_attribute14,
	ccp_attribute15,
	ccp_attribute16,
	ccp_attribute17,
	ccp_attribute18,
	ccp_attribute19,
	ccp_attribute20,
	ccp_attribute21,
	ccp_attribute22,
	ccp_attribute23,
	ccp_attribute24,
	ccp_attribute25,
	ccp_attribute26,
	ccp_attribute27,
	ccp_attribute28,
	ccp_attribute29,
	ccp_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.cvrd_dpnt_ctfn_prvdd_id,
	p_rec.effective_start_date,
	p_rec.effective_end_date,
	p_rec.dpnt_dsgn_ctfn_typ_cd,
	p_rec.dpnt_dsgn_ctfn_rqd_flag,
	p_rec.dpnt_dsgn_ctfn_recd_dt,
	p_rec.elig_cvrd_dpnt_id,
	p_rec.prtt_enrt_actn_id,
	p_rec.business_group_id,
	p_rec.ccp_attribute_category,
	p_rec.ccp_attribute1,
	p_rec.ccp_attribute2,
	p_rec.ccp_attribute3,
	p_rec.ccp_attribute4,
	p_rec.ccp_attribute5,
	p_rec.ccp_attribute6,
	p_rec.ccp_attribute7,
	p_rec.ccp_attribute8,
	p_rec.ccp_attribute9,
	p_rec.ccp_attribute10,
	p_rec.ccp_attribute11,
	p_rec.ccp_attribute12,
	p_rec.ccp_attribute13,
	p_rec.ccp_attribute14,
	p_rec.ccp_attribute15,
	p_rec.ccp_attribute16,
	p_rec.ccp_attribute17,
	p_rec.ccp_attribute18,
	p_rec.ccp_attribute19,
	p_rec.ccp_attribute20,
	p_rec.ccp_attribute21,
	p_rec.ccp_attribute22,
	p_rec.ccp_attribute23,
	p_rec.ccp_attribute24,
	p_rec.ccp_attribute25,
	p_rec.ccp_attribute26,
	p_rec.ccp_attribute27,
	p_rec.ccp_attribute28,
	p_rec.ccp_attribute29,
	p_rec.ccp_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: 255

End dt_insert_dml;
Line: 260

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

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

End insert_dml;
Line: 320

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

    select ben_cvrd_dpnt_ctfn_prvdd_f_s.nextval
    from sys.dual;
Line: 347

End pre_insert;
Line: 381

Procedure post_insert
	(p_rec 			 in ben_ccp_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: 398

    ben_ccp_rki.after_insert
      (
  p_cvrd_dpnt_ctfn_prvdd_id       =>p_rec.cvrd_dpnt_ctfn_prvdd_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_dpnt_dsgn_ctfn_typ_cd         =>p_rec.dpnt_dsgn_ctfn_typ_cd
 ,p_dpnt_dsgn_ctfn_rqd_flag       =>p_rec.dpnt_dsgn_ctfn_rqd_flag
 ,p_dpnt_dsgn_ctfn_recd_dt        =>p_rec.dpnt_dsgn_ctfn_recd_dt
 ,p_elig_cvrd_dpnt_id             =>p_rec.elig_cvrd_dpnt_id
 ,p_prtt_enrt_actn_id             =>p_rec.prtt_enrt_actn_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_ccp_attribute_category        =>p_rec.ccp_attribute_category
 ,p_ccp_attribute1                =>p_rec.ccp_attribute1
 ,p_ccp_attribute2                =>p_rec.ccp_attribute2
 ,p_ccp_attribute3                =>p_rec.ccp_attribute3
 ,p_ccp_attribute4                =>p_rec.ccp_attribute4
 ,p_ccp_attribute5                =>p_rec.ccp_attribute5
 ,p_ccp_attribute6                =>p_rec.ccp_attribute6
 ,p_ccp_attribute7                =>p_rec.ccp_attribute7
 ,p_ccp_attribute8                =>p_rec.ccp_attribute8
 ,p_ccp_attribute9                =>p_rec.ccp_attribute9
 ,p_ccp_attribute10               =>p_rec.ccp_attribute10
 ,p_ccp_attribute11               =>p_rec.ccp_attribute11
 ,p_ccp_attribute12               =>p_rec.ccp_attribute12
 ,p_ccp_attribute13               =>p_rec.ccp_attribute13
 ,p_ccp_attribute14               =>p_rec.ccp_attribute14
 ,p_ccp_attribute15               =>p_rec.ccp_attribute15
 ,p_ccp_attribute16               =>p_rec.ccp_attribute16
 ,p_ccp_attribute17               =>p_rec.ccp_attribute17
 ,p_ccp_attribute18               =>p_rec.ccp_attribute18
 ,p_ccp_attribute19               =>p_rec.ccp_attribute19
 ,p_ccp_attribute20               =>p_rec.ccp_attribute20
 ,p_ccp_attribute21               =>p_rec.ccp_attribute21
 ,p_ccp_attribute22               =>p_rec.ccp_attribute22
 ,p_ccp_attribute23               =>p_rec.ccp_attribute23
 ,p_ccp_attribute24               =>p_rec.ccp_attribute24
 ,p_ccp_attribute25               =>p_rec.ccp_attribute25
 ,p_ccp_attribute26               =>p_rec.ccp_attribute26
 ,p_ccp_attribute27               =>p_rec.ccp_attribute27
 ,p_ccp_attribute28               =>p_rec.ccp_attribute28
 ,p_ccp_attribute29               =>p_rec.ccp_attribute29
 ,p_ccp_attribute30               =>p_rec.ccp_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: 555

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

  ben_ccp_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: 582

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

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

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

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

  p_program_update_date,
  null
  );