DBA Data[Home] [Help]

APPS.HXC_ULQ_BUS SQL Statements

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

Line: 21

SELECT 1
  FROM hxc_layout_comp_qualifiers
 WHERE qualifier_name = p_qualifier_name
   AND (p_layout_comp_qualifier_id IS NULL
        OR layout_comp_qualifier_id <> p_layout_comp_qualifier_id);
Line: 255

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

End chk_non_updateable_args;
Line: 293

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

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

End insert_validate;
Line: 332

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 370

End update_validate;
Line: 375

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

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

End delete_validate;