<?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 Scripting the creation of a QVO in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238181#M89121</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the syntax to script the exporting (store) contents of an object to a QVO?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use the QVO has a data table in QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Oct 2010 19:19:49 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-10-14T19:19:49Z</dc:date>
    <item>
      <title>Scripting the creation of a QVO</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238181#M89121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the syntax to script the exporting (store) contents of an object to a QVO?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use the QVO has a data table in QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 19:19:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238181#M89121</guid>
      <dc:creator />
      <dc:date>2010-10-14T19:19:49Z</dc:date>
    </item>
    <item>
      <title>Scripting the creation of a QVO</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238182#M89122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First you´ll store your table at qvw generate qvd.Use this syntax&lt;/P&gt;&lt;P&gt;STORE YOUR_TABLE INTO [YOUR_PATH \ YOUR_NAME.QVD];&lt;/P&gt;&lt;P&gt;and after that....just read from another application....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 19:33:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238182#M89122</guid>
      <dc:creator />
      <dc:date>2010-10-14T19:33:35Z</dc:date>
    </item>
    <item>
      <title>Scripting the creation of a QVO</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238183#M89123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would the extension be QVO instead of QVD?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 20:29:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238183#M89123</guid>
      <dc:creator />
      <dc:date>2010-10-14T20:29:59Z</dc:date>
    </item>
    <item>
      <title>Scripting the creation of a QVO</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238184#M89124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the extension is QVD (QlikView Data)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 21:50:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238184#M89124</guid>
      <dc:creator />
      <dc:date>2010-10-14T21:50:23Z</dc:date>
    </item>
    <item>
      <title>Scripting the creation of a QVO</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238185#M89125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you taking about the script to export an chart object using a macro or in the load script when you are loading data and want to save a table?&lt;/P&gt;&lt;P&gt;For the marco, the function would be:&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;obj.ExportEx "C:\test.qvd", 4&lt;/P&gt;&lt;P&gt;QVO is not an option. These are you file format options:&lt;/P&gt;&lt;P&gt;Export format&lt;BR /&gt;0 = HTML&lt;BR /&gt;1 = Text delimited&lt;BR /&gt;2 = bitmap image&lt;BR /&gt;3 = XML&lt;BR /&gt;4 = QVD&lt;BR /&gt;5 = BIFF (Excel)&lt;/P&gt;&lt;P&gt;You can also create an action that exports raw data and you can export that data into the qvo format.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 21:55:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-the-creation-of-a-QVO/m-p/238185#M89125</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-14T21:55:53Z</dc:date>
    </item>
  </channel>
</rss>

