DBA Data[Home] [Help]

APPS.IRC_INP_BUS SQL Statements

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

Line: 221

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

End chk_non_updateable_args;
Line: 288

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

  select 1
  from hz_parties
  where party_id = p_party_id
  and party_type = 'PERSON';
Line: 380

  select null
  from irc_notification_preferences
  where party_id = p_party_id;
Line: 484

  select 1
  from per_addresses
  where person_id = p_person_id
  and address_id = p_address_id;
Line: 933

    select 1
      from po_vendors
     where vendor_id = p_agency_id
       and vendor_type_lookup_code = 'IRC_JOB_AGENCY';
Line: 1012

    select 1
      from ota_attempts
     where attempt_id = p_attempt_id;
Line: 1077

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

End insert_validate;
Line: 1160

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

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

End update_validate;
Line: 1244

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

End delete_validate;