DBA Data[Home] [Help]

APPS.IRC_VCE_BUS SQL Statements

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

Line: 31

    select pbg.security_group_id
      from per_business_groups pbg
         , per_all_vacancies pav
     where pav.vacancy_id = p_vacancy_id
     and   pbg.business_group_id = pav.business_group_id;
Line: 108

    select pbg.legislation_code
      from per_business_groups     pbg
          ,per_all_vacancies pav
     where pav.vacancy_id = p_vacancy_id
       and pbg.business_group_id = pav.business_group_id;
Line: 204

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

End chk_non_updateable_args;
Line: 332

  select null from per_all_vacancies pav where pav.vacancy_id = p_vacancy_id
  and p_effective_date < NVL(pav.date_to,hr_api.g_eot);
Line: 370

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

End insert_validate;
Line: 418

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

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

End update_validate;
Line: 459

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

End delete_validate;