DBA Data[Home] [Help]

APPS.PER_PSO_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id
      from per_business_groups pbg
         , per_security_organizations pso
         , per_organization_units pou
     where pso.security_organization_id = p_security_organization_id
       and pbg.business_group_id = pou.business_group_id
       and pou.organization_id = pso.organization_id;
Line: 95

    select pbg.legislation_code
     from per_business_groups pbg
         , per_security_organizations pso
         , per_organization_units pou
     where pso.security_organization_id = p_security_organization_id
       and pbg.business_group_id = pou.business_group_id
       and pou.organization_id = pso.organization_id;
Line: 169

  select null from hr_all_organization_units
    where organization_id = p_rec.organization_id;
Line: 173

  select null from per_Security_organizations
    where organization_id = p_rec.organization_id
      and security_profile_id = p_rec.security_profile_id
      and (p_rec.security_organization_id is null or security_organization_id <> p_rec.security_organization_id);
Line: 219

  select null from per_security_profiles
    where security_profile_id = p_rec.security_profile_id;
Line: 272

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

End chk_non_updateable_args;
Line: 299

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

End insert_validate;
Line: 333

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 363

End update_validate;
Line: 368

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

End delete_validate;