DBA Data[Home] [Help]

APPS.HR_DEI_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
         , hr_document_extra_info dei
         , per_all_people_f  ppf
     where dei.document_extra_info_id = p_document_extra_info_id
       and ppf.person_id = dei.person_id
       and pbg.business_group_id = ppf.business_group_id;
Line: 102

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , hr_document_extra_info dei
         , per_all_people_f ppf
     where dei.document_extra_info_id = p_document_extra_info_id
       and ppf.person_id = dei.person_id
       and pbg.business_group_id = ppf.business_group_id;
Line: 174

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , per_all_people_f ppf
     where ppf.person_id = p_person_id
       and pbg.business_group_id = ppf.business_group_id;
Line: 618

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

End chk_non_updateable_args;
Line: 887

    select document_type_id
    from hr_document_types hdt,
	     hr_lookups hrl
    where hrl.lookup_code = hdt.category_code
	and   hrl.lookup_type = 'DOCUMENT_CATEGORY'
	and   hdt.document_type_id = p_document_type_id;
Line: 980

    select person_id
    from per_people_f ppf
    where ppf.person_id = p_person_id;
Line: 1036

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

End insert_validate;
Line: 1094

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

  chk_non_updateable_args(p_rec => p_rec);
Line: 1138

End update_validate;
Line: 1143

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

End delete_validate;