DBA Data[Home] [Help]

APPS.IRC_IPC_BUS SQL Statements

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

Line: 398

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

End chk_non_updateable_args;
Line: 595

Procedure chk_posting_content_delete
  (p_posting_content_id in irc_posting_contents.posting_content_id%TYPE
  )
   is
  --
  l_proc       varchar2(72) := g_package||'chk_posting_content_delete';
Line: 605

    select null
      from per_all_vacancies vac
     where vac.primary_posting_id = p_posting_content_id;
Line: 638

end chk_posting_content_delete;
Line: 643

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

End insert_validate;
Line: 675

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

  chk_non_updateable_args
  (p_rec              => p_rec
  );
Line: 707

End update_validate;
Line: 712

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

    irc_ipc_bus.chk_posting_content_delete
    (p_posting_content_id   => p_rec.posting_content_id
    );
Line: 729

End delete_validate;