DBA Data[Home] [Help]

APPS.IRC_IPD_BUS SQL Statements

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

Line: 282

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

End chk_non_updateable_args;
Line: 372

    select 1
    from per_all_vacancies
    where vacancy_id = p_vacancy_id
    and nvl(date_to,hr_api.g_eot) >= p_creation_date
    and  date_from <= p_creation_date;
Line: 447

    select 1
    from irc_pending_data
    where vacancy_id = p_vacancy_id
    and   upper(email_address) = upper(p_email_address);
Line: 1846

Procedure insert_validate
  (p_rec                          in  out nocopy irc_ipd_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 1899

End insert_validate;
Line: 1904

Procedure update_validate
  (p_rec                          in out nocopy irc_ipd_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 1917

  chk_non_updateable_args(
    p_rec              => p_rec
  );
Line: 1942

End update_validate;
Line: 1947

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

End delete_validate;