DBA Data[Home] [Help]

APPS.PAY_SGB_UPD SQL Statements

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

Line: 54

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

  update pay_shadow_gu_bal_exclusions
    set
     grossup_balances_id             = p_rec.grossup_balances_id
    ,source_id                       = p_rec.source_id
    ,source_type                     = p_rec.source_type
    ,balance_type_name               = p_rec.balance_type_name
    ,balance_type_id                 = p_rec.balance_type_id
    ,exclusion_rule_id               = p_rec.exclusion_rule_id
    ,object_version_number           = p_rec.object_version_number
    where grossup_balances_id = p_rec.grossup_balances_id;
Line: 104

End update_dml;
Line: 138

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

End pre_update;
Line: 182

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

End post_update;
Line: 296

  pay_sgb_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 303

  pay_sgb_upd.pre_update(p_rec);
Line: 307

  pay_sgb_upd.update_dml(p_rec);
Line: 311

  pay_sgb_upd.post_update
     (p_rec);