DBA Data[Home] [Help]

APPS.HXC_ULA_BUS SQL Statements

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

Line: 22

SELECT 1
  FROM hxc_layouts
 WHERE layout_name = p_layout_name
   AND p_application_id = application_id
   AND (p_layout_id IS NULL
       OR layout_id <> p_layout_id);
Line: 74

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

End chk_non_updateable_args;
Line: 112

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

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

End insert_validate;
Line: 149

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 186

End update_validate;
Line: 191

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

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

End delete_validate;