DBA Data[Home] [Help]

APPS.IRC_ISS_BUS SQL Statements

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

Line: 55

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

End chk_non_updateable_args;
Line: 123

    select null
    from per_all_vacancies
    where vacancy_id = p_vacancy_id;
Line: 177

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

End insert_validate;
Line: 207

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 234

End update_validate;
Line: 239

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

End delete_validate;