DBA Data[Home] [Help]

APPS.HXC_ATC_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id
      from per_business_groups pbg
         , hxc_alias_type_components atc
     where atc.alias_type_component_id = p_alias_type_component_id;
Line: 98

    select pbg.legislation_code
      from per_business_groups     pbg
         , hxc_alias_type_components atc
     where atc.alias_type_component_id = p_alias_type_component_id;
Line: 195

Procedure chk_non_updateable_args
  (p_rec in hxc_atc_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 216

End chk_non_updateable_args;
Line: 225

select 'error'
from sys.dual
where exists(
	     select 'x'
	     from hxc_alias_type_components hac
	     where hac.alias_type_id = p_alias_type_id AND
		   hac.mapping_component_id  = p_mapping_component_id AND
		   hac.alias_type_component_id <> nvl(p_alias_type_component_id,-999)
	     );
Line: 267

select 'error'
from sys.dual
where exists(
	     select 'x'
	     from hxc_alias_type_components hac
	     where hac.alias_type_id = p_alias_type_id AND
		   hac.mapping_component_id  = p_mapping_component_id
	     );
Line: 304

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

	l_proc := g_package||'insert_validate';
Line: 328

End insert_validate;
Line: 333

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

	 l_proc:= g_package||'update_validate';
Line: 350

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 362

End update_validate;
Line: 371

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

	l_proc := g_package||'delete_validate';
Line: 389

End delete_validate;