<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Message with internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527423#M848601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM MESSAGE_TEXT_BUILD to generate the message using the details in i_messages&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2008 10:56:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-10T10:56:51Z</dc:date>
    <item>
      <title>Message with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527420#M848598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How am i gonna show the error generated here using the message class? Thanks  a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT i_messages WHERE type = c_error.&lt;/P&gt;&lt;P&gt;*Show errors generated from i_messages&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 10:52:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527420#M848598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T10:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Message with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527421#M848599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP AT i_messages WHERE type = c_error.&lt;/P&gt;&lt;P&gt;*Show errors generated from i_messages&lt;/P&gt;&lt;P&gt;   MESSAGE E000(&amp;lt;message class&amp;gt;) with i_messages-message1.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;message class&amp;gt; is the message class you want to use ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 10:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527421#M848599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T10:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Message with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527422#M848600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;message e001(zmessage_class).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 10:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527422#M848600</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2008-03-10T10:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Message with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527423#M848601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM MESSAGE_TEXT_BUILD to generate the message using the details in i_messages&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 10:56:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527423#M848601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T10:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: Message with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527424#M848602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the below code to show the error message on the message screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
p_screen = '0999'.

* set a default message of space in with three &amp;amp;&amp;amp;&amp;amp;
  IF v_msg_number = ' '.
    v_msg_id = 'OO'.
    v_msg_number = '000'.
  ENDIF.

  IF v_devty(5) = '16X20'.
    v_msg_line = 18.
    v_msg_nln  = 13.
  ELSE.
    v_msg_line = 40.
    v_msg_nln  = 4.
  ENDIF.

  v_msg_lang = sy-langu.

* error or message screen
  CALL FUNCTION 'CALL_MESSAGE_SCREEN'
    EXPORTING
      i_msgid          = v_msg_id
      i_lang           = v_msg_lang
      i_msgno          = v_msg_number
      i_msgv1          = v_msg_var1
      i_msgv2          = v_msg_var2
      i_msgv3          = v_msg_var3
      i_msgv4          = v_msg_var4
      i_message_screen = p_screen
      i_line_size      = v_msg_line
      i_lines          = v_msg_nln
      i_non_lmob_envt  = c_x
    IMPORTING
      o_answer         = v_msg_answ
    EXCEPTIONS
      OTHERS           = 99.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:03:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-with-internal-table/m-p/3527424#M848602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:03:23Z</dc:date>
    </item>
  </channel>
</rss>

