<?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 messages in a batch input session in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-in-a-batch-input-session/m-p/2030643#M416689</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;I would like to catch the messages of a batch input session in order to inform user of clearing itens posted and not posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i thought that SX_MESSAGE_TEXT_BUILD would work fine. Somebody can give an example of this kind of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course if you know another mean of solve the problem i will appreciate that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           Best Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                João Fernandes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Mar 2007 13:12:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-16T13:12:11Z</dc:date>
    <item>
      <title>messages in a batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-in-a-batch-input-session/m-p/2030643#M416689</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;I would like to catch the messages of a batch input session in order to inform user of clearing itens posted and not posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i thought that SX_MESSAGE_TEXT_BUILD would work fine. Somebody can give an example of this kind of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course if you know another mean of solve the problem i will appreciate that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           Best Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                João Fernandes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 13:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-in-a-batch-input-session/m-p/2030643#M416689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T13:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: messages in a batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-in-a-batch-input-session/m-p/2030644#M416690</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;PRE&gt;&lt;CODE&gt;
  loop at i_yerrlog into wa_yerrlog.
    v_msg_id = wa_yerrlog-msgid.
    v_msg_no = wa_yerrlog-msgnr.
    v_msg_var1 = wa_yerrlog-msgv1.
    v_msg_var2 = wa_yerrlog-msgv2.
    v_msg_var3 = wa_yerrlog-msgv3.
    v_msg_var4 = wa_yerrlog-msgv4.
* Creating message text
    call function 'MESSAGE_PREPARE'
      exporting
        msg_id   = v_msg_id
        msg_no   = v_msg_no
        msg_var1 = v_msg_var1
        msg_var2 = v_msg_var2
        msg_var3 = v_msg_var3
        msg_var4 = v_msg_var4
      importing
        msg_text = v_text1.
    move-corresponding wa_yerrlog to wa_output2.
    move v_text1 to wa_output2-mstxt.
    append wa_output2 to i_output2.
  endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 13:22:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-in-a-batch-input-session/m-p/2030644#M416690</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-03-16T13:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: messages in a batch input session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-in-a-batch-input-session/m-p/2030645#M416691</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;try using this fm to display the messages to the user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SAPGUI_PROGRESS_INDICATOR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 13:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-in-a-batch-input-session/m-p/2030645#M416691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T13:47:38Z</dc:date>
    </item>
  </channel>
</rss>

