DBA Data[Home] [Help]

APPS.HXC_ATC_INS SQL Statements

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

Line: 82

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

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

  insert into hxc_alias_type_components
      (alias_type_component_id
      ,component_name
      ,component_type
      ,mapping_component_id
      ,alias_type_id
      ,object_version_number
      ,creation_date
,created_by
,last_updated_by
,last_update_date
,last_update_login

      )
  Values
    (p_rec.alias_type_component_id
    ,p_rec.component_name
    ,p_rec.component_type
    ,p_rec.mapping_component_id
    ,p_rec.alias_type_id
    ,p_rec.object_version_number
    ,sysdate
 ,fnd_global.user_id
 ,fnd_global.user_id
 ,sysdate
 ,fnd_global.login_id
    );
Line: 151

End insert_dml;
Line: 190

Procedure pre_insert
  (p_rec  in out nocopy hxc_atc_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select hxc_alias_type_components_s.nextval from sys.dual;
Line: 197

    Select null
      from hxc_alias_type_components
     where alias_type_component_id =
             hxc_atc_ins.g_alias_type_component_id_i;
Line: 207

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

End pre_insert;
Line: 282

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

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

    hxc_atc_rki.after_insert
      (p_alias_type_component_id
      => p_rec.alias_type_component_id
      ,p_component_name
      => p_rec.component_name
      ,p_component_type
      => p_rec.component_type
      ,p_mapping_component_id
      => p_rec.mapping_component_id
      ,p_alias_type_id
      => p_rec.alias_type_id
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 325

End post_insert;
Line: 345

  hxc_atc_bus.insert_validate
     (p_rec
     );
Line: 354

  hxc_atc_ins.pre_insert(p_rec);
Line: 358

  hxc_atc_ins.insert_dml(p_rec);
Line: 362

  hxc_atc_ins.post_insert
     (p_rec
     );