DBA Data[Home] [Help]

APPS.HR_PAE_UPD SQL Statements

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

Line: 54

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

  update hr_pattern_exceptions
  set
  exception_id                      = p_rec.exception_id,
  exception_name                    = p_rec.exception_name,
  exception_end_time                = p_rec.exception_end_time,
  exception_category                = p_rec.exception_category,
  object_version_number             = p_rec.object_version_number
  where exception_id = p_rec.exception_id;
Line: 101

End update_dml;
Line: 135

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

End pre_update;
Line: 177

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

End post_update;
Line: 308

  hr_pae_bus.update_validate(p_rec);
Line: 312

  pre_update(p_rec);
Line: 316

  update_dml(p_rec);
Line: 320

  post_update(p_rec);