DBA Data[Home] [Help]

APPS.FF_ARC_UPD SQL Statements

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

Line: 54

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

  l_last_update_date    ff_archive_items.last_update_date%TYPE;
Line: 58

  l_last_updated_by     ff_archive_items.last_updated_by%TYPE;
Line: 59

  l_last_update_login   ff_archive_items.last_update_login%TYPE;
Line: 72

  l_last_update_date   := sysdate;
Line: 73

  l_last_updated_by    := fnd_global.user_id;
Line: 74

  l_last_update_login  := fnd_global.login_id;
Line: 78

  update ff_archive_items
  set
  archive_item_id                   = p_rec.archive_item_id,
  value                             = p_rec.value,
  last_update_date                  = l_last_update_date,
  last_updated_by		    = l_last_updated_by,
  last_update_login		    = l_last_update_login,
  object_version_number             = p_rec.object_version_number
  where archive_item_id = p_rec.archive_item_id;
Line: 111

End update_dml;
Line: 145

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

End pre_update;
Line: 187

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

End post_update;
Line: 304

  ff_arc_bus.update_validate(p_rec);
Line: 308

  pre_update(p_rec);
Line: 312

  update_dml(p_rec);
Line: 316

  post_update(p_rec);