DBA Data[Home] [Help]

APPS.HXC_TKS_UPD SQL Statements

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

Line: 55

Procedure update_dml
  (p_rec in out nocopy hxc_tks_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) ;
Line: 64

  	l_proc := g_package||'update_dml';
Line: 73

  update hxc_tk_timekeeper_submits
    set
     submission_id                   = p_rec.submission_id
    ,resource_id                     = p_rec.resource_id


    where submission_id = p_rec.submission_id;
Line: 106

End update_dml;
Line: 140

Procedure pre_update
  (p_rec in hxc_tks_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) ;
Line: 149

  	l_proc := g_package||'pre_update';
Line: 153

End pre_update;
Line: 187

Procedure post_update
  (p_rec                          in hxc_tks_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) ;
Line: 196

  	l_proc := g_package||'post_update';
Line: 201

  /*  hxc_tks_rku.after_update
      (p_submission_id
      => p_rec.submission_id
      ,p_resource_id
      => p_rec.resource_id
      ,p_resource_id_o
      => hxc_tks_shd.g_old_rec.resource_id
      );
Line: 224

End post_update;
Line: 316

  hxc_tks_bus.update_validate
     (p_rec
     );
Line: 325

  hxc_tks_upd.pre_update(p_rec);
Line: 329

  hxc_tks_upd.update_dml(p_rec);
Line: 333

  hxc_tks_upd.post_update
     (p_rec
     );