<?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 Save table to file on server in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199327#M1322788</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've found a issue with my budget appllication when used via AJAX. It needs to save the new budget to a file on the server, so another application can read it.&lt;/P&gt;&lt;P&gt;The Action export, works nicely in the Developer, but pipes out a file to the browser in AJAX, instead on the file system.&lt;/P&gt;&lt;P&gt;And this macro does not seem to work in AJAX:&lt;/P&gt;&lt;P&gt;set doc = ActiveDocument&lt;BR /&gt; set obj = doc.GetSheetObject("CH416")&lt;BR /&gt; obj.ServerSideExport "budget.csv",";"&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
    <dc:creator>tseebach</dc:creator>
    <dc:date>2026-01-26T18:19:17Z</dc:date>
    <item>
      <title>Save table to file on server</title>
      <link>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199327#M1322788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've found a issue with my budget appllication when used via AJAX. It needs to save the new budget to a file on the server, so another application can read it.&lt;/P&gt;&lt;P&gt;The Action export, works nicely in the Developer, but pipes out a file to the browser in AJAX, instead on the file system.&lt;/P&gt;&lt;P&gt;And this macro does not seem to work in AJAX:&lt;/P&gt;&lt;P&gt;set doc = ActiveDocument&lt;BR /&gt; set obj = doc.GetSheetObject("CH416")&lt;BR /&gt; obj.ServerSideExport "budget.csv",";"&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199327#M1322788</guid>
      <dc:creator>tseebach</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re. :Save table to file on server</title>
      <link>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199328#M1322791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I think macros doesn't work with AJAX.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Martin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 May 2010 12:54:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199328#M1322791</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-05-11T12:54:21Z</dc:date>
    </item>
    <item>
      <title>Re. :Save table to file on server</title>
      <link>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199329#M1322793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not true, I use a macro to recalcualte some input fields, that works nicely &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This code works:&lt;/P&gt;&lt;P&gt;Set objRowCount = Doc.Fields("RecId").GetPossibleValues&lt;BR /&gt; For r = 0 to objRowCount.Count - 1&lt;BR /&gt; ' Select a single item&lt;BR /&gt; Doc.Fields("RecId").Select objRowCount.Item(r).text&lt;BR /&gt; ' Get the possible ids&lt;BR /&gt;&lt;BR /&gt; ' Calculate the change&lt;BR /&gt; strForecast = Round(objvIncrease.GetContent.String * objForecast.Item(r).text)&lt;BR /&gt; Doc.Fields("Forecast").SetInputFieldValue objRowCount.Item(r).text-1,Cstr(strForecast)&lt;BR /&gt; Doc.Fields("Forecast").Clear&lt;BR /&gt; Doc.Fields("RecId").Clear&lt;BR /&gt; Next&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 May 2010 13:49:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199329#M1322793</guid>
      <dc:creator>tseebach</dc:creator>
      <dc:date>2010-05-11T13:49:40Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Save table to file on server</title>
      <link>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199330#M1322796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good to know, I had got this information by QlikTech France when i had issues with macros and Ajax.&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 11:33:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199330#M1322796</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-05-12T11:33:05Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Save table to file on server</title>
      <link>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199331#M1322799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would love to have a list of what works in ajax. I know everybody is trying to kill macros, but we need this kind of environment to create exceptional solutions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 11:56:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199331#M1322799</guid>
      <dc:creator>tseebach</dc:creator>
      <dc:date>2010-05-12T11:56:53Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Save table to file on server</title>
      <link>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199332#M1322800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm completely agree with you !&lt;/P&gt;&lt;P&gt;And in passing, your web site is very interesting !&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 12:57:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-table-to-file-on-server/m-p/199332#M1322800</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-05-12T12:57:11Z</dc:date>
    </item>
  </channel>
</rss>

