<?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: Qlik Sense 3.2.1 Library issue/error using filelist mask in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249198#M2460</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this might work for that specific script. But you may face issues woth other load statements using parts of the filepath. So be careful and do sometesting. It will most likely not produce any error message but just does not the expected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mit freundlichen Grüssen / Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am 24.07.2017 1:04 nachm. schrieb Juraj Misina &amp;lt;qcwebmaster@qlikview.com&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Jul 2017 12:09:45 GMT</pubDate>
    <dc:creator>mg_gsi_da</dc:creator>
    <dc:date>2017-07-24T12:09:45Z</dc:date>
    <item>
      <title>Qlik Sense 3.2.1 Library issue/error using filelist mask</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249192#M2454</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;we recently installed Qlik Sense Server 3.2.1 and are actually testing the functionality of our Apps.&lt;/P&gt;&lt;P&gt;Today I expected a large issue with our applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As usual we are using Libs to load files from folders. For example a list of all files from a specific folder. We are doing that with a 'for each' loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;for each vFile in filelist ('[lib://Rohdaten (user_xyz)/SAP\Rohdaten\*qvd]')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you trace the variable &lt;EM&gt;vFile&lt;/EM&gt; you recently (3.1.4) got&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lib://Rohdaten (user_xyz) /SAP&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;\&lt;/STRONG&gt;&lt;/SPAN&gt;Rohdaten&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;\&lt;/STRONG&gt;&lt;/SPAN&gt;20170308_example.qvd&amp;nbsp; //take care of the backslash in red&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using 3.2.1 we now get&lt;/P&gt;&lt;P&gt;lib://Rohdaten (user_xyz) /SAP&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;/&lt;/STRONG&gt;&lt;/SPAN&gt;Rohdaten&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;/&lt;/STRONG&gt;&lt;/SPAN&gt;example.qvd&amp;nbsp; //the backslash turns into a slash&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This causes a lot of trouble to us since we use the backslash as separator in function subfield. i.e.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Load&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(date#(subfield(subfield('$(vFile)','\',-1),'_',1),'YYYYMMDD')) as Datum&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,subfield(subfield(subfield('$(vFile)','\',-1),'_',-1),'.',1) as Datei&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; AutoGenerate(1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used 'Standard' mode and 'Legacy' mode getting the same result. I also deleted the lib and recreated it. No success. The Apps still work well with 3.1.4 but fail in 3.2.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only solution was to not use the Lib but a concrete path. Of course only in Legacy mode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;for each vFile in filelist ('E:\Sense_Data\Rohdaten\SAP\Rohdaten\*qvd')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Trace then shows&lt;/P&gt;&lt;P&gt;E:\Sense_Data\Rohdaten\SAP\Rohdaten\20170308_example.qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a known issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 12:05:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249192#M2454</guid>
      <dc:creator>mg_gsi_da</dc:creator>
      <dc:date>2017-03-08T12:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense 3.2.1 Library issue/error using filelist mask</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249193#M2455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Meanwhile a support ticket has been issued&lt;/P&gt;&lt;P&gt;#01038051 - slash sign instead of backslash sign during the load process in the lib statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 06:18:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249193#M2455</guid>
      <dc:creator>mg_gsi_da</dc:creator>
      <dc:date>2017-03-13T06:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense 3.2.1 Library issue/error using filelist mask</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249194#M2456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael, did you hear from support on this? We are also planning to upgrade the environment to 3.2.1 and would be good to know if its a bug. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2017 14:41:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249194#M2456</guid>
      <dc:creator>jaisoni_trp</dc:creator>
      <dc:date>2017-03-21T14:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense 3.2.1 Library issue/error using filelist mask</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249195#M2457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this issue is still in discussion between Qlik Support and our Qlik Partner. If you login to Qlik Support you may look into the case# directly to track it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 06:19:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249195#M2457</guid>
      <dc:creator>mg_gsi_da</dc:creator>
      <dc:date>2017-03-22T06:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense 3.2.1 Library issue/error using filelist mask</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249196#M2458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Meanwhile we got a final response from Qlik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;&lt;SPAN class="feeditemtext cxfeeditemtext"&gt;&lt;EM&gt;"FileList and DirList has been changed with purpose, before returning the result they will modify paths that are not formated according to standards&lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN&gt;&lt;SPAN class="feeditemtext cxfeeditemtext"&gt;&lt;EM&gt;This works as designed, it is an intended change. The FileList command will make adjustments to paths that are not formated correctly (such as a mix of backslashes and frontslashes)"&lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure if they got the issue right. As to be seen in my initial post the mix of slashes is caused by the lib. The only required change would be to remove the leading frontslash at the beginning or change to backslah. But definitely not to modify all the windows standard backslash to frontslash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[lib://Rohdaten (user_xyz)&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;/&lt;/STRONG&gt;&lt;/SPAN&gt;SAP\Rohdaten\*qvd]'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it seems that all users need to accept to update all their apps. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/angry.png" /&gt;&lt;/P&gt;&lt;P&gt;I couldn't understand why they confuse the library in a way which is now different from windows standard. If it would be provided as an option (to be used in Linux) could be ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you simply use load functions you may not be impacted. Since we work with concrete paths strings and separators this is a nightmare.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 05:13:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249196#M2458</guid>
      <dc:creator>mg_gsi_da</dc:creator>
      <dc:date>2017-05-03T05:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense 3.2.1 Library issue/error using filelist mask</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249197#M2459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael,&lt;/P&gt;&lt;P&gt;I am interested in a workaround/solution you used to solve the issue. If I got this right, you only needed to replace the backslash sign to forward slash sign in the corresponding subfield function. Is that correct?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2017 11:03:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249197#M2459</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2017-07-24T11:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense 3.2.1 Library issue/error using filelist mask</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249198#M2460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this might work for that specific script. But you may face issues woth other load statements using parts of the filepath. So be careful and do sometesting. It will most likely not produce any error message but just does not the expected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mit freundlichen Grüssen / Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am 24.07.2017 1:04 nachm. schrieb Juraj Misina &amp;lt;qcwebmaster@qlikview.com&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2017 12:09:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-3-2-1-Library-issue-error-using-filelist-mask/m-p/1249198#M2460</guid>
      <dc:creator>mg_gsi_da</dc:creator>
      <dc:date>2017-07-24T12:09:45Z</dc:date>
    </item>
  </channel>
</rss>

