<?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 Script tabs - How to quickly export them in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-tabs-How-to-quickly-export-them/m-p/629566#M679120</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;As mentioned in the forums and the excellent book QlikView 11 for Developers, the use of tabs in script are primordial to structure the code and make it readable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to know whether there is an easy way to export these, in a similar manner as i.e. we do for tables that have been loaded.&lt;/P&gt;&lt;P&gt;I've tried exporting the script and loading the file as input; and am getting some weird results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Antoine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 May 2014 14:20:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-05-27T14:20:38Z</dc:date>
    <item>
      <title>Script tabs - How to quickly export them</title>
      <link>https://community.qlik.com/t5/QlikView/Script-tabs-How-to-quickly-export-them/m-p/629566#M679120</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;As mentioned in the forums and the excellent book QlikView 11 for Developers, the use of tabs in script are primordial to structure the code and make it readable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to know whether there is an easy way to export these, in a similar manner as i.e. we do for tables that have been loaded.&lt;/P&gt;&lt;P&gt;I've tried exporting the script and loading the file as input; and am getting some weird results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Antoine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 14:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-tabs-How-to-quickly-export-them/m-p/629566#M679120</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-27T14:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Script tabs - How to quickly export them</title>
      <link>https://community.qlik.com/t5/QlikView/Script-tabs-How-to-quickly-export-them/m-p/629567#M679121</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;yes&amp;nbsp; open the "edit script" menu,&lt;/P&gt;&lt;P&gt;then on "file" menu click on "open external script file"&amp;nbsp; and save it where you want&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is a qvs file&amp;nbsp;&amp;nbsp; read as a txt file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get it back in a script&amp;nbsp; use $(include=pathname/filename.qvs)&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 14:24:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-tabs-How-to-quickly-export-them/m-p/629567#M679121</guid>
      <dc:creator />
      <dc:date>2014-05-27T14:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Script tabs - How to quickly export them</title>
      <link>https://community.qlik.com/t5/QlikView/Script-tabs-How-to-quickly-export-them/m-p/629568#M679122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Christian, thanks for input.&lt;/P&gt;&lt;P&gt;I'll clarify by giving a simple example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose that my script is divided into 4 tabs:&lt;/P&gt;&lt;P&gt;Main, LoadDimension1, LoadDimension2, LoadFact&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I do not want&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;is to reinject the script using an include statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I am looking for&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When I export the script, the tabs are identified as ////$tab&lt;/P&gt;&lt;P&gt;I want to have a list of these tabs in a small table called T1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In other terms, I expect a table that has the following structure on input:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Tab,&lt;/P&gt;&lt;P&gt;Main,&lt;/P&gt;&lt;P&gt;LoadDimension1,&lt;/P&gt;&lt;P&gt;LoadDimension2,&lt;/P&gt;&lt;P&gt;LoadFact,&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 14:29:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-tabs-How-to-quickly-export-them/m-p/629568#M679122</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-27T14:29:36Z</dc:date>
    </item>
  </channel>
</rss>

