DBA Data[Home] [Help]

APPS.PER_ZA_TRA_UPD SQL Statements

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

Line: 54

Procedure update_dml(p_rec in out nocopy per_za_tra_shd.g_za_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 68

  update per_za_training
  set
	level_id			= p_rec.level_id,
  	person_id 			= p_rec.person_id,
  	field_of_learning		= p_rec.field_of_learning,
	course				= p_rec.course,
	sub_field			= p_rec.sub_field,
	credit				= p_rec.credit,
	notional_hours      = p_rec.notional_hours,
	registration_date		= p_rec.registration_date,
	registration_number		= p_rec.registration_number
  where training_id 			= p_rec.training_id;
Line: 105

End update_dml;
Line: 139

Procedure pre_update(p_rec in per_za_tra_shd.g_za_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_update';
Line: 147

End pre_update;
Line: 181

Procedure post_update(p_rec in per_za_tra_shd.g_za_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 189

End post_update;
Line: 233

  pre_update(p_rec);
Line: 237

  update_dml(p_rec);
Line: 241

  post_update(p_rec);