<?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 Generation of txt file from the script in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145743#M20456</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;Hello experts,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;could you help me with one issue, please? &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; I want to generate .txt file from the script during the load (in QlikSense). I created a new internal table using by LOAD * INLINE and the generation of .txt file was successful. The issue is that in the file there is a lot of rows named as QvdTableHeader which I do not need and I do not want in the file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;Thank you for any advice,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;Maria&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Jul 2016 08:06:32 GMT</pubDate>
    <dc:creator>JaMajka1</dc:creator>
    <dc:date>2016-07-26T08:06:32Z</dc:date>
    <item>
      <title>Generation of txt file from the script</title>
      <link>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145743#M20456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;Hello experts,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;could you help me with one issue, please? &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; I want to generate .txt file from the script during the load (in QlikSense). I created a new internal table using by LOAD * INLINE and the generation of .txt file was successful. The issue is that in the file there is a lot of rows named as QvdTableHeader which I do not need and I do not want in the file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;Thank you for any advice,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1d2129; font-family: helvetica, arial, sans-serif; font-size: 14px;"&gt;Maria&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 08:06:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145743#M20456</guid>
      <dc:creator>JaMajka1</dc:creator>
      <dc:date>2016-07-26T08:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Generation of txt file from the script</title>
      <link>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145744#M20457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Mária,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Editing the table is not possible when using the Store command (the table can only be saved with the same data as the internal table). This means you have to make the necessary changes to the table as part of the LOAD command. It sound like you might have an error in your Store statement. Make sure it is of the form:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-size: 12px;"&gt;Store [mytable] into [myfile].txt (txt);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-size: 12px;"&gt;and &lt;STRONG&gt;NOT&lt;/STRONG&gt; something like:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-size: 12px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;"&gt;Store * into [myfile].txt (txt);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this doesn't help, please share your script for loading and storing the table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 08:32:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145744#M20457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-26T08:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Generation of txt file from the script</title>
      <link>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145745#M20458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Henri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the generation of .txt is okey. The file has been created. It just has a long header in the beggining, so there is no error here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script is:&lt;/P&gt;&lt;P&gt;SET vParameter = 2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Premenna:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;Hodnota&lt;/P&gt;&lt;P&gt;$(vParameter)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;STORE Premenna INTO [lib://tabulecka.txt];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the meanwhile I have found the solution... there should be added " (txt) " in the end. So the last row should be:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;STORE Premenna INTO [lib://tabulecka.txt]&lt;STRONG&gt;(txt)&lt;/STRONG&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You also wrote it in that way &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Maria&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 09:01:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145745#M20458</guid>
      <dc:creator>JaMajka1</dc:creator>
      <dc:date>2016-07-26T09:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Generation of txt file from the script</title>
      <link>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145746#M20459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad you found the solution! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 12:08:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generation-of-txt-file-from-the-script/m-p/1145746#M20459</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-26T12:08:11Z</dc:date>
    </item>
  </channel>
</rss>

