DBA Data[Home] [Help]

APPS.HR_TRV_UPD SQL Statements

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

Line: 54

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

  update hr_api_transaction_values
  set
  transaction_value_id              = p_rec.transaction_value_id,
  transaction_step_id               = p_rec.transaction_step_id,
  datatype                          = p_rec.datatype,
  name                              = p_rec.name,
  varchar2_value                    = p_rec.varchar2_value,
  number_value                      = p_rec.number_value,
  date_value                        = p_rec.date_value,
  original_varchar2_value           = p_rec.original_varchar2_value,
  original_number_value             = p_rec.original_number_value,
  original_date_value               = p_rec.original_date_value
  where transaction_value_id = p_rec.transaction_value_id;
Line: 103

End update_dml;
Line: 137

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

End pre_update;
Line: 179

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

End post_update;
Line: 324

  hr_trv_bus.update_validate(p_rec);
Line: 328

  pre_update(p_rec);
Line: 332

  update_dml(p_rec);
Line: 336

  post_update(p_rec);