<?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: Export all qvw's field names qualified without using Qualify in the script... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67833#M11160</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fantastic Peter,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thank you very much for this contribution. Very useful tip!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Apr 2018 15:23:22 GMT</pubDate>
    <dc:creator>Marcos_Ferreira_dos_Santos</dc:creator>
    <dc:date>2018-04-20T15:23:22Z</dc:date>
    <item>
      <title>Export all qvw's field names qualified without using Qualify in the script...</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67828#M11155</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 want to export the qualified field names (Table.Field) of one given application, but its script doesn't have the Qualify * command in it, hence the export option gives me only one file with all the Fields and other with all the Tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a parameter to do that within the Document ? Any workaround suggested ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance by the attention,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Marcos&lt;/P&gt;&lt;P&gt;Qlikview version: 11.20.12904.0 SR12&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2018 22:48:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67828#M11155</guid>
      <dc:creator>Marcos_Ferreira_dos_Santos</dc:creator>
      <dc:date>2018-04-19T22:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Export all qvw's field names qualified without using Qualify in the script...</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67829#M11156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THe following code gets the field name and tables associated with it.&lt;/P&gt;&lt;P&gt;Just add a table with the both generated fields of the new table and export it. THe names are "qualified" by table name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;X:&lt;/P&gt;&lt;P&gt;load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Prestador,Internações, Partos&lt;/P&gt;&lt;P&gt;AAA, 4,1&lt;/P&gt;&lt;P&gt;BBB, 5, 4&lt;/P&gt;&lt;P&gt;CCC, 5, 3&lt;/P&gt;&lt;P&gt;DDD, 6, 2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y:&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;FieldA,FieldB&lt;/P&gt;&lt;P&gt;1,2&lt;/P&gt;&lt;P&gt;3,4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = 0 to NoOfTables()-1&lt;/P&gt;&lt;P&gt;let vTest = TableName(i);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for j = 1 to NoOfFields('$(vTest)')&lt;/P&gt;&lt;P&gt;tableNameFields:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'$(vTest)' as [Table Name],&lt;/P&gt;&lt;P&gt;'$(vTest).' &amp;amp; FieldName($(j),'$(vTest)') as [Field Name]&lt;/P&gt;&lt;P&gt;AutoGenerate(1);&lt;/P&gt;&lt;P&gt;next j;&lt;/P&gt;&lt;P&gt;next i;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="sample.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/200363_sample.png" style="height: 496px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Felipe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2018 12:31:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67829#M11156</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-04-20T12:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Export all qvw's field names qualified without using Qualify in the script...</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67830#M11157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Felip,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your contribution, it helped me a lot.&lt;/P&gt;&lt;P&gt;In fact, a friend of mine today did come up with a simpler solution: generate an object Table wih the fields $Table and $Field, in the Document to reverse engineer, then export to a txt/csv file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2018 13:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67830#M11157</guid>
      <dc:creator>Marcos_Ferreira_dos_Santos</dc:creator>
      <dc:date>2018-04-20T13:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Export all qvw's field names qualified without using Qualify in the script...</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67831#M11158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That might be the case, but unless you qualify the table, you'll have to make the transformation outside.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's another way to do it too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Felipe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2018 14:08:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67831#M11158</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-04-20T14:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Export all qvw's field names qualified without using Qualify in the script...</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67832#M11159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Open the document from which you want to export all fields in a "qualified" format in QV Desktop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add a listbox using &lt;EM&gt;New Sheet Object-&amp;gt;List Box...,&lt;/EM&gt; but instead of selecting a field to display, you navigate to the bottom of the field list and select &lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;lt;Expression&amp;gt;&lt;/SPAN&gt;. An expression editor window will pop-up. Enter something like the following expression (vary the layout according to your requirements):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;='[' &amp;amp; $Table &amp;amp; '.' &amp;amp; $Field &amp;amp; ']'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Close the properties dialog. A listbox with qualified field names will be shown on your sheet. From the Listbox right-mouse-button-menu, select &lt;EM&gt;Send to Excel...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tada !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2018 14:09:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67832#M11159</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-04-20T14:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Export all qvw's field names qualified without using Qualify in the script...</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67833#M11160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fantastic Peter,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thank you very much for this contribution. Very useful tip!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2018 15:23:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-qvw-s-field-names-qualified-without-using-Qualify-in/m-p/67833#M11160</guid>
      <dc:creator>Marcos_Ferreira_dos_Santos</dc:creator>
      <dc:date>2018-04-20T15:23:22Z</dc:date>
    </item>
  </channel>
</rss>

