<?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>Question Re: ReloadData() script does not refresh data. Any ideas why? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275740#M4173350</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varshini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The workaround using the &lt;EM&gt;AssignDataSource()&lt;/EM&gt; and &lt;EM&gt;LoadDataSource()&lt;/EM&gt; combination is intended for the case when the data source is a Universe because &lt;EM&gt;reloadData()&lt;/EM&gt; is not supported for Universes up to DS 1.4, although from the DS 1.5 script content assist documentation it appears that this scenario is now supported.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, in your case &lt;EM&gt;&lt;STRONG&gt;reloadData()&lt;/STRONG&gt;&lt;/EM&gt; should definitely work for a BEx data source.&amp;nbsp; I was able to successfully verify this in my test system, with two timer components as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/776766" width="450" /&gt;&lt;/P&gt;&lt;P&gt;My scripts are as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"On Startup" event of Application:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;TIMER_1.start();&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN style="font-size: 10pt;"&gt;TIMER_2.start();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"On Timer" event of TIMER_1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;myTimer1 = myTimer1 + &lt;SPAN class="s1"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN style="font-size: 10pt;"&gt;TEXT_1.setText(myTimer1 + &lt;/SPAN&gt;&lt;SPAN class="s2" style="font-size: 10pt;"&gt;""&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;"On Timer" event of TIMER_2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;myTimer2 = myTimer2 + &lt;SPAN class="s1"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN style="font-size: 10pt;"&gt;TEXT_2.setText(myTimer2 + &lt;/SPAN&gt;&lt;SPAN class="s2" style="font-size: 10pt;"&gt;""&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;&lt;STRONG style="font-size: 10pt;"&gt;DS_1.reloadData();&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;"On Result Set Changed" event of data source DS_1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;dataChangeCount = dataChangeCount + &lt;SPAN class="s1"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;TEXT_3.setText(dataChangeCount + &lt;SPAN class="s2"&gt;""&lt;/SPAN&gt;);&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;myTimer1, myTimer2 and dataChangeCount are defined as Global Script Variables of type Integer.&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;The last script is simply to verify that the data source is in fact being reloaded (because it is not visually obvious from the Crosstab update in my case since the backend data itself is static).&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;So, &lt;EM&gt;reloadData()&lt;/EM&gt; should definitely work in your case.&amp;nbsp; Perhaps you could reproduce the above test scenario to check the behaviour in your system?&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Regards,&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Mustafa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2015 01:57:58 GMT</pubDate>
    <dc:creator>MustafaBensan</dc:creator>
    <dc:date>2015-08-25T01:57:58Z</dc:date>
    <item>
      <title>ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaq-p/11275733</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'm working on a near real time scenario where my data has to refresh on the Design studio application, without ending the session of the application, for every 30 minutes. I used the Realtime SDK -timer component and achieved a screen change. But the data refresh does not happen. I wrote DS_1.reloadData(); on the on timer script box for the timer component and restarted the timer. But this does not refresh my data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using DS1.5 as my client tool and BEx query as my backend. I checked a lot of discussions in SCN and the developer guide for DS1.5. Everywhere it says that reloadData() should refresh the data when there is no filter or variable change happening. But this is not happening in my case. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried setting a filter value and after a second changed the filter value as well and then did the reloadData() script again. But this does not work wither. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any cache which I can reset or uncheck to refresh data? This is an important feature of the dashboard and is a major requirement. There will be no interaction in the dashboard and there are no variables for me to use. I can create variables but this will be as a last option. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone please help me on this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Varshini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 13:43:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaq-p/11275733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-08-24T13:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275734#M4173344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Varshini - I am wondering if you could use the timer referenced (not the timer SDK) in Mustafa's reply here: &lt;A href="https://scn.sap.com/thread/3780791" title="https://scn.sap.com/thread/3780791"&gt;Design studio auto refresh every X minutes | SCN&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are, could you include some screen shots (use camera icon) on how you are using this, similar to the screen shots Mustafa shows?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 13:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275734#M4173344</guid>
      <dc:creator>TammyPowlas</dc:creator>
      <dc:date>2015-08-24T13:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275735#M4173345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varshini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition to Tammy's suggestion, can you place an APPLICATION.Alert() call in the "On Timer" event to confirm that it is in fact being triggered after 30 minutes?&amp;nbsp; You might have encountered the 30 minute timeout threshold discussed in the post &lt;A _jive_internal="true" href="https://answers.sap.com/thread/3717908"&gt;Timeout in Design Studio&lt;/A&gt;.&amp;nbsp; Perhaps you can verify by testing with a 5 minute timer setting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mustafa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 14:20:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275735#M4173345</guid>
      <dc:creator>MustafaBensan</dc:creator>
      <dc:date>2015-08-24T14:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275736#M4173346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tammy, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Timer I'm using is the Real Time Package timer as mentioned in the discussion by Mustafa. I'll get you screenshots in a while. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Mustafa&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I'm using two timer components in my application. One is to change screens every 30 seconds, which works perfectly. The other is for the data refresh.I did try this out with an application.alert() on both timers and they worked fine. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I do not have issues with session expiration because the application keeps running without any timeout errors even after manual intervention after 4 hours. But the reload does not happen. The next thing I'm going to try is to have just one timer component and test the reloadData() script. If this works then Design Studio probably does not like having more than one timer in an application. But I'm not sure how it will help me. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Varshini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 15:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275736#M4173346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-08-24T15:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275737#M4173347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varshini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on my testing, running two timers simultaneously works fine.&amp;nbsp; It seems there must be an issue with the &lt;EM&gt;reloadData()&lt;/EM&gt; script which we need to investigate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mustafa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 15:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275737#M4173347</guid>
      <dc:creator>MustafaBensan</dc:creator>
      <dc:date>2015-08-24T15:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275738#M4173348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mustafa. Then, as a workaround for the reloadData(), I'm going to try out the assignDatasource() and loadDatasource() combination. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any other scenarios or tests that I can try to test if it really is a reloadData() script issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Varshini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 17:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275738#M4173348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-08-24T17:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275739#M4173349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The AssignDatasource and LoadDatasource combination of scripts worked.Thanks Mustafa. The only drawback of this is that, I had done some changes on the edit Initial view of my data source. This seems to get reset. I'll have to reassign those changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. But does the reloadData() not work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Varshini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 18:18:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275739#M4173349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-08-24T18:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275740#M4173350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varshini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The workaround using the &lt;EM&gt;AssignDataSource()&lt;/EM&gt; and &lt;EM&gt;LoadDataSource()&lt;/EM&gt; combination is intended for the case when the data source is a Universe because &lt;EM&gt;reloadData()&lt;/EM&gt; is not supported for Universes up to DS 1.4, although from the DS 1.5 script content assist documentation it appears that this scenario is now supported.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, in your case &lt;EM&gt;&lt;STRONG&gt;reloadData()&lt;/STRONG&gt;&lt;/EM&gt; should definitely work for a BEx data source.&amp;nbsp; I was able to successfully verify this in my test system, with two timer components as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/776766" width="450" /&gt;&lt;/P&gt;&lt;P&gt;My scripts are as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"On Startup" event of Application:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;TIMER_1.start();&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN style="font-size: 10pt;"&gt;TIMER_2.start();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"On Timer" event of TIMER_1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;myTimer1 = myTimer1 + &lt;SPAN class="s1"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN style="font-size: 10pt;"&gt;TEXT_1.setText(myTimer1 + &lt;/SPAN&gt;&lt;SPAN class="s2" style="font-size: 10pt;"&gt;""&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;"On Timer" event of TIMER_2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;myTimer2 = myTimer2 + &lt;SPAN class="s1"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN style="font-size: 10pt;"&gt;TEXT_2.setText(myTimer2 + &lt;/SPAN&gt;&lt;SPAN class="s2" style="font-size: 10pt;"&gt;""&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p2"&gt;&lt;STRONG style="font-size: 10pt;"&gt;DS_1.reloadData();&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;"On Result Set Changed" event of data source DS_1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;dataChangeCount = dataChangeCount + &lt;SPAN class="s1"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;TEXT_3.setText(dataChangeCount + &lt;SPAN class="s2"&gt;""&lt;/SPAN&gt;);&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;myTimer1, myTimer2 and dataChangeCount are defined as Global Script Variables of type Integer.&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;The last script is simply to verify that the data source is in fact being reloaded (because it is not visually obvious from the Crosstab update in my case since the backend data itself is static).&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;So, &lt;EM&gt;reloadData()&lt;/EM&gt; should definitely work in your case.&amp;nbsp; Perhaps you could reproduce the above test scenario to check the behaviour in your system?&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Regards,&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Mustafa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 01:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275740#M4173350</guid>
      <dc:creator>MustafaBensan</dc:creator>
      <dc:date>2015-08-25T01:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275741#M4173351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure Mustafa. I'll try this out and let you know as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Varshini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 17:48:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275741#M4173351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-08-26T17:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: ReloadData() script does not refresh data. Any ideas why?</title>
      <link>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275742#M4173352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has this worked? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are having a similar issue on DS 1.6. We have a query that has date as a parameter and is bringing back delivery counts on refresh. When the date remains the same, the dashboard is failing to bring back current data. But when I close the application and reopen, the data refreshes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some reason, when SAP said we weren't supposed to use TIMER for&amp;nbsp; PROD purposes, we tried using a button to check if the reloadData() function is even bringing back any data. To our surprise, the function doesn't bring back data when the paramter remains the same. It brings back current data when we change the date however. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone faced the same issue? If yes, were you able to resolve it or find a workaround? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2016 14:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/reloaddata-script-does-not-refresh-data-any-ideas-why/qaa-p/11275742#M4173352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-10-04T14:45:46Z</dc:date>
    </item>
  </channel>
</rss>

