DBA Data[Home] [Help]

APPS.HR_AHK_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_ahk_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 66

  update hr_api_hooks
  set
  api_hook_id                       = p_rec.api_hook_id,
  api_module_id                     = p_rec.api_module_id,
  api_hook_type                     = p_rec.api_hook_type,
  hook_package                      = p_rec.hook_package,
  hook_procedure                    = p_rec.hook_procedure,
  legislation_code                  = p_rec.legislation_code,
  legislation_package               = p_rec.legislation_package,
  legislation_function              = p_rec.legislation_function,
  encoded_error                     = p_rec.encoded_error
  where api_hook_id = p_rec.api_hook_id;
Line: 102

End update_dml;
Line: 136

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

End pre_update;
Line: 178

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

End post_update;
Line: 310

  hr_ahk_bus.update_validate(p_rec, p_effective_date);
Line: 314

  pre_update(p_rec);
Line: 318

  update_dml(p_rec);
Line: 322

  post_update(p_rec);