DBA Data[Home] [Help]

APPS.PER_ZA_QUA_INS SQL Statements

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

Line: 53

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

  insert into per_za_formal_qualifications
  (	qualification_id,
	level_id,
	field_of_learning,
	sub_field,
	registration_date,
	registration_number
  )
  Values
  (	p_rec.qualification_id,
	p_rec.level_id,
	p_rec.field_of_learning,
	p_rec.sub_field,
	p_rec.registration_date,
	p_rec.registration_number
  );
Line: 104

End insert_dml;
Line: 138

Procedure post_insert(p_rec in per_za_qua_shd.g_za_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 146

End post_insert;
Line: 174

  insert_dml(p_rec);
Line: 178

  post_insert(p_rec);