DBA Data[Home] [Help]

APPS.HXC_ULD_BUS SQL Statements

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

Line: 23

SELECT 1
  FROM hxc_layout_comp_definitions
 WHERE component_type = p_component_type
   AND render_type = p_render_type
   AND (p_layout_comp_definition_id IS NULL
       OR layout_comp_definition_id <> p_layout_comp_definition_id);
Line: 75

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

End chk_non_updateable_args;
Line: 113

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

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

End insert_validate;
Line: 152

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 191

End update_validate;
Line: 196

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

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

End delete_validate;