<?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 Store fields name in CSV in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221363#M872276</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to make an maintenance of fields name. I intend to load all the fields from script into a csv file and i don't know how.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Cosmina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Store fields name in CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221363#M872276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to make an maintenance of fields name. I intend to load all the fields from script into a csv file and i don't know how.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Cosmina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221363#M872276</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Store fields name in CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221364#M872277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do some way with create the CSV file for your Data model and then work on the field which you want to keep or else you want to delete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vFolder = 'C:\Users\CSV\';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for vCount = 0 to NoOfTables()-1&lt;/P&gt;&lt;P&gt;Let vTableName = TableName($(vCount));&lt;/P&gt;&lt;P&gt;STORE $(vTableName) into $(vFolder)$(vTableName).csv (txt);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next vCount&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 14:45:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221364#M872277</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2016-11-09T14:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Store fields name in CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221365#M872278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Thank you for the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to export only the header in a single column, not the values and not on separate tables with their values. Meaning, all the fields name from all tables in a single column. And eventually a header on the second column, called New_Field. To understand exactly the process, i am going to send the file to my client, he is going to insert in the second column the new namind and I am going to use Rename Fields using FieldMap;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, i need a way to prepare the file like as mapping table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 15:06:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221365#M872278</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-09T15:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Store fields name in CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221366#M872279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This script will export a table of TableNames &amp;amp; FieldNames.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FOR tableIdx = NoOfTables()-1 to 0 step -1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LET vTable = TableName($(tableIdx));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; FOR fieldIdx = 1 to NoOfFields('$(vTable)')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; FieldList:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; '[$(vTable)]' as TableName,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; FieldName($(fieldIdx),'$(vTable)') as FieldName&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; AutoGenerate 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; NEXT fieldIdx&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;NEXT tableIdx&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;STORE FieldList INTO FieldList.csv (txt);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 15:26:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-fields-name-in-CSV/m-p/1221366#M872279</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-11-09T15:26:25Z</dc:date>
    </item>
  </channel>
</rss>

