DBA Data[Home] [Help]

APPS.PER_ECO_BUS SQL Statements

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

Line: 57

    select election_id
    from per_elections pe
    where pe.election_id = p_election_id;
Line: 145

select election_constituency_id
from per_election_constituencys
where election_id    = p_election_id
and constituency_id  = p_constituency_id;
Line: 212

procedure chk_can_delete
  (p_election_constituency_id   in      per_election_constituencys.election_constituency_id%TYPE
  ,p_election_id                        in   per_election_constituencys.election_id%TYPE
  ,p_object_version_number              in   per_election_constituencys.object_version_number%TYPE
  )
  is
  --
  l_proc              varchar2(72)  :=  g_package||'chk_can_exists';
Line: 227

select pec.election_id
from per_election_candidates pec
where pec.election_id = p_election_id;
Line: 251

end chk_can_delete;
Line: 297

    select haou.organization_id
    from hr_all_organization_units haou
    where haou.organization_id = p_constituency_id
    and exists(select 1
    from hr_organization_information hoi
    where hoi.org_information_context='CLASS'
    and hoi.org_information1='CONSTITUENCY'
    and hoi.org_information2='Y');
Line: 362

    select pbg.security_group_id
      from per_business_groups pbg
         , per_election_constituencys eco
     where eco.election_constituency_id = p_election_constituency_id
       and pbg.business_group_id = eco.business_group_id;
Line: 422

    select pbg.legislation_code
      from per_business_groups pbg
         , per_election_constituencys eco
     where eco.election_constituency_id = p_election_constituency_id
       and pbg.business_group_id = eco.business_group_id;
Line: 687

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

End chk_non_updateable_args;
Line: 726

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

End insert_validate;
Line: 772

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

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

End update_validate;
Line: 823

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

  per_eco_bus.chk_can_delete
  (p_election_constituency_id	=> p_rec.election_constituency_id
  ,p_election_id			=>  p_rec.election_id
  ,p_object_version_number	=>  p_rec.object_version_number
  );
Line: 841

End delete_validate;