DBA Data[Home] [Help]

APPS.PQH_PTI_INS SQL Statements

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

Line: 47

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

  insert into pqh_ptx_info_types
  (	information_type,
	active_inactive_flag,
	description,
	multiple_occurences_flag,
	legislation_code,
	object_version_number
  )
  Values
  (	p_rec.information_type,
	p_rec.active_inactive_flag,
	p_rec.description,
	p_rec.multiple_occurences_flag,
	p_rec.legislation_code,
	p_rec.object_version_number
  );
Line: 92

End insert_dml;
Line: 131

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

End pre_insert;
Line: 177

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

    pqh_pti_rki.after_insert
      (
  p_information_type              =>p_rec.information_type
 ,p_active_inactive_flag          =>p_rec.active_inactive_flag
 ,p_description                   =>p_rec.description
 ,p_multiple_occurences_flag      =>p_rec.multiple_occurences_flag
 ,p_legislation_code              =>p_rec.legislation_code
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
      );
Line: 215

End post_insert;
Line: 233

  pqh_pti_bus.insert_validate(p_rec
  ,p_effective_date);
Line: 238

  pre_insert(p_rec);
Line: 242

  insert_dml(p_rec);
Line: 246

  post_insert(
p_effective_date,p_rec);