DBA Data[Home] [Help]

APPS.IRC_ISC_BUS SQL Statements

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

Line: 456

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

End chk_non_updateable_args;
Line: 539

    select null
    from per_all_people_f ppf
    where ppf.person_id = p_person_id
    and trunc(p_effective_date) between ppf.effective_start_date
    and ppf.effective_end_date;
Line: 606

    select 1
    from irc_search_criteria isc
    where isc.object_id = p_object_id
    and isc.object_type = 'WPREF';
Line: 675

    select null from irc_search_criteria isc
    where isc.search_name  = p_search_name
    and isc.object_id = p_person_id ;
Line: 841

  select 1 from hr_locations_all
  where location_id=p_location_id;
Line: 1173

    select null from per_all_vacancies pav
    where pav.vacancy_id = p_vacancy_id;
Line: 1245

    select null from per_qualification_types pqt
    where pqt.qualification_type_id = p_min_qual_level;
Line: 1323

  select rank from per_qualification_types where qualification_type_id = c_qual_type_id;
Line: 2100

    select null from fnd_currencies fc
    where p_salary_currency = fc.currency_code
    and p_effective_date between
        nvl(fc.start_date_active, p_effective_date)
    and nvl(fc.end_date_active, p_effective_date);
Line: 2387

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

End insert_validate;
Line: 2638

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

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

End update_validate;
Line: 2872

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

End delete_validate;