DBA Data[Home] [Help]

APPS.HXC_ULD_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_uld_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) ;
Line: 64

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

  update hxc_layout_comp_definitions
    set
     layout_comp_definition_id       = p_rec.layout_comp_definition_id
    ,component_type                  = p_rec.component_type
    ,component_class                 = p_rec.component_class
    ,render_type                     = p_rec.render_type
    ,object_version_number           = p_rec.object_version_number
        ,last_updated_by		     = fnd_global.user_id
    ,last_update_date		     = sysdate
    ,last_update_login	             = fnd_global.login_id

    where layout_comp_definition_id = p_rec.layout_comp_definition_id;
Line: 113

End update_dml;
Line: 147

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

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

End pre_update;
Line: 194

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

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

    hxc_uld_rku.after_update
      (p_layout_comp_definition_id
      => p_rec.layout_comp_definition_id
      ,p_component_type
      => p_rec.component_type
      ,p_component_class
      => p_rec.component_class
      ,p_render_type
      => p_rec.render_type
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_component_type_o
      => hxc_uld_shd.g_old_rec.component_type
      ,p_component_class_o
      => hxc_uld_shd.g_old_rec.component_class
      ,p_render_type_o
      => hxc_uld_shd.g_old_rec.render_type
      ,p_object_version_number_o
      => hxc_uld_shd.g_old_rec.object_version_number
      );
Line: 242

End post_update;
Line: 343

  hxc_uld_bus.update_validate
     (p_rec
     );
Line: 349

  hxc_uld_upd.pre_update(p_rec);
Line: 353

  hxc_uld_upd.update_dml(p_rec);
Line: 357

  hxc_uld_upd.post_update
     (p_rec
     );