DBA Data[Home] [Help]

APPS.HXC_ERR_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , hxc_errors hxc
     where hxc.error_id = p_error_id;
Line: 105

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , hxc_errors hxc
     where hxc.error_id = p_error_id;
Line: 206

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

End chk_non_updateable_args;
Line: 233

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

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

End insert_validate;
Line: 256

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 278

End update_validate;
Line: 283

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

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

End delete_validate;