DBA Data[Home] [Help]

APPS.HXC_HAT_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_types hat
     where hat.alias_type_id = p_alias_type_id;
Line: 98

    select pbg.legislation_code
      from per_business_groups     pbg
         , hxc_alias_types hat
     where hat.alias_type_id = p_alias_type_id;
Line: 195

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

End chk_non_updateable_args;
Line: 227

SELECT 'error'
FROM    sys.dual
WHERE EXISTS (
       SELECT  'x'
       from hxc_alias_types
       where alias_type = p_type and
	     reference_object = p_reference_object);
Line: 269

select 'error'
from sys.dual
where exists(
	     select 'x'
	     from hxc_alias_definitions had,
		  hxc_alias_types hat
	     where hat.alias_type_id = p_alias_type_id and
		   hat.alias_type_id = had.alias_type_id
	     );
Line: 312

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

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

End insert_validate;
Line: 342

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 371

End update_validate;
Line: 376

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

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

End delete_validate;