<?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: Pulling the tag string nodes in the metadata... in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2073242#M88009</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/155547"&gt;@markperrone&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've not included those in the ISA as I wanted to ensure that it would work over any QVD, in fact the script was first written years ago over QlikView QVDs.&lt;/P&gt;
&lt;P&gt;Saying that, each QVD I have looked at which is half recent has both of those fields in with exactly the same field name. I've dug up a 13 year old QVD and it only has the Table Header field, but that has the exact same field name.&lt;/P&gt;
&lt;P&gt;Everywhere I have seen, the table header only contains zero, whilst the field header contains ascending numbers as you go down the list of fields - my guess is it is the start position of the field in the QVD. That would be easily checked out - but I've not done it.&lt;/P&gt;
&lt;P&gt;What are you hoping to get from these fields?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want a decade old post from&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6622"&gt;@hic&lt;/a&gt;&amp;nbsp;talking French (I think) on the topic there is this:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/script-qlikview/m-p/562906" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/script-qlikview/m-p/562906&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Also this post references the field:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/How-to-use-QVD-file-functions-in-the-script/m-p/929199" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/How-to-use-QVD-file-functions-in-the-script/m-p/929199&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There does not seem to be a lot written about those fields though, as far as I can see.&lt;/P&gt;
&lt;P&gt;Steve&lt;/P&gt;</description>
    <pubDate>Fri, 19 May 2023 10:45:34 GMT</pubDate>
    <dc:creator>stevedark</dc:creator>
    <dc:date>2023-05-19T10:45:34Z</dc:date>
    <item>
      <title>Pulling the tag string nodes in the metadata...</title>
      <link>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2070819#M87826</link>
      <description>&lt;P&gt;I used the data manager to open a qvd as XML.&lt;/P&gt;
&lt;P&gt;It showed a table with all the tag/string nodes.&lt;/P&gt;
&lt;P&gt;Tags:&lt;BR /&gt;LOAD&lt;BR /&gt;[String%Table],&lt;BR /&gt;[%Key_QvdFieldHeader_59D66ED49CFF179D]&lt;BR /&gt;FROM $(vFileName)&lt;BR /&gt;(XmlSimple, table is [QvdTableHeader/Fields/QvdFieldHeader/Tags/String]);&lt;/P&gt;
&lt;P&gt;When I inspect the qvd, I don't see the key_qvdfieldheader_59D66ED49CFF179D.&lt;/P&gt;
&lt;P&gt;Is there some good documentation on qvd metadata ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 17:29:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2070819#M87826</guid>
      <dc:creator>markperrone</dc:creator>
      <dc:date>2023-05-12T17:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling the tag string nodes in the metadata...</title>
      <link>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2070852#M87832</link>
      <description>&lt;P&gt;I haven't seen any official documentation of the QVD XML header, but you could take a look at &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6748"&gt;@stevedark&lt;/a&gt;&amp;nbsp;'s old blogpost&amp;nbsp;How To Read Meta Data From A QlikView QVD. It can help you getting started.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.quickintelligence.co.uk/read-meta-data-qlikview-qvd/" target="_blank"&gt;https://www.quickintelligence.co.uk/read-meta-data-qlikview-qvd/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 19:26:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2070852#M87832</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2023-05-12T19:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling the tag string nodes in the metadata...</title>
      <link>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2070862#M87835</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/25001"&gt;@Vegar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for sharing the link to my post.&lt;/P&gt;
&lt;P&gt;There is also a full script included with my &lt;STRONG&gt;&lt;A title="Instant Sense Application" href="https://www.quickintelligence.co.uk/instant-qlik-sense-app/" target="_self"&gt;Instant Sense Application&lt;/A&gt;&lt;/STRONG&gt;&amp;nbsp;which loops all QVDs in a library and pulls in the metadata from each of them.&lt;/P&gt;
&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 20:06:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2070862#M87835</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2023-05-12T20:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling the tag string nodes in the metadata...</title>
      <link>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2072929#M87998</link>
      <description>&lt;P&gt;Hi Steve&lt;/P&gt;
&lt;P&gt;I looked through ISA and didn't see a reference to the tag elements.&amp;nbsp; From I can research there are %key elements in the xml I can use to collect the tags.&amp;nbsp; Are these elements the same across all QVDs ?&lt;/P&gt;
&lt;P&gt;%Key_QvdFieldHeader_59D66ED49CFF179D&lt;/P&gt;
&lt;P&gt;%Key_QvdTableHeader_B94FCCAC68ED3E20&lt;/P&gt;
&lt;P&gt;I tried a few and they appear to be consistent.&amp;nbsp; Anyone tried to work with these two keys ?&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2023 15:16:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2072929#M87998</guid>
      <dc:creator>markperrone</dc:creator>
      <dc:date>2023-05-18T15:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling the tag string nodes in the metadata...</title>
      <link>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2073242#M88009</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/155547"&gt;@markperrone&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've not included those in the ISA as I wanted to ensure that it would work over any QVD, in fact the script was first written years ago over QlikView QVDs.&lt;/P&gt;
&lt;P&gt;Saying that, each QVD I have looked at which is half recent has both of those fields in with exactly the same field name. I've dug up a 13 year old QVD and it only has the Table Header field, but that has the exact same field name.&lt;/P&gt;
&lt;P&gt;Everywhere I have seen, the table header only contains zero, whilst the field header contains ascending numbers as you go down the list of fields - my guess is it is the start position of the field in the QVD. That would be easily checked out - but I've not done it.&lt;/P&gt;
&lt;P&gt;What are you hoping to get from these fields?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want a decade old post from&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6622"&gt;@hic&lt;/a&gt;&amp;nbsp;talking French (I think) on the topic there is this:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/script-qlikview/m-p/562906" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/script-qlikview/m-p/562906&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Also this post references the field:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/How-to-use-QVD-file-functions-in-the-script/m-p/929199" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/How-to-use-QVD-file-functions-in-the-script/m-p/929199&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There does not seem to be a lot written about those fields though, as far as I can see.&lt;/P&gt;
&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 10:45:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Pulling-the-tag-string-nodes-in-the-metadata/m-p/2073242#M88009</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2023-05-19T10:45:34Z</dc:date>
    </item>
  </channel>
</rss>

