DBA Data[Home] [Help]

APPS.BEN_PSQ_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_psq_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 65

  insert into ben_pymt_sched_py_freq
  (	pymt_sched_py_freq_id,
	py_freq_cd,
	dflt_flag,
	business_group_id,
	acty_rt_pymt_sched_id,
	psq_attribute_category,
	psq_attribute1,
	psq_attribute2,
	psq_attribute3,
	psq_attribute4,
	psq_attribute5,
	psq_attribute6,
	psq_attribute7,
	psq_attribute8,
	psq_attribute9,
	psq_attribute10,
	psq_attribute11,
	psq_attribute12,
	psq_attribute13,
	psq_attribute14,
	psq_attribute15,
	psq_attribute16,
	psq_attribute17,
	psq_attribute18,
	psq_attribute19,
	psq_attribute20,
	psq_attribute21,
	psq_attribute22,
	psq_attribute23,
	psq_attribute24,
	psq_attribute25,
	psq_attribute26,
	psq_attribute27,
	psq_attribute28,
	psq_attribute29,
	psq_attribute30,
	object_version_number
  )
  Values
  (	p_rec.pymt_sched_py_freq_id,
	p_rec.py_freq_cd,
	p_rec.dflt_flag,
	p_rec.business_group_id,
	p_rec.acty_rt_pymt_sched_id,
	p_rec.psq_attribute_category,
	p_rec.psq_attribute1,
	p_rec.psq_attribute2,
	p_rec.psq_attribute3,
	p_rec.psq_attribute4,
	p_rec.psq_attribute5,
	p_rec.psq_attribute6,
	p_rec.psq_attribute7,
	p_rec.psq_attribute8,
	p_rec.psq_attribute9,
	p_rec.psq_attribute10,
	p_rec.psq_attribute11,
	p_rec.psq_attribute12,
	p_rec.psq_attribute13,
	p_rec.psq_attribute14,
	p_rec.psq_attribute15,
	p_rec.psq_attribute16,
	p_rec.psq_attribute17,
	p_rec.psq_attribute18,
	p_rec.psq_attribute19,
	p_rec.psq_attribute20,
	p_rec.psq_attribute21,
	p_rec.psq_attribute22,
	p_rec.psq_attribute23,
	p_rec.psq_attribute24,
	p_rec.psq_attribute25,
	p_rec.psq_attribute26,
	p_rec.psq_attribute27,
	p_rec.psq_attribute28,
	p_rec.psq_attribute29,
	p_rec.psq_attribute30,
	p_rec.object_version_number
  );
Line: 166

End insert_dml;
Line: 205

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

    select BEN_PYMT_SCHED_PY_FREQ_S.nextval
    from   sys.dual;
Line: 225

End pre_insert;
Line: 259

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

    ben_psq_rki.after_insert
      (
  p_pymt_sched_py_freq_id         =>p_rec.pymt_sched_py_freq_id
 ,p_py_freq_cd                    =>p_rec.py_freq_cd
 ,p_dflt_flag                     =>p_rec.dflt_flag
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_acty_rt_pymt_sched_id         =>p_rec.acty_rt_pymt_sched_id
 ,p_psq_attribute_category        =>p_rec.psq_attribute_category
 ,p_psq_attribute1                =>p_rec.psq_attribute1
 ,p_psq_attribute2                =>p_rec.psq_attribute2
 ,p_psq_attribute3                =>p_rec.psq_attribute3
 ,p_psq_attribute4                =>p_rec.psq_attribute4
 ,p_psq_attribute5                =>p_rec.psq_attribute5
 ,p_psq_attribute6                =>p_rec.psq_attribute6
 ,p_psq_attribute7                =>p_rec.psq_attribute7
 ,p_psq_attribute8                =>p_rec.psq_attribute8
 ,p_psq_attribute9                =>p_rec.psq_attribute9
 ,p_psq_attribute10               =>p_rec.psq_attribute10
 ,p_psq_attribute11               =>p_rec.psq_attribute11
 ,p_psq_attribute12               =>p_rec.psq_attribute12
 ,p_psq_attribute13               =>p_rec.psq_attribute13
 ,p_psq_attribute14               =>p_rec.psq_attribute14
 ,p_psq_attribute15               =>p_rec.psq_attribute15
 ,p_psq_attribute16               =>p_rec.psq_attribute16
 ,p_psq_attribute17               =>p_rec.psq_attribute17
 ,p_psq_attribute18               =>p_rec.psq_attribute18
 ,p_psq_attribute19               =>p_rec.psq_attribute19
 ,p_psq_attribute20               =>p_rec.psq_attribute20
 ,p_psq_attribute21               =>p_rec.psq_attribute21
 ,p_psq_attribute22               =>p_rec.psq_attribute22
 ,p_psq_attribute23               =>p_rec.psq_attribute23
 ,p_psq_attribute24               =>p_rec.psq_attribute24
 ,p_psq_attribute25               =>p_rec.psq_attribute25
 ,p_psq_attribute26               =>p_rec.psq_attribute26
 ,p_psq_attribute27               =>p_rec.psq_attribute27
 ,p_psq_attribute28               =>p_rec.psq_attribute28
 ,p_psq_attribute29               =>p_rec.psq_attribute29
 ,p_psq_attribute30               =>p_rec.psq_attribute30
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
      );
Line: 328

End post_insert;
Line: 346

  ben_psq_bus.insert_validate(p_rec
  ,p_effective_date);
Line: 351

  pre_insert(p_rec);
Line: 355

  insert_dml(p_rec);
Line: 359

  post_insert(
p_effective_date,p_rec);