DBA Data[Home] [Help]

APPS.PER_ORS_BUS SQL Statements

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

Line: 31

   select organization_structure_id, business_group_id
     from per_organization_structures
     where name = p_name;
Line: 76

   select 'I'
   into   l_hr_installed
   from sys.dual
   where  exists (select 'I'
                  from fnd_product_installations
                  where application_id between 800 and 899
                  and status = 'I');
Line: 132

 select count(*)
     into l_count
     from PER_ORG_STRUCTURE_VERSIONS
     where ORGANIZATION_STRUCTURE_ID = p_organization_Structure_Id;
Line: 194

 select count(*)
    into l_count
    from per_security_profiles
    where organization_structure_id = p_organization_structure_id;
Line: 224

   select organization_structure_id,business_group_id
     from per_organization_structures
     where position_control_structure_flg = 'Y'
      and business_group_id = p_business_group_id;
Line: 266

   select organization_structure_id,business_group_id
     from per_organization_structures
     where primary_structure_flag = 'Y';
Line: 303

    select pbg.security_group_id
      from per_business_groups pbg
         , per_organization_structures ors
     where ors.organization_structure_id = p_organization_structure_id
       and pbg.business_group_id = ors.business_group_id;
Line: 364

    select pbg.legislation_code
      from per_business_groups pbg
         , per_organization_structures ors
     where ors.organization_structure_id = p_organization_structure_id
       and pbg.business_group_id (+) = ors.business_group_id;
Line: 589

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

End chk_non_updateable_args;
Line: 625

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

End insert_validate;
Line: 671

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

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

End update_validate;
Line: 721

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

End delete_validate;