<?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: Append text to text file from access point in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Append-text-to-text-file-from-access-point/m-p/1383959#M421526</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By using the IE plugin a macro similar to this one: &lt;A href="https://community.qlik.com/thread/283228"&gt;VBS. openOutputFile issue&lt;/A&gt; could be used (the second parameter by OpenTextFile needs to be 8 for appending data). By using the AJAX client it won't be possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Nov 2017 15:59:01 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2017-11-28T15:59:01Z</dc:date>
    <item>
      <title>Append text to text file from access point</title>
      <link>https://community.qlik.com/t5/QlikView/Append-text-to-text-file-from-access-point/m-p/1383958#M421525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;My vendor has request:&lt;/P&gt;&lt;P&gt;Qlikview App users (Clients) when open an app from access point can Append text to a&amp;nbsp; shared text file on server&lt;/P&gt;&lt;P&gt;how can I do this for him&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;IMG alt="img1_server_client.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/184864_img1_server_client.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 08:38:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Append-text-to-text-file-from-access-point/m-p/1383958#M421525</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-28T08:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Append text to text file from access point</title>
      <link>https://community.qlik.com/t5/QlikView/Append-text-to-text-file-from-access-point/m-p/1383959#M421526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By using the IE plugin a macro similar to this one: &lt;A href="https://community.qlik.com/thread/283228"&gt;VBS. openOutputFile issue&lt;/A&gt; could be used (the second parameter by OpenTextFile needs to be 8 for appending data). By using the AJAX client it won't be possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 15:59:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Append-text-to-text-file-from-access-point/m-p/1383959#M421526</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-11-28T15:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Append text to text file from access point</title>
      <link>https://community.qlik.com/t5/QlikView/Append-text-to-text-file-from-access-point/m-p/1383960#M421527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did it finally by mu self&lt;/P&gt;&lt;P&gt;I Use this Macro&lt;/P&gt;&lt;P&gt;'---------------------------------Start of Macro--------------&lt;/P&gt;&lt;P&gt;sub Append&lt;/P&gt;&lt;P&gt;Const ForAppending = 8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objFSO = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'-----this is the address of shared file&lt;/P&gt;&lt;P&gt;Set objFile = objFSO.OpenTextFile("\\Server IP\...\textreport.txt", ForAppending)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'---I need to variable that i define them here&lt;/P&gt;&lt;P&gt;Set var1 = ActiveDocument.Variables("vInput")&lt;/P&gt;&lt;P&gt;var = var1.GetContent.String&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set var2 = ActiveDocument.Variables("vQVUser")&lt;/P&gt;&lt;P&gt;var3 = var2.GetContent.String&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objFile.WriteLine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objFile.Write "" &amp;amp;var3&amp;amp; "," &amp;amp;var&amp;amp; ","&amp;amp;now &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objFile.Close&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2017 09:36:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Append-text-to-text-file-from-access-point/m-p/1383960#M421527</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-04T09:36:17Z</dc:date>
    </item>
  </channel>
</rss>

