DBA Data[Home] [Help]

APPS.HXC_HEG_UPD SQL Statements

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

Line: 53

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

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

  update hxc_entity_groups
    set
     entity_group_id                 = p_rec.entity_group_id
    ,name                            = p_rec.name
    ,entity_type                     = p_rec.entity_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
    ,description                     = p_rec.description
    ,business_group_id               = p_rec.business_group_id
    ,legislation_code                = p_rec.legislation_code

    where entity_group_id = p_rec.entity_group_id;
Line: 112

End update_dml;
Line: 144

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

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

End pre_update;
Line: 189

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

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

    hxc_heg_rku.after_update
      (p_entity_group_id
      => p_rec.entity_group_id
      ,p_name
      => p_rec.name
      ,p_entity_type
      => p_rec.entity_type
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_name_o
      => hxc_heg_shd.g_old_rec.name
      ,p_entity_type_o
      => hxc_heg_shd.g_old_rec.entity_type
      ,p_object_version_number_o
      => hxc_heg_shd.g_old_rec.object_version_number
      ,p_description
      => p_rec.description
      ,p_business_group_id
      => p_rec.business_group_id
      ,p_legislation_code
      => p_rec.legislation_code
      ,p_description_o
      => hxc_heg_shd.g_old_rec.description
      ,p_business_group_id_o
      => hxc_heg_shd.g_old_rec.business_group_id
      ,p_legislation_code_o
      => hxc_heg_shd.g_old_rec.legislation_code
      );
Line: 244

End post_update;
Line: 335

  hxc_heg_bus.update_validate
     (p_rec
     );
Line: 341

  hxc_heg_upd.pre_update(p_rec);
Line: 345

  hxc_heg_upd.update_dml(p_rec);
Line: 349

  hxc_heg_upd.post_update
     (p_rec
     );