DBA Data[Home] [Help]

APPS.PER_PDP_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_periods_of_placement pdp
     where pdp.period_of_placement_id = p_period_of_placement_id
       and pbg.business_group_id = pdp.business_group_id;
Line: 92

    select pbg.legislation_code
      from per_business_groups pbg
         , per_periods_of_placement pdp
     where pdp.period_of_placement_id = p_period_of_placement_id
       and pbg.business_group_id = pdp.business_group_id;
Line: 163

    select pdp.period_of_placement_id
    from   per_periods_of_placement pdp
    where  pdp.person_id = p_person_id
    and    pdp.date_start = p_date_start;
Line: 252

     select min(asg.effective_start_date)
           ,assignment_id
     from   per_all_assignments_f asg
     where  asg.period_of_placement_date_start = p_date_start
     and    asg.person_id = p_person_id
     group by asg.assignment_id
     order by 1 desc;
Line: 261

     select max(per.effective_start_date)
     from   per_all_people_f per
     where  per.person_id = p_person_id;
Line: 765

    select bus.legislation_code
    from   per_business_groups_perf bus
    where  bus.business_group_id = p_business_group_id
    and    rownum = 1;
Line: 956

    select bus.legislation_code
    from   per_business_groups_perf bus
    where  bus.business_group_id = p_business_group_id
    and    rownum = 1;
Line: 1207

   select p.person_id
   from   per_all_people_f p
   where  p.person_id = p_person_id
   and    p.business_group_id = p_business_group_id
   and    p_effective_date between
          p.effective_start_date and p.effective_end_date;
Line: 1298

     select null
     from   per_periods_of_placement pdp
     where  pdp.person_id  = p_person_id
     and    pdp.date_start = p_date_start;
Line: 1750

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

End chk_non_updateable_args;
Line: 1778

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

End insert_validate;
Line: 1970

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

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

End update_validate;
Line: 2166

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

End delete_validate;