DBA Data[Home] [Help]

APPS.BEN_BMN_UPD SQL Statements

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

Line: 54

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

  update ben_reporting
  set
  reporting_id                      = p_rec.reporting_id,
  benefit_action_id                 = p_rec.benefit_action_id,
  thread_id                         = p_rec.thread_id,
  sequence                          = p_rec.sequence,
  text                              = p_rec.text,
  rep_typ_cd                        = p_rec.rep_typ_cd,
  error_message_code                = p_rec.error_message_code,
  national_identifier               = p_rec.national_identifier,
  related_person_ler_id             = p_rec.related_person_ler_id,
  temporal_ler_id                   = p_rec.temporal_ler_id,
  ler_id                            = p_rec.ler_id,
  person_id                         = p_rec.person_id,
  pgm_id                            = p_rec.pgm_id,
  pl_id                             = p_rec.pl_id,
  related_person_id                 = p_rec.related_person_id,
  oipl_id                           = p_rec.oipl_id,
  pl_typ_id                         = p_rec.pl_typ_id,
  actl_prem_id                      = p_rec.actl_prem_id,
  val                               = p_rec.val,
  mo_num                            = p_rec.mo_num,
  yr_num                            = p_rec.yr_num,
  object_version_number             = p_rec.object_version_number
  where reporting_id = p_rec.reporting_id;
Line: 118

End update_dml;
Line: 152

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

End pre_update;
Line: 194

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

End post_update;
Line: 377

  ben_bmn_bus.update_validate(p_rec);
Line: 381

  pre_update(p_rec);
Line: 385

  update_dml(p_rec);
Line: 389

  post_update(p_rec);