DBA Data[Home] [Help]

APPS.IRC_IVC_BUS SQL Statements

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

Line: 108

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in irc_ivc_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 159

End chk_non_updateable_args;
Line: 203

  select date_from
        ,date_to
    from per_all_vacancies
   where vacancy_id = p_vacancy_id;
Line: 298

  select party_id
      from per_all_people_f
  where person_id = p_person_id;
Line: 306

  select null
      from IRC_NOTIFICATION_PREFERENCES
  where person_id = p_person_id
  and allow_access = 'Y';
Line: 456

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in out nocopy irc_ivc_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 491

End insert_validate;
Line: 496

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in irc_ivc_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 520

  chk_non_updateable_args
    (p_effective_date   => p_effective_date
    ,p_rec              => p_rec
    );
Line: 526

End update_validate;
Line: 531

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

End delete_validate;