<?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 Dynamic Update: Save data after dynamic update in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578625#M1100770</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using Dynamic Update. I have inserted two new values into my table(say, employee) how do I save it to the QVD file back from which I am reading them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Apr 2014 10:46:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-04-15T10:46:48Z</dc:date>
    <item>
      <title>Dynamic Update: Save data after dynamic update</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578625#M1100770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using Dynamic Update. I have inserted two new values into my table(say, employee) how do I save it to the QVD file back from which I am reading them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 10:46:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578625#M1100770</guid>
      <dc:creator />
      <dc:date>2014-04-15T10:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update: Save data after dynamic update</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578626#M1100771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As i under stand you have 2 new fields like say, employee if so then and this into the load script of the table like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tablename:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;say,//new field&lt;/P&gt;&lt;P&gt;employee, //new field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;..From location;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store tablename into tablename.qvd;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 10:56:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578626#M1100771</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-15T10:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update: Save data after dynamic update</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578627#M1100772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you provide more details then will be ok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 10:57:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578627#M1100772</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-15T10:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update: Save data after dynamic update</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578628#M1100773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have file Employee.csv, I am reading the data from it. The columns that are available are Emp Name and Emp City.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the below load statement I loaded the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Employee:&lt;/P&gt;&lt;P&gt;Load EmpName, //field&lt;/P&gt;&lt;P&gt;EmpCity, //field&lt;/P&gt;&lt;P&gt;From Employee.csv;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script loaded successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have now 5 employee reocrds in the list box for name and city.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created two input fields, Enter New 'Emp Name' and 'Enter New Emp City'. I have 'Add' button with action Dynamic Update. The below Query I used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO * (EmpName, EmpCity) VALUES ('$(vEmpName)', '$(vEmpCity)') &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where vEmpName and vEmpCity variables for input boxes defined above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I enter a new name and city in the input text boxes and Click Add, the new values are seen in the list boxes but how do I write this new data in the source file back Employee.csv?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 11:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Save-data-after-dynamic-update/m-p/578628#M1100773</guid>
      <dc:creator />
      <dc:date>2014-04-15T11:05:01Z</dc:date>
    </item>
  </channel>
</rss>

