<?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: Reload with batfile and macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638695#M595704</link>
    <description>&lt;P&gt;Try it in this way:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub&lt;/STRONG&gt; exportImages&lt;BR /&gt;' Test if export should be made&lt;BR /&gt;set v = ActiveDocument.Variables("RunNow")&lt;BR /&gt;if v.GetContent.String = "Yes" then&lt;BR /&gt;v.SetContent "No",true&lt;BR /&gt;&lt;STRONG&gt;call&lt;/STRONG&gt; exportAll&lt;BR /&gt;ActiveDocument.GetApplication.Quit&lt;BR /&gt;end if&lt;BR /&gt;end &lt;STRONG&gt;sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub&lt;/STRONG&gt; exportAll&lt;BR /&gt;&lt;STRONG&gt;call&lt;/STRONG&gt; export("CH01")&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#808080"&gt;ActiveDocument.GetApplication.Sleep 1000&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;call&lt;/STRONG&gt; export ("TX01")&lt;BR /&gt;&lt;STRONG&gt;end&lt;/STRONG&gt; sub&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub&lt;/STRONG&gt; export(chartId)&lt;BR /&gt;set obj = ActiveDocument.GetSheetObject(chartId)&lt;BR /&gt;&lt;FONT color="#808080"&gt;&lt;STRONG&gt;obj.restore&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#808080"&gt;&lt;STRONG&gt;ActiveDocument.GetApplication.WaitForIdle&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;obj.ExportBitmapToFile "C:\UTL\Chart_" &amp;amp; chartId &amp;amp; ".&lt;STRONG&gt;bmp&lt;/STRONG&gt;"&lt;BR /&gt;end &lt;STRONG&gt;sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The grey statements are optional - especially in larger export-routines they are necessary to ensure a stable workflow.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
    <pubDate>Wed, 23 Oct 2019 06:46:54 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2019-10-23T06:46:54Z</dc:date>
    <item>
      <title>Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638686#M595703</link>
      <description>&lt;P&gt;Hi , i have a macro that export images, when i run this in the qlikview with a button it works perfect.&lt;/P&gt;&lt;P&gt;When i run this with a batfile, it's reloading the qv but the last thing happend is that the macrowindows stays open and nothing more happens.&lt;/P&gt;&lt;P&gt;Batfile:&lt;BR /&gt;"C:\Program Files\QlikView\Qv.exe" /l /NoSecurity "C:\Qv\MXXX.qvw"&lt;BR /&gt;Macro:&lt;/P&gt;&lt;P&gt;function exportImages&lt;BR /&gt;' Test if export should be made&lt;BR /&gt;set v = ActiveDocument.Variables("RunNow")&lt;BR /&gt;if v.GetContent.String = "Yes" then&lt;BR /&gt;v.SetContent "No",true&lt;BR /&gt;exportAll&lt;BR /&gt;ActiveDocument.GetApplication.Quit&lt;BR /&gt;end if&lt;BR /&gt;end function&lt;/P&gt;&lt;P&gt;function exportAll&lt;BR /&gt;export("CH01")&lt;BR /&gt;export ("TX01")&lt;BR /&gt;end function&lt;/P&gt;&lt;P&gt;function export(chartId)&lt;BR /&gt;set obj = ActiveDocument.GetSheetObject(chartId)&lt;BR /&gt;obj.ExportBitmapToFile "C:\UTL\Chart_" &amp;amp; chartId &amp;amp; ".png"&lt;BR /&gt;end function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What can i do to get this working?&lt;/P&gt;&lt;P&gt;Br&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 05:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638686#M595703</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T05:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638695#M595704</link>
      <description>&lt;P&gt;Try it in this way:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub&lt;/STRONG&gt; exportImages&lt;BR /&gt;' Test if export should be made&lt;BR /&gt;set v = ActiveDocument.Variables("RunNow")&lt;BR /&gt;if v.GetContent.String = "Yes" then&lt;BR /&gt;v.SetContent "No",true&lt;BR /&gt;&lt;STRONG&gt;call&lt;/STRONG&gt; exportAll&lt;BR /&gt;ActiveDocument.GetApplication.Quit&lt;BR /&gt;end if&lt;BR /&gt;end &lt;STRONG&gt;sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub&lt;/STRONG&gt; exportAll&lt;BR /&gt;&lt;STRONG&gt;call&lt;/STRONG&gt; export("CH01")&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#808080"&gt;ActiveDocument.GetApplication.Sleep 1000&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;call&lt;/STRONG&gt; export ("TX01")&lt;BR /&gt;&lt;STRONG&gt;end&lt;/STRONG&gt; sub&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub&lt;/STRONG&gt; export(chartId)&lt;BR /&gt;set obj = ActiveDocument.GetSheetObject(chartId)&lt;BR /&gt;&lt;FONT color="#808080"&gt;&lt;STRONG&gt;obj.restore&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#808080"&gt;&lt;STRONG&gt;ActiveDocument.GetApplication.WaitForIdle&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;obj.ExportBitmapToFile "C:\UTL\Chart_" &amp;amp; chartId &amp;amp; ".&lt;STRONG&gt;bmp&lt;/STRONG&gt;"&lt;BR /&gt;end &lt;STRONG&gt;sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The grey statements are optional - especially in larger export-routines they are necessary to ensure a stable workflow.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 06:46:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638695#M595704</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-10-23T06:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638700#M595705</link>
      <description>&lt;P&gt;Okay, i will try.&amp;nbsp;&lt;/P&gt;&lt;P&gt;To call the macro is&amp;nbsp;&lt;SPAN&gt;exportAll?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 07:01:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638700#M595705</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T07:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638703#M595706</link>
      <description>&lt;P&gt;Yes, exportAll - the essential point is the switch from a function to a sub because a function couldn't be "called" and it expect a return-value. The &lt;STRONG&gt;call&lt;/STRONG&gt; itself is optional but it improved the readability.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 07:09:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638703#M595706</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-10-23T07:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638712#M595707</link>
      <description>&lt;P&gt;It's the same, it will open the macromodule at the end &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And it works when i open it manually and press the button&lt;/P&gt;&lt;P&gt;Something else that i missing?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 07:24:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638712#M595707</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T07:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638727#M595708</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Can you please share a screenshot of the macro module when it opens when you run it from the bat file, please?&lt;/P&gt;&lt;P&gt;Jaime.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 07:41:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638727#M595708</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2019-10-23T07:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638731#M595709</link>
      <description>&lt;P&gt;Yes, here you go!&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SkärmklipQV.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/22179iCC745465FFD836FD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SkärmklipQV.PNG" alt="SkärmklipQV.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 07:48:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638731#M595709</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T07:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638735#M595710</link>
      <description>&lt;P&gt;What do you mean with?&lt;/P&gt;&lt;P&gt;"... And it works when i open it manually and press the button ..."&lt;/P&gt;&lt;P&gt;Right click on the object and exporting it, executing it within the module-editor, from the UI per button/action, from the outside per EXECUTE or windows task, ...?&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 07:48:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638735#M595710</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-10-23T07:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638740#M595711</link>
      <description>&lt;P&gt;I have a button on the QV application. In that button i have call run Macro -&amp;gt; exportAll.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if i open the QV&amp;nbsp; manually and press that button it's work.&lt;/P&gt;&lt;P&gt;If i run the batfile, after the reload it's just open the Macrowindow and nothing happens.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 07:55:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638740#M595711</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T07:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638757#M595712</link>
      <description>&lt;P&gt;Quite weird, can not reproduce your problem.&lt;/P&gt;&lt;P&gt;Got to ask: have you configured a trigger "on open" as in the following image?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Settings.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/22181iEAE95C43A4255FF5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Settings.png" alt="Settings.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW, shouldm't you call "exportImages" instead of "exportAll"?&lt;/P&gt;&lt;P&gt;On the other hand, when the macro is run from the bat file, is it run with a user with writting permissions in "&lt;SPAN&gt;C:\UTL\"?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jaime.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 08:06:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638757#M595712</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2019-10-23T08:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638759#M595713</link>
      <description>&lt;P&gt;I try to open manually (without batfile) and reload and it's open the macrowindow here to.&lt;/P&gt;&lt;P&gt;Something wrong here?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Skärmklippqv2.PNG" style="width: 594px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/22182iD0501E1A7E80FF91/image-size/large?v=v2&amp;amp;px=999" role="button" title="Skärmklippqv2.PNG" alt="Skärmklippqv2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 08:07:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638759#M595713</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T08:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638768#M595714</link>
      <description>&lt;P&gt;The most practicable way to find the issue is usually to check the code partly, for example by commenting some routines or parts of them, adding some msgbox to show until when the routine runs and which values certain variables have and also setting some variables/parameter differently.&lt;/P&gt;&lt;P&gt;In your case I would set the UI variable to "No" and check and then adding msgbox's (with 1,2,3, ...) below/above the sub-statements to track when it breaks.&lt;/P&gt;&lt;P&gt;In your case I could imagine that the button is within the sheet of the charts - but if the application is saved within another sheet as active-sheet your routine might need an extra-statement to go to wanted sheet and activate it.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 08:15:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638768#M595714</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-10-23T08:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638784#M595715</link>
      <description>&lt;P&gt;Okay, can i mail the application?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 08:29:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638784#M595715</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T08:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638799#M595716</link>
      <description>&lt;P&gt;Marcus is right: you can force the problem by reloading your app so add breakpoints to your code (exit sub and msgbox) so you can check where exactly is the problem.&lt;/P&gt;&lt;P&gt;Let us know!&lt;/P&gt;&lt;P&gt;Jaime.&lt;/P&gt;&lt;P&gt;(can you share an example app that reproduces the problem?)&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 08:35:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638799#M595716</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2019-10-23T08:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638815#M595717</link>
      <description>&lt;P&gt;How are you triggering the macro from the batch&amp;nbsp; reload? A trigger? Which one?&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 08:44:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638815#M595717</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-10-23T08:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638826#M595718</link>
      <description>&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;Not in the batchfile at all.&lt;BR /&gt;The batfile contains:&lt;/P&gt;&lt;P&gt;"C:\Program Files\QlikView\Qv.exe" /l /NoSecurity "C:\Qv\Man2Bild.qvw"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then i have a trigger in qv-app that should run after script execution.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 08:55:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638826#M595718</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T08:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638835#M595719</link>
      <description>&lt;P&gt;Here you go!&lt;/P&gt;&lt;P&gt;I't seems to work manually, but with batfile itt just want to open macrowindow after reload&lt;/P&gt;&lt;P&gt;the batfile (can't attach)&lt;/P&gt;&lt;P&gt;"C:\Program Files\QlikView\Qv.exe" /l /NoSecurity "C:\Qv\emtpy.qvw"&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 09:23:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638835#M595719</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T09:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638855#M595720</link>
      <description>&lt;P&gt;Works perfectly (manually and from bat) in my PC and I have only changed the path where images are saved.&lt;/P&gt;&lt;P&gt;Let's see if Marcus or Rob figure it out! May be it is because the QV version, Operative System, environment (are you running the QV file and the bat file inlocal machine, in a server,...?)...&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jaime.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 09:48:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638855#M595720</guid>
      <dc:creator>jaibau1993</dc:creator>
      <dc:date>2019-10-23T09:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638873#M595721</link>
      <description>&lt;P&gt;Agree, worked without any issue per button and per external batch. Take a look in the document- and your user-properties in tab security if all settings are set properly.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 10:26:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638873#M595721</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-10-23T10:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Reload with batfile and macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638898#M595722</link>
      <description>&lt;P&gt;This is mine:&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Version QlikView 12.20&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 11:12:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-with-batfile-and-macro/m-p/1638898#M595722</guid>
      <dc:creator>johnan</dc:creator>
      <dc:date>2019-10-23T11:12:40Z</dc:date>
    </item>
  </channel>
</rss>

