DBA Data[Home] [Help]

APPS.IRC_CMM_INS SQL Statements

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

Line: 75

Procedure insert_dml
  (p_rec in out nocopy irc_cmm_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 89

  insert into irc_comm_messages
      (communication_message_id
      ,parent_id
      ,communication_topic_id
      ,message_subject
      ,message_body
      ,message_post_date
      ,sender_type
      ,sender_id
      ,document_type
      ,document_id
      ,deleted_flag
      ,object_version_number
      )
  Values
    (p_rec.communication_message_id
    ,p_rec.parent_id
    ,p_rec.communication_topic_id
    ,p_rec.message_subject
    ,p_rec.message_body
    ,p_rec.message_post_date
    ,p_rec.sender_type
    ,p_rec.sender_id
    ,p_rec.document_type
    ,p_rec.document_id
    ,p_rec.deleted_flag
    ,p_rec.object_version_number
    );
Line: 140

End insert_dml;
Line: 179

Procedure pre_insert
  (p_rec  in out nocopy irc_cmm_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select irc_comm_messages_s.nextval from sys.dual;
Line: 186

    Select null
      from irc_comm_messages
     where communication_message_id =
             irc_cmm_ins.g_communication_message_id_i;
Line: 191

  l_proc   varchar2(72) := g_package||'pre_insert';
Line: 232

End pre_insert;
Line: 266

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

    irc_cmm_rki.after_insert
      (p_effective_date              => p_effective_date
      ,p_communication_message_id
      => p_rec.communication_message_id
      ,p_parent_id
      => p_rec.parent_id
      ,p_communication_topic_id
      => p_rec.communication_topic_id
      ,p_message_subject
      => p_rec.message_subject
      ,p_message_body
      => p_rec.message_body
      ,p_message_post_date
      => p_rec.message_post_date
      ,p_sender_type
      => p_rec.sender_type
      ,p_sender_id
      => p_rec.sender_id
      ,p_document_type
      => p_rec.document_type
      ,p_document_id
      => p_rec.document_id
      ,p_deleted_flag
      => p_rec.deleted_flag
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 316

End post_insert;
Line: 333

  irc_cmm_bus.insert_validate
     (p_effective_date
     ,p_rec
     );
Line: 343

  irc_cmm_ins.pre_insert(p_rec);
Line: 347

  irc_cmm_ins.insert_dml(p_rec);
Line: 351

  irc_cmm_ins.post_insert
     (p_effective_date
     ,p_rec
     );
Line: 376

  ,p_deleted_flag                   in     varchar2 default null
  ,p_communication_message_id          out nocopy number
  ,p_object_version_number             out nocopy number
  ) is
--
  l_rec   irc_cmm_shd.g_rec_type;
Line: 402

    ,p_deleted_flag
    ,null
    );