DBA Data[Home] [Help]

APPS.HXC_ULD_INS SQL Statements

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

Line: 54

Procedure insert_dml
  (p_rec in out nocopy hxc_uld_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) ;
Line: 63

  	l_proc := g_package||'insert_dml';
Line: 72

  insert into hxc_layout_comp_definitions
      (layout_comp_definition_id
      ,component_type
      ,component_class
      ,render_type
      ,object_version_number
      ,creation_date
,created_by
,last_updated_by
,last_update_date
,last_update_login
      )
  Values
    (p_rec.layout_comp_definition_id
    ,p_rec.component_type
    ,p_rec.component_class
    ,p_rec.render_type
    ,p_rec.object_version_number
     ,sysdate
 ,fnd_global.user_id
 ,fnd_global.user_id
 ,sysdate
 ,fnd_global.login_id
    );
Line: 121

End insert_dml;
Line: 160

Procedure pre_insert
  (p_rec  in out nocopy hxc_uld_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) ;
Line: 166

  Cursor C_Sel1 is select hxc_layout_comp_definitions_s.nextval from sys.dual;
Line: 171

  	l_proc := g_package||'pre_insert';
Line: 185

End pre_insert;
Line: 219

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

  	l_proc := g_package||'post_insert';
Line: 233

    hxc_uld_rki.after_insert
      (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
      );
Line: 259

End post_insert;
Line: 279

  hxc_uld_bus.insert_validate
     (p_rec
     );
Line: 285

  hxc_uld_ins.pre_insert(p_rec);
Line: 289

  hxc_uld_ins.insert_dml(p_rec);
Line: 293

  hxc_uld_ins.post_insert
     (p_rec
     );