DBA Data[Home] [Help]

APPS.PAY_SSR_UPD SQL Statements

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

Line: 51

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

  update pay_shadow_sub_classi_rules
  set
  element_classification            = p_rec.element_classification,
  object_version_number             = p_rec.object_version_number
 ,exclusion_rule_id                 = p_rec.exclusion_rule_id
  where sub_classification_rule_id = p_rec.sub_classification_rule_id;
Line: 90

End update_dml;
Line: 124

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

End pre_update;
Line: 166

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

End post_update;
Line: 279

  pay_ssr_bus.update_validate(p_rec);
Line: 283

  pre_update(p_rec);
Line: 287

  update_dml(p_rec);
Line: 291

  post_update(p_rec);