DBA Data[Home] [Help]

APPS.IRC_CMM_SHD SQL Statements

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

Line: 53

    select
       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
    from        irc_comm_messages
    where       communication_message_id = p_communication_message_id;
Line: 130

    select
       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
    from        irc_comm_messages
    where       communication_message_id = p_communication_message_id
    for update nowait;
Line: 210

  ,p_deleted_flag                   in varchar2
  ,p_object_version_number          in number
  )
  Return g_rec_type is
--
  l_rec   g_rec_type;
Line: 231

  l_rec.deleted_flag                     := p_deleted_flag;