DBA Data[Home] [Help]

APPS.IRC_IPT_BUS SQL Statements

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

Line: 44

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

End chk_non_updateable_args;
Line: 97

         select null
           from irc_posting_contents_tl
          where name     = p_name
            and language = p_language;
Line: 146

    select l.installed_flag
      from fnd_languages l
     where l.language_code = p_source_lang;
Line: 205

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

End insert_validate;
Line: 233

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

  chk_non_updateable_args
  (p_rec              => p_rec
  );
Line: 257

End update_validate;
Line: 262

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

End delete_validate;