<?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 Refreshing Progress Indicator during calculation loop (WD ABAP) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-progress-indicator-during-calculation-loop-wd-abap/m-p/4105255#M981728</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use the ProgressIndicator UI Element on one of my Views. But when setting a new percent value during my calculation this does not lead to a refresh of the indicator on the screen, hence I can only see the 0% and 100% state after finishing the calculation but nothin in between. Is there an elegant way to refresh the view or is the only way to trigger the inbound plug after each calculation step ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any hints &amp;amp; best regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jul 2008 14:22:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-03T14:22:24Z</dc:date>
    <item>
      <title>Refreshing Progress Indicator during calculation loop (WD ABAP)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-progress-indicator-during-calculation-loop-wd-abap/m-p/4105255#M981728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use the ProgressIndicator UI Element on one of my Views. But when setting a new percent value during my calculation this does not lead to a refresh of the indicator on the screen, hence I can only see the 0% and 100% state after finishing the calculation but nothin in between. Is there an elegant way to refresh the view or is the only way to trigger the inbound plug after each calculation step ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any hints &amp;amp; best regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 14:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-progress-indicator-during-calculation-loop-wd-abap/m-p/4105255#M981728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T14:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Refreshing Progress Indicator during calculation loop (WD ABAP)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-progress-indicator-during-calculation-loop-wd-abap/m-p/4105256#M981729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must increment the percentage like:&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       = 'Searching data ...'.&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 = '0.25'&lt;/P&gt;&lt;P&gt;    text       = 'Calculating ...'.&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 = '0.50'&lt;/P&gt;&lt;P&gt;    text       = 'Preparing output ...'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until it get's value 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, if it's too fast you cannot see!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 14:35:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-progress-indicator-during-calculation-loop-wd-abap/m-p/4105256#M981729</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-07-03T14:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Refreshing Progress Indicator during calculation loop (WD ABAP)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-progress-indicator-during-calculation-loop-wd-abap/m-p/4105257#M981730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Valter, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From what I see, this Function Module you mentioned is only working for Dynpros and not for WebDynpros. In my case the Percentage value of the Progress Indicator is bound to the Context of my WebDynpro view and I want to trigger a refresh after I changed this value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2008 14:52:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refreshing-progress-indicator-during-calculation-loop-wd-abap/m-p/4105257#M981730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-03T14:52:16Z</dc:date>
    </item>
  </channel>
</rss>

