DBA Data[Home] [Help]

APPS.IRC_LCV_BUS SQL Statements

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

Line: 102

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

End chk_non_updateable_args;
Line: 167

    select null from irc_search_criteria isc
    where isc.search_criteria_id = p_search_criteria_id;
Line: 210

Procedure insert_validate
  (p_rec                          in irc_lcv_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 238

End insert_validate;
Line: 243

Procedure update_validate
  (p_rec                          in irc_lcv_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 259

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 264

End update_validate;
Line: 269

Procedure delete_validate
  (p_rec                          in irc_lcv_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 281

End delete_validate;