<?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: Why my partial reloading is not updating the values? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707242#M723497</link>
    <description>&lt;P&gt;I don't see the else part in your script. I mean, at multiple instances you have added the if clause&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If '$(vExecMode)'='Full'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't see&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ElseIf '$(vExecMode)'='Partial'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Jun 2020 19:44:13 GMT</pubDate>
    <dc:creator>vamsee</dc:creator>
    <dc:date>2020-06-01T19:44:13Z</dc:date>
    <item>
      <title>Why my partial reloading is not updating the values?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707237#M723496</link>
      <description>&lt;P&gt;Hello guys,&lt;/P&gt;&lt;P&gt;Could you please help me to identify why my partial reloading is not updating some values?&lt;/P&gt;&lt;P&gt;Basically, I'm using the partial reload to update the values of the following tables:&lt;BR /&gt;&lt;BR /&gt;Variação&lt;BR /&gt;Ajustes&lt;BR /&gt;Cotação&lt;BR /&gt;Notícias&lt;BR /&gt;Taxas&lt;BR /&gt;Índices&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The full reload is working perfectly, but the partial reloading is not updating the values.&lt;BR /&gt;&lt;BR /&gt;Please, find my project attached;&lt;BR /&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707237#M723496</guid>
      <dc:creator>brunolelli87</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why my partial reloading is not updating the values?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707242#M723497</link>
      <description>&lt;P&gt;I don't see the else part in your script. I mean, at multiple instances you have added the if clause&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If '$(vExecMode)'='Full'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't see&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ElseIf '$(vExecMode)'='Partial'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 19:44:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707242#M723497</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-06-01T19:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Why my partial reloading is not updating the values?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707244#M723498</link>
      <description>&lt;P&gt;But I don't think we need the else part...&lt;BR /&gt;Based on what I understood, and please correct me if I'm wrong, every time you run a Partial reload, the system will load everything that has Replace or Add before the LOAD statement.&lt;/P&gt;&lt;P&gt;Running a partial Reload, I don't want to have the Tabs (Empresas, Bancos, Nomes...) updated, that's why I don't even insert the else statement.&lt;/P&gt;&lt;P&gt;The script was working perfectly until yesterday when I updated it with the following statement at the &lt;STRONG&gt;Cotações Tabrow&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// início da sessão de teste

Replace
VarAnual:         
LOAD             
Null() as RowID,  
Null() as YDVP,  
Null() as STCK3,  
Null() as VDAF1,  
Null() as VDAF2  
autogenerate 0;

VarAnual:
Add Load 
RowNo() As RowID, 
YDVP, 
STCK3, 
FirstSortedValue(VDAF, DVPG) 	as VDAF1, 
FirstSortedValue(VDAF, -DVPG) 	as VDAF2
Resident Cotação Group By STCK3, YDVP
;

Replace
Variaçao:         
LOAD             
Null() as YDV2,  
Null() as STCK3,  
Null() as VVDAF  
autogenerate 0;  

Variaçao:
Add Load 
YDVP							as YDV2, 
STCK3							as STCK3, 
(VDAF2-VDAF1)/VDAF1 			as VVDAF
Resident VarAnual
;

Drop Table VarAnual;


// término da sessão de teste&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help,&lt;BR /&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 19:50:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707244#M723498</guid>
      <dc:creator>brunolelli87</dc:creator>
      <dc:date>2020-06-01T19:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Why my partial reloading is not updating the values?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707259#M723499</link>
      <description>&lt;P&gt;Yeah, you are right, I am sorry. I assumed you were triggering this using a button and variable, not the usual qlik way.&lt;/P&gt;&lt;P&gt;If you are sure that this script is causing you an error I would say running in a separate qvw and check if you are getting your desired output.&lt;/P&gt;&lt;P&gt;I also suggest you put some trace statements /debug in your script; to check the flow.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 20:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-my-partial-reloading-is-not-updating-the-values/m-p/1707259#M723499</guid>
      <dc:creator>vamsee</dc:creator>
      <dc:date>2020-06-01T20:22:26Z</dc:date>
    </item>
  </channel>
</rss>

