DBA Data[Home] [Help]

APPS.IRC_CMT_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_comm_topics cmt
      --   , EDIT_HERE table_name(s) 333
     where cmt.communication_topic_id = p_communication_topic_id;
Line: 110

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , irc_comm_topics cmt
      --   , EDIT_HERE table_name(s) 333
     where cmt.communication_topic_id = p_communication_topic_id;
Line: 199

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

End chk_non_updateable_args;
Line: 264

  select status from irc_communications where
  communication_id = p_comm_id;
Line: 420

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

End insert_validate;
Line: 458

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

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

End update_validate;
Line: 502

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

End delete_validate;