DBA Data[Home] [Help]

APPS.HXC_HAT_DEL SQL Statements

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

Line: 52

Procedure delete_dml
  (p_rec in hxc_hat_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 60

	l_proc := g_package||'delete_dml';
Line: 68

  delete from hxc_alias_types
  where alias_type_id = p_rec.alias_type_id;
Line: 86

End delete_dml;
Line: 120

Procedure pre_delete(p_rec in hxc_hat_shd.g_rec_type) is
--
cursor c_dep_comp(p_alias_type_id hxc_alias_types.alias_type_id%TYPE) is
   select alias_type_component_id,object_version_number
   from hxc_alias_type_components hac
   where alias_type_id = p_alias_type_id;
Line: 132

	l_proc := g_package||'pre_delete';
Line: 140

     hxc_alias_type_comp_api.delete_alias_type_comp(
			p_alias_type_component_id => l_alias_type_component_id,
			p_object_version_number => l_object_version_number);
Line: 149

End pre_delete;
Line: 183

Procedure post_delete(p_rec in hxc_hat_shd.g_rec_type) is
--
  l_proc  varchar2(72);
Line: 189

	l_proc := g_package||'post_delete';
Line: 194

    hxc_hat_rkd.after_delete
      (p_alias_type_id
      => p_rec.alias_type_id
      ,p_alias_type_o
      => hxc_hat_shd.g_old_rec.alias_type
      ,p_reference_object_o
      => hxc_hat_shd.g_old_rec.reference_object
      ,p_object_version_number_o
      => hxc_hat_shd.g_old_rec.object_version_number
      );
Line: 218

End post_delete;
Line: 245

  hxc_hat_bus.delete_validate(p_rec);
Line: 252

  hxc_hat_del.pre_delete(p_rec);
Line: 256

  hxc_hat_del.delete_dml(p_rec);
Line: 260

  hxc_hat_del.post_delete(p_rec);