<?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: Function Module to POP-UP Bapi messages...!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079195#M431229</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dhwanit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another possibility would be to call function module &amp;lt;b&amp;gt;REUSE_ALV_POPUP_TO_SELECT &amp;lt;/b&amp;gt;and suppress the select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Mar 2007 14:54:45 GMT</pubDate>
    <dc:creator>uwe_schieferstein</dc:creator>
    <dc:date>2007-03-28T14:54:45Z</dc:date>
    <item>
      <title>Function Module to POP-UP Bapi messages...!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079192#M431226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting all the messages from BAPI's in one of the internal table i_retyrn. now i want to show that messages on pop-up screen. is there any function module which populates messages and show it on pop-up screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reply ASAP its kinda urgent and if possible please send sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dhwanit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 14:47:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079192#M431226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-28T14:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to POP-UP Bapi messages...!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079193#M431227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really like these function modules for this.  You add your messages to the log and then show the log, it is a very nice display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

call function 'MESSAGES_INITIALIZE'
     exceptions
          others = 1.



call function 'MESSAGE_STORE'
     exporting
          arbgb                  = 'M3'
          msgty                  = 'E'
          msgv1                  = space
          msgv2                  = space
          msgv3                  = space
          msgv4                  = space
          txtnr                  = '002'
     exceptions
          message_type_not_valid = 1
          not_active             = 2
          others                 = 3.


call function 'MESSAGES_SHOW'
     exporting
          I_USE_GRID         = 'X'  " Comment for list display
          batch_list_type    = 'L'
     exceptions
          inconsistent_range = 1
          no_messages        = 2
          others             = 3.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 14:49:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079193#M431227</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-28T14:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to POP-UP Bapi messages...!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079194#M431228</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;Please try this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_WITH_TABLE_DISPLAY&lt;/P&gt;&lt;P&gt;POPUP_WITH_TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 14:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079194#M431228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-28T14:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to POP-UP Bapi messages...!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079195#M431229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dhwanit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another possibility would be to call function module &amp;lt;b&amp;gt;REUSE_ALV_POPUP_TO_SELECT &amp;lt;/b&amp;gt;and suppress the select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 14:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-pop-up-bapi-messages/m-p/2079195#M431229</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-03-28T14:54:45Z</dc:date>
    </item>
  </channel>
</rss>

