<?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: add error message in Sapgui_progress_indicator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525415#M19064</link>
    <description>&lt;P&gt;it depends by how the report is built.&lt;/P&gt;
  &lt;P&gt;If you have all the records in an internal table, you can check the row numbers with DESCRIBE TABLE statement before processing it and then choose to stop.&lt;/P&gt;
  &lt;P&gt;It's up to you to choose the best behaviour.&lt;/P&gt;
  &lt;P&gt;Anyway, are you sure you cannot "shrink" the performances to allow the report to handle more records?&lt;/P&gt;</description>
    <pubDate>Thu, 24 Aug 2017 20:15:47 GMT</pubDate>
    <dc:creator>SimoneMilesi</dc:creator>
    <dc:date>2017-08-24T20:15:47Z</dc:date>
    <item>
      <title>add error message in Sapgui_progress_indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525412#M19061</link>
      <description>&lt;P&gt;hi, abap newbie here&lt;/P&gt;
  &lt;P&gt;I am trying to add a error message (something like 'max # of records exceeded) to a report if the data output exceeds 300,000 lines as this will result in an abap dump timeout. I was trying to leverage form Sapgui_progress_indicator for this but I must be doing something wrong.&lt;/P&gt;
  &lt;P&gt;any input is appreciated.&lt;/P&gt;
  &lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 17:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525412#M19061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-24T17:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: add error message in Sapgui_progress_indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525413#M19062</link>
      <description>&lt;P&gt;Why do you think SAPGUI_PROGRESS_INDICATOR can help you?&lt;/P&gt;
  &lt;P&gt;What's wrong with a classical Message + STOP statement?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 18:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525413#M19062</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2017-08-24T18:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: add error message in Sapgui_progress_indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525414#M19063</link>
      <description>&lt;P&gt;did not think of that - where do you put the stop?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 18:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525414#M19063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-24T18:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: add error message in Sapgui_progress_indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525415#M19064</link>
      <description>&lt;P&gt;it depends by how the report is built.&lt;/P&gt;
  &lt;P&gt;If you have all the records in an internal table, you can check the row numbers with DESCRIBE TABLE statement before processing it and then choose to stop.&lt;/P&gt;
  &lt;P&gt;It's up to you to choose the best behaviour.&lt;/P&gt;
  &lt;P&gt;Anyway, are you sure you cannot "shrink" the performances to allow the report to handle more records?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 20:15:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525415#M19064</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2017-08-24T20:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: add error message in Sapgui_progress_indicator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525416#M19065</link>
      <description>&lt;P&gt;If you run a program in foreground, and it takes too much time, then there must be a timeout.&lt;/P&gt;
  &lt;P&gt;You shouldn't try to bypass this mechanism, or the performance of the whole system may decrease.&lt;/P&gt;
  &lt;P&gt;Instead, when it happens, the users should run the report in background (and they'll learn to always run it in background in the future).&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;For more information about the timeout, refer to the SAP note 25528 (Parameter rdisp/max_wprun_time &lt;A href="https://launchpad.support.sap.com/#/notes/25528/E"&gt;https://launchpad.support.sap.com/#/notes/25528/E&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Note that the SAPGUI_PROGRESS_INDICATOR function module does not reset the "timeout counter" (you can see this counter in transactions SM50/SM66).&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2017 06:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/add-error-message-in-sapgui-progress-indicator/m-p/525416#M19065</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-08-25T06:32:03Z</dc:date>
    </item>
  </channel>
</rss>

