DBA Data[Home] [Help]

APPS.PER_ELC_BUS SQL Statements

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

Line: 62

    select hou.organization_id
    from hr_all_organization_units hou
    where hou.organization_id = p_rep_body_id
    and exists(select 1
    from hr_organization_information hoi
    where hoi.organization_id = hou.organization_id
    and hoi.org_information_context='CLASS'
    and hoi.org_information1='REPBODY'
    and hoi.org_information2='Y');
Line: 139

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

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

  select con.election_id
  from per_election_constituencys con
  where con.election_id = p_election_id;
Line: 212

end chk_can_delete;
Line: 304

    select pbg.security_group_id
      from per_business_groups pbg
         , per_elections elc
     where elc.election_id = p_election_id
       and pbg.business_group_id = elc.business_group_id;
Line: 364

    select pbg.legislation_code
      from per_business_groups pbg
         , per_elections elc
     where elc.election_id = p_election_id
       and pbg.business_group_id = elc.business_group_id;
Line: 806

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

End chk_non_updateable_args;
Line: 845

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

End insert_validate;
Line: 887

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

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

End update_validate;
Line: 934

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

  per_elc_bus.chk_can_delete
    (p_election_id			=> p_rec.election_id
    ,p_object_version_number	=> p_rec.object_version_number
    );
Line: 951

End delete_validate;