<?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: storing system fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/storing-system-fields/m-p/296845#M1193155</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Angus,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;What i have understood from your question is you want to export the system fields to excel or text files?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;You could do it with post reload trigger.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Create a pivot table with all sysyem field. Right click on sheet i.e. GUI and go to "&lt;STRONG&gt;New Sheet Object" --&amp;gt; "System Table"&lt;/STRONG&gt;. once you do this, write a macro to export this pivot table to desired loaction and map the macro to post reload trigger of Document Property.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sample Macro to export the data to excel.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Sub ExportData()&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;'on the place of "CH01" give your pivot table object id&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;obj.ExportBiff "C:\test.xls"&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;End Sub &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Hope this helps you.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;- Sridhar&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jun 2011 01:27:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-06-17T01:27:54Z</dc:date>
    <item>
      <title>storing system fields</title>
      <link>https://community.qlik.com/t5/QlikView/storing-system-fields/m-p/296844#M1193154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm doing some script debugging and want to dump the system fields to file so that I can inspect them.&amp;nbsp; The STORE statement requires a table name, but I've not found a respective system table that I could reference.&amp;nbsp; Anyone know of a way to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By way of background, my hand-me-down script has a DROP FIELDS statement with about 40 fields, and it's failing with the complaint that one of the fields is missing.&amp;nbsp; I quite like being able to insert a "tap point" into my scripts using STORE, so I can check what's going on (I suppose that otherwise, I'll need to thrown in an "exist script" and check it via GUI).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angus.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2011 00:41:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/storing-system-fields/m-p/296844#M1193154</guid>
      <dc:creator>gussfish</dc:creator>
      <dc:date>2011-06-17T00:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: storing system fields</title>
      <link>https://community.qlik.com/t5/QlikView/storing-system-fields/m-p/296845#M1193155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Angus,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;What i have understood from your question is you want to export the system fields to excel or text files?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;You could do it with post reload trigger.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Create a pivot table with all sysyem field. Right click on sheet i.e. GUI and go to "&lt;STRONG&gt;New Sheet Object" --&amp;gt; "System Table"&lt;/STRONG&gt;. once you do this, write a macro to export this pivot table to desired loaction and map the macro to post reload trigger of Document Property.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sample Macro to export the data to excel.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Sub ExportData()&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;'on the place of "CH01" give your pivot table object id&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;obj.ExportBiff "C:\test.xls"&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;End Sub &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Hope this helps you.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;- Sridhar&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2011 01:27:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/storing-system-fields/m-p/296845#M1193155</guid>
      <dc:creator />
      <dc:date>2011-06-17T01:27:54Z</dc:date>
    </item>
  </channel>
</rss>

