DBA Data[Home] [Help]

APPS.HR_EXU_INS SQL Statements

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

Line: 53

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

  insert into hr_exception_usages
  (	exception_usage_id,
	exception_reason,
	calendar_id,
	calendar_usage_id,
	object_version_number,
	exception_id
  )
  Values
  (	p_rec.exception_usage_id,
	p_rec.exception_reason,
	p_rec.calendar_id,
	p_rec.calendar_usage_id,
	p_rec.object_version_number,
	p_rec.exception_id
  );
Line: 104

End insert_dml;
Line: 143

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

  Cursor C_Sel1 is select hr_exception_usages_s.nextval from sys.dual;
Line: 160

End pre_insert;
Line: 194

Procedure post_insert(p_rec in hr_exu_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 202

End post_insert;
Line: 229

  hr_exu_bus.insert_validate(p_rec);
Line: 233

  pre_insert(p_rec);
Line: 237

  insert_dml(p_rec);
Line: 241

  post_insert(p_rec);