DBA Data[Home] [Help]

APPS.PER_PPS_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , per_parent_spines pps
     where pps.parent_spine_id = p_parent_spine_id
       and pbg.business_group_id = pps.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , per_parent_spines pps
     where pps.parent_spine_id = p_parent_spine_id
       and pbg.business_group_id = pps.business_group_id;
Line: 274

  select 'x'
    from per_parent_spines
    where p_name is not null
    and upper(name)   = upper(p_name)
    and business_group_id + 0 = p_business_group_id
    -- Start of 3312706
    and (p_parent_spine_id is not null
    and parent_spine_id <> p_parent_spine_id);
Line: 553

PROCEDURE chk_delete(
   p_parent_spine_id         in per_parent_spines.parent_spine_id%TYPE
 ) is
  --
  l_proc         varchar2(72) := g_package||'chk_delete';
Line: 561

           select 'x'
           FROM per_spinal_points
           WHERE parent_spine_id = p_parent_spine_id;
Line: 566

           select 'x'
           FROM per_grade_spines_f
           WHERE parent_spine_id = p_parent_spine_id;
Line: 571

           select 'x'
           FROM pay_rates
           WHERE parent_spine_id = p_parent_spine_id;
Line: 639

end chk_delete;
Line: 985

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

End chk_non_updateable_args;
Line: 1021

Procedure insert_validate
  (p_effective_date               in date
--  ,p_rec                          in out nocopy per_pps_shd.g_rec_type
  ,p_rec                          in per_pps_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 1117

End insert_validate;
Line: 1122

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

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

End update_validate;
Line: 1220

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

  chk_delete(p_parent_spine_id  => p_rec.parent_spine_id);
Line: 1235

End delete_validate;