DBA Data[Home] [Help]

APPS.HR_CAU_UPD SQL Statements

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

Line: 54

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

  update hr_calendar_usages
  set
  start_date                        = p_rec.start_date,
  end_date                          = p_rec.end_date,
  object_version_number             = p_rec.object_version_number
  where calendar_usage_id = p_rec.calendar_usage_id;
Line: 99

End update_dml;
Line: 133

Procedure pre_update(p_rec in hr_cau_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_cau_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 183

End post_update;
Line: 306

  hr_cau_bus.update_validate(p_rec);
Line: 310

  pre_update(p_rec);
Line: 314

  update_dml(p_rec);
Line: 318

  post_update(p_rec);