DBA Data[Home] [Help]

APPS.BEN_DSQ_INS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 53

Procedure insert_dml(p_rec in out nocopy ben_dsq_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 65

  insert into ben_ded_sched_py_freq
  (	ded_sched_py_freq_id,
	py_freq_cd,
	dflt_flag,
	acty_rt_ded_sched_id,
	business_group_id,
	dsq_attribute_category,
	dsq_attribute1,
	dsq_attribute2,
	dsq_attribute3,
	dsq_attribute4,
	dsq_attribute5,
	dsq_attribute6,
	dsq_attribute7,
	dsq_attribute8,
	dsq_attribute9,
	dsq_attribute10,
	dsq_attribute11,
	dsq_attribute12,
	dsq_attribute13,
	dsq_attribute14,
	dsq_attribute15,
	dsq_attribute16,
	dsq_attribute17,
	dsq_attribute18,
	dsq_attribute19,
	dsq_attribute20,
	dsq_attribute21,
	dsq_attribute22,
	dsq_attribute23,
	dsq_attribute24,
	dsq_attribute25,
	dsq_attribute26,
	dsq_attribute27,
	dsq_attribute28,
	dsq_attribute29,
	dsq_attribute30,
	object_version_number
  )
  Values
  (	p_rec.ded_sched_py_freq_id,
	p_rec.py_freq_cd,
	p_rec.dflt_flag,
	p_rec.acty_rt_ded_sched_id,
	p_rec.business_group_id,
	p_rec.dsq_attribute_category,
	p_rec.dsq_attribute1,
	p_rec.dsq_attribute2,
	p_rec.dsq_attribute3,
	p_rec.dsq_attribute4,
	p_rec.dsq_attribute5,
	p_rec.dsq_attribute6,
	p_rec.dsq_attribute7,
	p_rec.dsq_attribute8,
	p_rec.dsq_attribute9,
	p_rec.dsq_attribute10,
	p_rec.dsq_attribute11,
	p_rec.dsq_attribute12,
	p_rec.dsq_attribute13,
	p_rec.dsq_attribute14,
	p_rec.dsq_attribute15,
	p_rec.dsq_attribute16,
	p_rec.dsq_attribute17,
	p_rec.dsq_attribute18,
	p_rec.dsq_attribute19,
	p_rec.dsq_attribute20,
	p_rec.dsq_attribute21,
	p_rec.dsq_attribute22,
	p_rec.dsq_attribute23,
	p_rec.dsq_attribute24,
	p_rec.dsq_attribute25,
	p_rec.dsq_attribute26,
	p_rec.dsq_attribute27,
	p_rec.dsq_attribute28,
	p_rec.dsq_attribute29,
	p_rec.dsq_attribute30,
	p_rec.object_version_number
  );
Line: 166

End insert_dml;
Line: 205

Procedure pre_insert(p_rec  in out nocopy ben_dsq_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_insert';
Line: 209

         select ben_ded_sched_py_freq_s.nextval
         from sys.dual;
Line: 220

End pre_insert;
Line: 254

Procedure post_insert(
p_effective_date in date,p_rec in ben_dsq_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 267

    ben_dsq_rki.after_insert
      (
  p_ded_sched_py_freq_id          =>p_rec.ded_sched_py_freq_id
 ,p_py_freq_cd                    =>p_rec.py_freq_cd
 ,p_dflt_flag                     =>p_rec.dflt_flag
 ,p_acty_rt_ded_sched_id          =>p_rec.acty_rt_ded_sched_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_dsq_attribute_category        =>p_rec.dsq_attribute_category
 ,p_dsq_attribute1                =>p_rec.dsq_attribute1
 ,p_dsq_attribute2                =>p_rec.dsq_attribute2
 ,p_dsq_attribute3                =>p_rec.dsq_attribute3
 ,p_dsq_attribute4                =>p_rec.dsq_attribute4
 ,p_dsq_attribute5                =>p_rec.dsq_attribute5
 ,p_dsq_attribute6                =>p_rec.dsq_attribute6
 ,p_dsq_attribute7                =>p_rec.dsq_attribute7
 ,p_dsq_attribute8                =>p_rec.dsq_attribute8
 ,p_dsq_attribute9                =>p_rec.dsq_attribute9
 ,p_dsq_attribute10               =>p_rec.dsq_attribute10
 ,p_dsq_attribute11               =>p_rec.dsq_attribute11
 ,p_dsq_attribute12               =>p_rec.dsq_attribute12
 ,p_dsq_attribute13               =>p_rec.dsq_attribute13
 ,p_dsq_attribute14               =>p_rec.dsq_attribute14
 ,p_dsq_attribute15               =>p_rec.dsq_attribute15
 ,p_dsq_attribute16               =>p_rec.dsq_attribute16
 ,p_dsq_attribute17               =>p_rec.dsq_attribute17
 ,p_dsq_attribute18               =>p_rec.dsq_attribute18
 ,p_dsq_attribute19               =>p_rec.dsq_attribute19
 ,p_dsq_attribute20               =>p_rec.dsq_attribute20
 ,p_dsq_attribute21               =>p_rec.dsq_attribute21
 ,p_dsq_attribute22               =>p_rec.dsq_attribute22
 ,p_dsq_attribute23               =>p_rec.dsq_attribute23
 ,p_dsq_attribute24               =>p_rec.dsq_attribute24
 ,p_dsq_attribute25               =>p_rec.dsq_attribute25
 ,p_dsq_attribute26               =>p_rec.dsq_attribute26
 ,p_dsq_attribute27               =>p_rec.dsq_attribute27
 ,p_dsq_attribute28               =>p_rec.dsq_attribute28
 ,p_dsq_attribute29               =>p_rec.dsq_attribute29
 ,p_dsq_attribute30               =>p_rec.dsq_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
      );
Line: 323

End post_insert;
Line: 341

  ben_dsq_bus.insert_validate(p_rec
  ,p_effective_date);
Line: 346

  pre_insert(p_rec);
Line: 350

  insert_dml(p_rec);
Line: 354

  post_insert(
p_effective_date,p_rec);