DBA Data[Home] [Help]

APPS.PER_CHK_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , per_checklist_items chk
         , per_all_people_f peo
     where chk.checklist_item_id = p_checklist_item_id
     and chk.person_id = peo.person_id
     and pbg.business_group_id = peo.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups     pbg
         , per_checklist_items chk
         , per_all_people_f peo
     where chk.checklist_item_id = p_checklist_item_id
     and chk.person_id = peo.person_id
     and pbg.business_group_id = peo.business_group_id;
Line: 178

Procedure chk_non_updateable_args( p_effective_date in date
                                   ,p_rec in per_chk_shd.g_rec_type) is
--
  l_proc     varchar2(72) := g_package||'chk_non_updateable_args';
Line: 230

end chk_non_updateable_args;
Line: 261

  SELECT person_id
  FROM per_all_people_f
  WHERE person_id = p_person_id;
Line: 669

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

End insert_validate;
Line: 746

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

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

End update_validate;
Line: 807

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

End delete_validate;