DBA Data[Home] [Help]

APPS.PER_RAA_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id
      from per_business_groups pbg
         , per_recruitment_activities raa
     where raa.recruitment_activity_id = p_recruitment_activity_id
       and pbg.business_group_id = raa.business_group_id;
Line: 92

    select pbg.legislation_code
      from per_business_groups pbg
         , per_recruitment_activities raa
     where raa.recruitment_activity_id = p_recruitment_activity_id
       and pbg.business_group_id = raa.business_group_id;
Line: 317

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

End chk_non_updateable_args;
Line: 395

         select null
           from per_recruitment_activities
          where name     = p_name;
Line: 488

  select null from PER_ALL_PEOPLE_F pap
  where pap.person_id = p_authorising_person_id
  and
  (p_date_start between pap.effective_start_date and pap.effective_end_date);
Line: 494

  select null from per_person_types ppt, per_person_type_usages_f ptu
  where ptu.person_id = p_authorising_person_id
  and p_date_start between ptu.effective_start_date and ptu.effective_end_date
  and ptu.person_type_id = ppt.person_type_id
  and (ppt.system_person_type = 'EMP'
   or (ppt.system_person_type = 'CWK' and
       nvl(fnd_profile.value('HR_TREAT_CWK_AS_EMP'), 'N') = 'Y'));
Line: 593

  select null from HR_ALL_ORGANIZATION_UNITS hao
  where hao.organization_id = p_run_by_organization_id;
Line: 682

  select null from PER_ALL_PEOPLE_F  pap
  where pap.person_id = p_internal_contact_person_id
  and
  (p_date_start between pap.effective_start_date and pap.effective_end_date);
Line: 688

  select null from per_person_types ppt, per_person_type_usages_f ptu
  where ptu.person_id = p_internal_contact_person_id
  and p_date_start between ptu.effective_start_date and ptu.effective_end_date
  and ptu.person_type_id = ppt.person_type_id
  and (ppt.system_person_type = 'EMP'
   or (ppt.system_person_type = 'CWK' and
       nvl(fnd_profile.value('HR_TREAT_CWK_AS_EMP'), 'N') = 'Y'));
Line: 802

   select null from PER_RECRUITMENT_ACTIVITIES pra
   where pra.recruitment_activity_id = p_parent_recruitment_activity;
Line: 806

  select null from PER_RECRUITMENT_ACTIVITIES r1
  where r1.business_group_id = p_business_group_id and
  p_recruitment_activity_id <> r1.recruitment_activity_id
  and r1.recruitment_activity_id=p_parent_recruitment_activity
  and p_date_start between r1.date_start and nvl(r1.date_end, hr_api.g_eot)
  and r1.recruitment_activity_id not in (select r2.recruitment_activity_id
  from per_recruitment_activities r2 connect by
  r2.parent_recruitment_activity_id = prior r2.recruitment_activity_id
  start with r2.parent_recruitment_activity_id = p_recruitment_activity_id);
Line: 930

  select null from FND_CURRENCIES fc
  where fc.currency_code = p_currency_code
  and
  (p_date_start between fc.start_date_active and fc.end_date_active);
Line: 1016

   select null from IRC_ALL_RECRUITING_SITES irs
   where irs.recruiting_site_id = p_recruiting_site_id;
Line: 1099

   select null from IRC_POSTING_CONTENTS ipc
   where ipc.posting_content_id = p_posting_content_id;
Line: 1614

Procedure insert_validate
  (p_rec                          in per_raa_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 1741

End insert_validate;
Line: 1746

Procedure update_validate
  (p_rec                          in per_raa_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 1775

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 1880

End update_validate;
Line: 1885

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

End delete_validate;