<?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: Messages Type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424578#M203567</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a user setting on the SAP gui where the user can control the messages as popup. In any SAP screen, you will see a colorful icon next to ? icon. ZIt is for 'customizing of local layout'(ALT+F12). Click on that and choose 'Options' and then choose tab 'Options'. Uncheck or the boxes under 'Messages' section as appropriate. Unchecking will stop the messages coming up in a dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also use Naren's suggestion or look at the option of using function module SAPGUI_PROGRESS_INDICATOR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Jun 2006 16:20:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-22T16:20:30Z</dc:date>
    <item>
      <title>Messages Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424575#M203564</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; Pop message -up appears (for message type MESSAGE i237(/........../pp): BUSY DOING GOODS MOVEMENT &lt;/P&gt;&lt;P&gt;This should not require attention from the user. It should be an information box stating that it is busy and then disappear automatically when the processing is completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING r_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                  rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CASE r_ucomm.&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;DEALL'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Message for reselection of lines&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      IF itab_display-kalab LE 0.&lt;/P&gt;&lt;P&gt;        MESSAGE i101(/........../pp).&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;       ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;message for goods movement&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      IF itab_display-kalab GT 0.&lt;/P&gt;&lt;P&gt;           MESSAGE i237(/........../pp).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Check for the allocation quantity&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     Clear itab_display.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      Loop at itab_display where select = 'X'.&lt;/P&gt;&lt;P&gt;      read table itab_display index sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    PERFORM sap_allocation USING     itab_display-matnr1&lt;/P&gt;&lt;P&gt;                                     itab_display-charg1&lt;/P&gt;&lt;P&gt;                                     itab_display-werks&lt;/P&gt;&lt;P&gt;                                     'U'&lt;/P&gt;&lt;P&gt;                                     itab_display-vbeln&lt;/P&gt;&lt;P&gt;                                     itab_display-posnr&lt;/P&gt;&lt;P&gt;                                     itab_display-lgort1&lt;/P&gt;&lt;P&gt;                                     itab_display-kalab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM delete_data.&lt;/P&gt;&lt;P&gt;  rs_selfield-refresh = 'X'.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;need a sample code for this plz...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vind..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 16:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424575#M203564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T16:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Messages Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424576#M203565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why dont you give a status message (s) instead of information (i)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 16:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424576#M203565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T16:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Messages Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424577#M203566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you could substitute message i for w.&lt;/P&gt;&lt;P&gt;Or you can use the FM SAPGUI_PROGRESS_INDICATOR just as a way to indicate something to the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Felipe Cunha [FpdC]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 16:14:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424577#M203566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T16:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Messages Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424578#M203567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a user setting on the SAP gui where the user can control the messages as popup. In any SAP screen, you will see a colorful icon next to ? icon. ZIt is for 'customizing of local layout'(ALT+F12). Click on that and choose 'Options' and then choose tab 'Options'. Uncheck or the boxes under 'Messages' section as appropriate. Unchecking will stop the messages coming up in a dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also use Naren's suggestion or look at the option of using function module SAPGUI_PROGRESS_INDICATOR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 16:20:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424578#M203567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T16:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Messages Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424579#M203568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also look at FM SAPGUI_PROGRESS_INDICATOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 16:20:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424579#M203568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T16:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Messages Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424580#M203569</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;Call the SAPGUI_PROGRESS_INDICATOR FM before the ENDLOOP statement and pass some PERCENTAGE and TEXT to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will intimate the user that some work is going on till the loop executes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if it helps.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 16:22:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424580#M203569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T16:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Messages Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424581#M203570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vind,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you want to show the progree of program, use the FM SAPGUI_PROGRESS_INDICATOR instead of using the information messages.&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;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 16:23:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-type/m-p/1424581#M203570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T16:23:47Z</dc:date>
    </item>
  </channel>
</rss>

