DBA Data[Home] [Help]

APPS.PER_ECA_BUS SQL Statements

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

Line: 27

select pbg.security_group_id
from per_business_groups pbg
 , per_election_candidates eca
where eca.election_candidate_id = p_election_candidate_id
and pbg.business_group_id = eca.business_group_id;
Line: 87

select pbg.legislation_code
from per_business_groups pbg
 , per_election_candidates eca
where eca.election_candidate_id = p_election_candidate_id
and pbg.business_group_id = eca.business_group_id;
Line: 175

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

End chk_non_updateable_args;
Line: 235

procedure chk_delete
(p_election_candidate_id in    number
)
is
--
l_proc              varchar2(72)  :=  g_package||'chk_delete';
Line: 245

select election_candidate_id
from per_election_candidates
where election_candidate_id = p_election_candidate_id
and role_id is null;
Line: 276

end chk_delete;
Line: 283

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

chk_delete(p_election_candidate_id => p_rec.election_candidate_id);
Line: 297

End delete_validate;
Line: 335

select person_id
from per_all_people_f
where person_id = p_person_id;
Line: 405

select election_id
from per_elections
where election_id = p_election_id;
Line: 475

select election_candidate_id
from per_election_candidates
where election_id = p_election_id
and person_id     = p_person_id;
Line: 555

select role_id
from per_roles
where role_id = p_role_id;
Line: 948

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

End insert_validate;
Line: 1004

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

End update_validate;