<?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: Progress indicator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064082#M92755</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understood correctly, you cannot show the progress of ws_download function module. either you can call before and after ws_download. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding timing out, probably the you are trying download huge amount of data. may be you need download partly to the presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also check with basis people there will be some settings how much time should a program execute, if you increase it might solve your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Dec 2005 01:49:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-09T01:49:41Z</dc:date>
    <item>
      <title>Progress indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064078#M92751</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 fetching the data from different tables and after getting the data into the final itable am uploading to front end using ws_download function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want to put progress indicator to show the process during ws_download uploads the data into file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 01:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064078#M92751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T01:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Progress indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064079#M92752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see below example code&lt;/P&gt;&lt;P&gt;REPORT ZGUIBAR. &lt;/P&gt;&lt;P&gt;DATA: A LIKE SY-UCOMM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 100 TIMES. &lt;/P&gt;&lt;P&gt;  DO 300 TIMES. &lt;/P&gt;&lt;P&gt;    GET TIME. &lt;/P&gt;&lt;P&gt;  ENDDO. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  A(3) = SY-INDEX.A+3 = '%'. &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;            PERCENTAGE = SY-INDEX &lt;/P&gt;&lt;P&gt;            TEXT       = A. &lt;/P&gt;&lt;P&gt;ENDDO. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--- End of Program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 01:36:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064079#M92752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T01:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Progress indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064080#M92753</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 know this process of coding to get progress indicator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is after fetching all the data into itable, i down load it to front end using ws_download function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i put progress indicator function before ws_download. It doesn't show actual progress of system while updating data into excel. Anyideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 01:40:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064080#M92753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T01:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Progress indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064081#M92754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Infact the actual problem is system is timing out while using ws_download function.. uploading data to excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas are appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 01:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064081#M92754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T01:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Progress indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064082#M92755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understood correctly, you cannot show the progress of ws_download function module. either you can call before and after ws_download. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding timing out, probably the you are trying download huge amount of data. may be you need download partly to the presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also check with basis people there will be some settings how much time should a program execute, if you increase it might solve your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 01:49:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064082#M92755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T01:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Progress indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064083#M92756</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 check with basis people adjust time out settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you upload into different subsets to avoid timing issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 02:11:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064083#M92756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T02:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Progress indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064084#M92757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can not use the progress indicator to tell you the status of the WS_DOWNLOAD because of course the progress indicator will be outside of the the function call.  If you really wanted to use a progress indicator you would have to code the download yourself using OLE, then you would be able to put a progress indicator in the middle of the OLE code.  But be warned, the using a progress indicator does slow down the processing.  We had a program that would show the progress after ever record processed, it took forever, when we changed it to only show every 1000 records, it really ran fast. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be careful....  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&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>Fri, 09 Dec 2005 02:19:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064084#M92757</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-09T02:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Progress indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064085#M92758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think all you can do is to manage the program so that it selects fewer records in each run and therefore downloads less data. But you'll have to execute the program more than once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your basis people probably won't want to change the timeout parameters for one program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 03:31:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/progress-indicator/m-p/1064085#M92758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T03:31:28Z</dc:date>
    </item>
  </channel>
</rss>

