<?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: File based EDX reload trigger in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949439#M1255383</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I might come back with a more complete explanation tomorrow - getting quite late for me now and I need some sleep...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 10 Oct 2015 22:36:51 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2015-10-10T22:36:51Z</dc:date>
    <item>
      <title>File based EDX reload trigger</title>
      <link>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949436#M1255367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;I am trying to schedule a series of qvws in QMC (have Publisher license) based on the presence and/or update date of a particular file on the server (sent by an external ETL process).&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;I was wondering if anyone has defined a file based EDX reload trigger in the past and had sample code they could share?&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;I've gone through these posts:&lt;A href="https://community.qlik.com/docs/DOC-2650" target="_blank"&gt;Using EDX in QlikView 11&lt;/A&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;&lt;A href="https://qlikviewtips.wordpress.com/2011/10/10/edx-in-qlikview-what-are-what-for-and-how-it-does/" title="https://qlikviewtips.wordpress.com/2011/10/10/edx-in-qlikview-what-are-what-for-and-how-it-does/" target="_blank"&gt;EDX in QlikView: What are, what for and how it does ? | QlikView Help, Tips &amp;amp; Hints&lt;/A&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;but being relatively new to EDX wanted to see if anyone has an easy to follow example for setting up a reload based on a file event.&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Tahoma; font-size: 13.3333px;"&gt;Any inputs are greatly appreciated, thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949436#M1255367</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: File based EDX reload trigger</title>
      <link>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949437#M1255372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please follow step by step process on the blog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please post if you have issues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 23:22:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949437#M1255372</guid>
      <dc:creator />
      <dc:date>2015-10-09T23:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: File based EDX reload trigger</title>
      <link>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949438#M1255376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not a complete solution but might give you a hint about how you can use PowerShell to use the .NET System.IO.FileSystemWatcher:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to enable the account running this to execute PowerShell scripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="php" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14445164907493865" jivemacro_uid="_14445164907493865"&gt;
&lt;P&gt;$Watcher = New-Object System.IO.FileSystemWatcher&lt;/P&gt;
&lt;P&gt;$Watcher.Path = "D:\EDX_Files"&lt;/P&gt;
&lt;P&gt;$Watcher.Filter = "dothis.txt"&lt;/P&gt;
&lt;P&gt;$Watcher.NotifyFilter = [IO.NotifyFilters]"FileName"&lt;/P&gt;
&lt;P&gt;$Watcher.IncludeSubdirectories = $False&lt;/P&gt;
&lt;P&gt;$SomeAction = { QMSEDX.exe .........; ri dothis.txt&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;Register-ObjectEvent -InputObject $Watcher -EventName "Created" -Action $SomeAction&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Oct 2015 22:34:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949438#M1255376</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-10T22:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: File based EDX reload trigger</title>
      <link>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949439#M1255383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I might come back with a more complete explanation tomorrow - getting quite late for me now and I need some sleep...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Oct 2015 22:36:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/File-based-EDX-reload-trigger/m-p/949439#M1255383</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-10T22:36:51Z</dc:date>
    </item>
  </channel>
</rss>

