DBA Data[Home] [Help]

APPS.IRC_IOS_BUS SQL Statements

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

Line: 28

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , irc_offer_status_history ios
         , per_all_vacancies vac
     where ios.offer_status_history_id = p_offer_status_history_id
       and pbg.business_group_id = vac.business_group_id;
Line: 117

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

End chk_non_updateable_args;
Line: 219

  select  1
    from  IRC_OFFERS
   where  offer_id = p_offer_id;
Line: 576

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in irc_ios_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 630

End insert_validate;
Line: 635

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

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

End update_validate;
Line: 682

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

End delete_validate;