<?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: Display a message while processing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856223#M926958</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi heber,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same, do not show anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac Melendez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 May 2008 22:45:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-14T22:45:45Z</dc:date>
    <item>
      <title>Display a message while processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856220#M926955</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 am processing a lot of files and it take some time to do it. I want to display a message when a file is processing. And one message when the process of all files is finished.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT LT_FILES.
  CONCATENATE 'File processing: ' LT_FILES-NAME INTO LV_MSG
  MESSAGE LV_MSG TYPE 'S'.
  PERFORM F_PROCESS_FILE USING LT_FILES-NAME.
ENDLOOP.
MESSAGE 'The files are been processed' TYPE 'S'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it doesn't show anything while the files are been processing, just at the end the last message appears. Someone knows how can I do this? Like parallel tasks or something like threads?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac Melendez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 22:32:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856220#M926955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T22:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Display a message while processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856221#M926956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;into the loop put this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            TEXT   = 'File processing:'&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            OTHERS = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after the endloop write the other message&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 22:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856221#M926956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T22:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Display a message while processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856222#M926957</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 the FM   &lt;/P&gt;&lt;P&gt;Increase the percentage for each loop         &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
              EXPORTING
                PERCENTAGE = 50
                TEXT       = text-025.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 22:44:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856222#M926957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T22:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: Display a message while processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856223#M926958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi heber,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same, do not show anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac Melendez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 22:45:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856223#M926958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T22:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Display a message while processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856224#M926959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already solve my problem. Thank you guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac Melendez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 22:52:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-a-message-while-processing/m-p/3856224#M926959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T22:52:37Z</dc:date>
    </item>
  </channel>
</rss>

