DBA Data[Home] [Help]

APPS.PER_PAC_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , per_allocated_checklists pac
	 , per_all_people_f         paf
     where pac.allocated_checklist_id = p_allocated_checklist_id
     and   pac.person_id              = paf.person_id
     and   trunc(sysdate) between paf.EFFECTIVE_START_DATE
                          and     paf.EFFECTIVE_END_DATE
     and   pbg.business_group_id = paf.business_group_id;
Line: 104

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , per_allocated_checklists pac
      --   , EDIT_HERE table_name(s) 333
	 , per_all_people_f         paf
     where pac.allocated_checklist_id = p_allocated_checklist_id
     and   pac.person_id              = paf.person_id
     and   trunc(sysdate) between paf.EFFECTIVE_START_DATE
                          and     paf.EFFECTIVE_END_DATE
     and   pbg.business_group_id = paf.business_group_id;
Line: 186

    SELECT 'x'
    FROM per_allocated_checklists
    WHERE checklist_name = p_checklist_name
    AND checklist_category = p_checklist_category
    AND  person_id = p_person_id
    AND allocated_checklist_id <> nvl(p_allocated_checklist_id,-1);
Line: 562

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

End chk_non_updateable_args;
Line: 593

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

End insert_validate;
Line: 625

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in per_pac_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: 658

End update_validate;
Line: 663

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

End delete_validate;