DBA Data[Home] [Help]

APPS.IRC_CMM_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_messages cmm
      --   , EDIT_HERE table_name(s) 333
     where cmm.communication_message_id = p_communication_message_id;
Line: 110

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , irc_comm_messages cmm
      --   , EDIT_HERE table_name(s) 333
     where cmm.communication_message_id = p_communication_message_id;
Line: 199

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

End chk_non_updateable_args;
Line: 292

  select 1
  from irc_comm_topics
  where communication_topic_id = p_topic_id;
Line: 519

  select person_id
  from per_all_people_f
  where person_id = p_sender_id;
Line: 524

  select vendor_id
  from po_vendors
  where vendor_id = p_sender_id;
Line: 619

  select document_id
  from irc_documents
  where document_id = p_document_id;
Line: 670

Procedure chk_deleted_flag
  (p_deleted_flag    in irc_comm_messages.deleted_flag%type
  ) is
--
  l_proc  varchar2(72) := g_package||'chk_deleted_flag';
Line: 681

  if p_deleted_flag <> 'Y' and p_deleted_flag <> 'N' then
  --
  -- raise error
  --
    hr_utility.set_location('Leaving: '|| l_proc, 3);
Line: 686

    hr_utility.set_message(800,'IRC_412421_INVALID_DELETED_FLAG');
Line: 693

      (p_associated_column1 => 'IRC_COMM_MESSAGES.DELETED_FLAG'
      ) then
      --
      hr_utility.set_location(' Leaving:'||l_proc,20);
Line: 703

End chk_deleted_flag;
Line: 708

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

  chk_deleted_flag(p_rec.deleted_flag);
Line: 748

End insert_validate;
Line: 753

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

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

  chk_deleted_flag(p_rec.deleted_flag);
Line: 798

End update_validate;
Line: 803

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

End delete_validate;