DBA Data[Home] [Help]

APPS.IRC_ILC_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , IRC_LINKED_CANDIDATES ilc
      --   , EDIT_HERE table_name(s) 333
     where ilc.link_id = p_link_id;
Line: 110

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , IRC_LINKED_CANDIDATES ilc
      --   , EDIT_HERE table_name(s) 333
     where ilc.link_id = p_link_id;
Line: 199

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

End chk_non_updateable_args;
Line: 273

    select null
    from per_all_people_f ppf
    where ppf.party_id = p_party_id
    and trunc(p_effective_date) between ppf.effective_start_date
    and ppf.effective_end_date;
Line: 345

    select null
    from irc_linked_candidates ilc
    where ilc.party_id = p_party_id
      and ilc.duplicate_set_id <> p_duplicate_set_id
      and ilc.status in ('CONFIRMED','POTENTIAL');
Line: 391

    select null
    from irc_linked_candidates ilc
    where ilc.party_id = p_party_id
      and ilc.duplicate_set_id = p_duplicate_set_id;
Line: 429

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

End insert_validate;
Line: 492

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

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

End update_validate;
Line: 556

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

End delete_validate;