<?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: exporting bookmarks in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/exporting-bookmarks/m-p/254822#M96454</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;Something like the following should do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objShell = CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set sysvarTemp = objShell.Environment("TEMP")&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can use the "sysvarTemp" in your paths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Sep 2011 16:25:05 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2011-09-12T16:25:05Z</dc:date>
    <item>
      <title>exporting bookmarks</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-bookmarks/m-p/254821#M96453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;I am &lt;SPAN style="mso-fareast-language: EN-GB; mso-bidi-language: AR-SA; color: #000000; font-size: 10pt; mso-ansi-language: EN-GB; mso-fareast-theme-font: minor-latin; mso-fareast-font-family: Calibri;"&gt;trying to export bookmarks from within an application (see code below). It works on PCs where the user has dev access (i.e. unrestricted access to the folders) but fails for the majority of the standard users. In the example below, we are trying to write to the root drive. Does QV has a capability to retrieve the temp or tmp system variable as most users have write access to that directory&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-language: EN-GB; mso-bidi-language: AR-SA; color: #000000; font-size: 10pt; mso-ansi-language: EN-GB; mso-fareast-theme-font: minor-latin; mso-fareast-font-family: Calibri;"&gt; and we have a combination of windows XP and Windows 7 - so temp folders are in different locations - &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="mso-bidi-language: AR-SA; mso-fareast-language: EN-GB; color: #000000; font-size: 10pt; mso-ansi-language: EN-GB; font-family: arial,helvetica,sans-serif; mso-fareast-theme-font: minor-latin; mso-fareast-font-family: Calibri;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&lt;SPAN style="mso-fareast-language: EN-GB; mso-bidi-language: AR-SA; color: #000000; font-size: 10pt; mso-ansi-language: EN-GB; mso-fareast-theme-font: minor-latin; mso-fareast-font-family: Calibri;"&gt;Many Thanks&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-language: EN-GB; mso-bidi-language: AR-SA; color: #000000; font-size: 10pt; mso-ansi-language: EN-GB; mso-fareast-theme-font: minor-latin; mso-fareast-font-family: Calibri;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: red; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; sub Module1&lt;BR /&gt; &lt;BR /&gt; ActiveDocument.CreateDocBookmark true, "MOBS-EXP_1"&lt;BR /&gt; ActiveDocument.ExportBookmarks "c:\MODULE1.qbm"&lt;BR /&gt; ActiveDocument.RemoveDocBookmark "MOBS-EXP_1"&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: red; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&lt;BR /&gt; end sub&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2011 15:34:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-bookmarks/m-p/254821#M96453</guid>
      <dc:creator />
      <dc:date>2011-09-12T15:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: exporting bookmarks</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-bookmarks/m-p/254822#M96454</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;Something like the following should do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objShell = CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set sysvarTemp = objShell.Environment("TEMP")&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can use the "sysvarTemp" in your paths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2011 16:25:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-bookmarks/m-p/254822#M96454</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-09-12T16:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: exporting bookmarks</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-bookmarks/m-p/254823#M96455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many Thanks Miguel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exactly what I wanted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haider&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 07:15:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-bookmarks/m-p/254823#M96455</guid>
      <dc:creator />
      <dc:date>2011-09-15T07:15:54Z</dc:date>
    </item>
  </channel>
</rss>

