DBA Data[Home] [Help]

APPS.IRC_IDO_BUS SQL Statements

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

Line: 107

    select hp.party_id
    from hz_parties hp
    where hp.party_id = p_party_id;
Line: 166

    select per.party_id
      from per_all_people_f per
     where per.person_id = p_person_id
          and p_effective_date between effective_start_date and effective_end_date;
Line: 237

    select count(*)
      from irc_documents doc
      where doc.person_id = p_person_id
      and  doc.end_date is null
          and months_between(p_effective_date,doc.creation_date) <= 1;
Line: 299

    select count(*)
      from irc_documents doc
      where doc.person_id = p_person_id
      and  doc.end_date is null;
Line: 414

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

End chk_non_updateable_args;
Line: 451

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in out nocopy irc_ido_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 484

End insert_validate;
Line: 489

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

End update_validate;
Line: 513

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

End delete_validate;