<?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: Governance Dashboard 2.0.2 (SR2) released today! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200787#M1251544</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tyler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to scan subfolders in governance dashboard.&lt;/P&gt;&lt;P&gt;I have all applicationd deployed in one main floder like D:\\Qvsource&lt;/P&gt;&lt;P&gt;and it contains sub folders like D:\\Qvsource\applications..&lt;/P&gt;&lt;P&gt;But it is not scanning all sub folders.&lt;/P&gt;&lt;P&gt;Kindly do the needful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Apr 2017 05:41:10 GMT</pubDate>
    <dc:creator>khalander</dc:creator>
    <dc:date>2017-04-21T05:41:10Z</dc:date>
    <item>
      <title>Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200780#M1251526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Hi all -&amp;nbsp; SR2 of Governance Dashboard (2.0.2) has been released to address several bugfixes.&amp;nbsp; Please consider updating to this version (just by configuring the Configuration page of the new app just as you have with prior versions. Enjoy!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/5002" target="_blank"&gt;QlikView Governance Dashboard 2.0.2 is now available&lt;/A&gt;&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/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200780#M1251526</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200781#M1251529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that one bug (GOVDASH-131) has been identified with Governance Dashboard 2.0.2 in which the reload fails unless you have something in the "Files/Folders to exclude". &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two options for a workaround:&lt;/P&gt;&lt;P&gt;1) Add something in the Files/Folders to Exclude parameter (like zzzz)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;2) Modify the load script by replacing the &lt;EM&gt;SUB filescan&lt;/EM&gt; section (tab) with the following: (&lt;STRONG&gt;UPDATED Dec 7, 2016&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;SUB fileScan&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; IF NoOfFilePaths &amp;gt; 0 then&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// Run &lt;SPAN class="code-keyword"&gt;this&lt;/SPAN&gt; only &lt;SPAN class="code-keyword"&gt;if&lt;/SPAN&gt; there are files &amp;amp; paths to scan&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; TRACE Generating list of files (qvw,qvd) to scan;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// Check &lt;SPAN class="code-keyword"&gt;if&lt;/SPAN&gt; any exclusions are set&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; If len('$(vInputFilesFoldersExclusion)') = 0 then&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; TRACE No file or folder exclusions were set in the Configuration.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; set NumExclusions = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ELSE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Let vInputFilesFoldersExclusion = trim(vInputFilesFoldersExclusion);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Let vFilesFoldersExclusionCleaned = &lt;SPAN class="code-keyword" style="color: #000091;"&gt;if&lt;/SPAN&gt;(right('$(vInputFilesFoldersExclusion)',1)='|',left('$(vInputFilesFoldersExclusion)',len('$(vInputFilesFoldersExclusion)')-1),'$(vInputFilesFoldersExclusion)');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Let vInputFilesFoldersExclusion = vFilesFoldersExclusionCleaned;&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// replace input &lt;SPAN class="code-keyword"&gt;for&lt;/SPAN&gt; exclusions with the cleaned up version&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; LET NumExclusions = SubStringCount('$(vFilesFoldersExclusionCleaned)','|')+1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; TRACE $(NumExclusions) exclusion strings found in user input: $(vInputFilesFoldersExclusion).;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; For i = 0 to $(NumExclusions)-1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; LET exclusion$(i) = lower(trim(subfield('$(vFilesFoldersExclusionCleaned)' ,'|',$(i)+1)));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Next i&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ENDIF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// Creating a table with all filepaths (folders + subfolders)&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; FilePaths:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Load %Path as %FilePath, RowNo() as %FilePathNumber&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Resident inputPaths where %Area = 'File';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; SUB fileSearch (root,n)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// Just looking &lt;SPAN class="code-keyword"&gt;for&lt;/SPAN&gt; qvws, qvds &lt;SPAN class="code-keyword"&gt;for&lt;/SPAN&gt; the file scan; QVX scan is not supported in GovDB 2.x&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; For Each Ext in 'qvw','qvd'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; FOR EACH File in filelist ('$(root)' &amp;amp; '\*.'&amp;amp;Ext)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; IF NumExclusions &amp;gt; 0 THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; set exclusionsFound = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; For x = 0 to $(NumExclusions)-1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; let exclusionsFound = exclusionsFound + SubStringCount(lower('$(File)'),'$(exclusion$(x))');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Next x&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; If exclusionsFound &amp;gt; 0 then&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; let msg = 'The file $(File) has been excluded from &lt;SPAN class="code-keyword" style="color: #000091;"&gt;this&lt;/SPAN&gt; scan due to user defined exclusion parameter.';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; TRACE $(msg);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ExcludedFiles:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Load '$(File)' as ExcludedFile, $(exclusionsFound) as ExclusionRulesFound Autogenerate 1;&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// Generate a table of excluded files&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; ELSE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; CALL fileList ('$(File)','File',Ext,$(n))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ENDIF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;//next x&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; ELSE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; CALL fileList ('$(File)','File',Ext,$(n))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ENDIF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; NEXT File&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; NEXT Ext&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; &lt;SPAN class="code-keyword" style="color: #000091;"&gt;for&lt;/SPAN&gt; each fldr in DirList('$(root)'&amp;amp;'\*')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; IF NumExclusions &amp;gt; 0 THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; set exclusionsFound = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; For x = 0 to $(NumExclusions)-1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; let exclusionsFound = exclusionsFound + SubStringCount(lower('$(fldr)'),'$(exclusion$(x))');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Next x&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; IF exclusionsFound &amp;gt; 0 then&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; let msg = 'The folder $(fldr) has been excluded from &lt;SPAN class="code-keyword" style="color: #000091;"&gt;this&lt;/SPAN&gt; scan due to user defined exclusion parameter.';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; TRACE $(msg);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ExcludedFiles:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Load '$(fldr)' as ExcludedFile, $(exclusionsFound) as ExclusionRulesFound Autogenerate 1;&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// Generate a table of excluded files&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; ELSE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Concatenate (FilePaths)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Load '$(fldr)' as %FilePath, RowNo() as %FilePathNumber autogenerate(1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; CALL fileSearch ('$(fldr)',$(n))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ENDIF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ELSE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Concatenate (FilePaths)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Load '$(fldr)' as %FilePath, RowNo() as %FilePathNumber autogenerate(1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;CALL fileSearch ('$(fldr)',$(n))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ENDIF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; next fldr&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ENDSUB&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// For each File folder to scan....&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; For j = 0 to $(NoOfFilePaths)-1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; CALL fileSearch ('$(vFilePath$(j))',$(j))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; Next j&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; drop table FilePaths;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; CALL qvwMetadata&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; CALL qvdMetadata&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; CALL TableLineage&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ELSE&amp;nbsp; &lt;SPAN class="code-comment" style="color: #808080;"&gt;// No Paths to scan&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp; TRACE No File paths to scan. Skipping.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ENDIF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;ENDSUB&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Dec 2016 00:15:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200781#M1251529</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2016-12-03T00:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200782#M1251533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks to me like the Max RAM usage on the Server Performance Summary sheet is actually showing average RAM usage rather than max. I believe this is a 2.0.2 bug.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 03:57:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200782#M1251533</guid>
      <dc:creator>jhomulos</dc:creator>
      <dc:date>2017-02-15T03:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200783#M1251537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you are correct. It is calculating avg() RAM instead of Max Ram. (Who made that app anyway?!)&lt;/P&gt;&lt;P&gt;I have filed the bug w/ R&amp;amp;D, GOVDASH-146.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 19:17:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200783#M1251537</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2017-02-16T19:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200784#M1251540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a quick addition that users/Qlik Server Admins might think is a useful visualisation. You can view all your tasks as a Gantt-Waterfall (start to finish time), especially (as in my case) to view the "free" times to allocate new tasks in these empty slots.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to do so, create a horizontal bar chart with:&lt;/P&gt;&lt;P&gt;Dim: TaskResult_Name&lt;/P&gt;&lt;P&gt;Expr: "MaxString(NUM(FinishedAt)) - MaxString(NUM(StartedAt))"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with offset "FRAC(MaxString(StartedAt))"&lt;/P&gt;&lt;P&gt;Sort by: Expr = "MaxString(StartedAt)".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2017 11:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200784#M1251540</guid>
      <dc:creator>cheenu_janakira</dc:creator>
      <dc:date>2017-02-28T11:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200785#M1251542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/227032"&gt;cheenu.janakiram&lt;/A&gt;‌ - Thanks for the tip - Can you post a screen shot image of what this looks like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2017 12:14:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200785#M1251542</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2017-02-28T12:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200786#M1251543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tyler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is a screendump of the Gantt-waterfall. It might need some space if one truly wants to look at the full picture of all reloads and there are many tasks. I'm sure there can be improvements on the visualisation itself (I had to cut/truncate the image in order not to share potentially confidential data, but it is the "Task Name" that is on the left-hand side). At least a start to be able to look at when tasks start and end and what is running concurrently as well as when the slots are to be able to squeeze in other reload tasks across that server/machine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps. Cheerio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheenu&lt;IMG alt="TasksGantt.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/154734_TasksGantt.PNG" style="height: 565px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2017 13:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200786#M1251543</guid>
      <dc:creator>cheenu_janakira</dc:creator>
      <dc:date>2017-02-28T13:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200787#M1251544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tyler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to scan subfolders in governance dashboard.&lt;/P&gt;&lt;P&gt;I have all applicationd deployed in one main floder like D:\\Qvsource&lt;/P&gt;&lt;P&gt;and it contains sub folders like D:\\Qvsource\applications..&lt;/P&gt;&lt;P&gt;But it is not scanning all sub folders.&lt;/P&gt;&lt;P&gt;Kindly do the needful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2017 05:41:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200787#M1251544</guid>
      <dc:creator>khalander</dc:creator>
      <dc:date>2017-04-21T05:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200788#M1251545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I am sorry. This is a known bug with 2.0.2. See &lt;A _jive_internal="true" href="https://community.qlik.com/message/1246814#1246814"&gt;https://community.qlik.com/message/1246814#1246814&lt;/A&gt; to get a 2.0.3 early release app.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2017 11:26:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200788#M1251545</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2017-04-26T11:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200789#M1251546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tyler&lt;/P&gt;&lt;P&gt;I would like to know if there is any way to add a new input box object in the configuration section. I need to load xls extension files and contain them in a QVD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2017 16:31:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200789#M1251546</guid>
      <dc:creator />
      <dc:date>2017-06-06T16:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Governance Dashboard 2.0.2 (SR2) released today!</title>
      <link>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200790#M1251547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi @joalevia - I'm not sure what you are hoping to accomplish by this. The Governance Dashboard does not load .xls.&lt;/P&gt;&lt;P&gt;Are you modifying the load script to load .xls files in some way?&lt;/P&gt;&lt;P&gt;If so, then, yes, go ahead and add an input box, create a new variable (or use an existing one) for it, and enjoy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2017 17:35:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Governance-Dashboard-2-0-2-SR2-released-today/m-p/1200790#M1251547</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2017-06-06T17:35:34Z</dc:date>
    </item>
  </channel>
</rss>

