DBA Data[Home] [Help]

APPS.HR_ORT_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id
      from per_business_groups pbg
         , hr_all_organization_units ort
      --   , EDIT_HERE table_name(s) 333
     where ort.organization_id = p_organization_id
     and pbg.business_group_id = ort.business_group_id;
Line: 102

    select pbg.legislation_code
      from per_business_groups     pbg
         , hr_all_organization_units_tl ort
      --   , EDIT_HERE table_name(s) 333
     where ort.organization_id = p_organization_id
       and ort.language = p_language;
Line: 196

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

End chk_non_updateable_args;
Line: 234

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

End insert_validate;
Line: 260

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 284

End update_validate;
Line: 289

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

End delete_validate;