DBA Data[Home] [Help]

APPS.HXC_HSD_BUS SQL Statements

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

Line: 37

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , hxc_seeddata_by_level hsd
      --   , EDIT_HERE table_name(s) 333
     where hsd.object_id = p_object_id
       and hsd.object_type = p_object_type;
Line: 129

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , hxc_seeddata_by_level hsd
      --   , EDIT_HERE table_name(s) 333
     where hsd.object_id = p_object_id
       and hsd.object_type = p_object_type;
Line: 237

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

End chk_non_updateable_args;
Line: 297

    Select 'Y'
	from hr_lookups hrl
	where hrl.lookup_type = 'HXC_REQUIRED'
	and hrl.lookup_code = p_hxc_required;
Line: 363

	select 'Y' from fnd_application
	where application_id = p_owner_application_id;
Line: 465

	l_query := 'select 1 from ('||l_query||') where ID = :p_object_id';
Line: 483

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

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

End insert_validate;
Line: 531

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 577

End update_validate;
Line: 582

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

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

End delete_validate;