DBA Data[Home] [Help]

APPS.HR_EXU_UPD SQL Statements

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

Line: 54

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

  update hr_exception_usages
  set
  exception_usage_id                = p_rec.exception_usage_id,
  exception_reason                  = p_rec.exception_reason,
  object_version_number             = p_rec.object_version_number
  where exception_usage_id = p_rec.exception_usage_id;
Line: 99

End update_dml;
Line: 133

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

End pre_update;
Line: 175

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

End post_update;
Line: 301

  hr_exu_bus.update_validate(p_rec);
Line: 305

  pre_update(p_rec);
Line: 309

  update_dml(p_rec);
Line: 313

  post_update(p_rec);