<?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: connection with sharepoint/share drive- appending the data on addition of new file. in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1775985#M60153</link>
    <description>&lt;P&gt;Sure. Which flavour of Sense are you using? Enterprise, SaaS or Desktop?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Jan 2021 12:36:33 GMT</pubDate>
    <dc:creator>stevedark</dc:creator>
    <dc:date>2021-01-20T12:36:33Z</dc:date>
    <item>
      <title>connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1772640#M59814</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;once the connection is established with share point and share drive . Can a script be written to schedule to append the data when new file is added in the share drive /share point .&lt;/P&gt;&lt;P&gt;So basically the upload should happen automatically when there is new file in share drive or share point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2021 17:50:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1772640#M59814</guid>
      <dc:creator>meenakshi_m</dc:creator>
      <dc:date>2021-01-07T17:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1772800#M59825</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/132035"&gt;@meenakshi_m&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You would need to have a process that frequently polls for new data and then appends that to a QVD if found. Out of the box you would need to reload the incrementally loaded QVD after every check - whether it changed or not. This is not ideal.&lt;/P&gt;&lt;P&gt;It should be possible to trigger a load only if new data are found - but this is a chunk of work and is not supported natively by Sense.&lt;/P&gt;&lt;P&gt;A kludgy way of doing it would be to have the incremental part of the load fail if no new data are found and then only have the front end load happen on successful reload of the QVD generator.&lt;/P&gt;&lt;P&gt;This post may give you some further ideas:&lt;BR /&gt;&lt;A href="https://www.quickintelligence.co.uk/convert-drop-folder-files-qvd/" target="_blank"&gt;https://www.quickintelligence.co.uk/convert-drop-folder-files-qvd/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 11:13:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1772800#M59825</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2021-01-08T11:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1773090#M59846</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;Thanks for the solution this worked. But facing issue with Date format on the converted QVD files while evaluating some filters on past data&lt;/P&gt;&lt;P&gt;Have tried date format but is not helping .can you please show where to exactly include the date format in you incremental code.&lt;/P&gt;&lt;P&gt;Appreciate your help!Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jan 2021 20:10:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1773090#M59846</guid>
      <dc:creator>meenakshi_m</dc:creator>
      <dc:date>2021-01-09T20:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1773142#M59852</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/132035"&gt;@meenakshi_m&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that a date field within the file you are loading or the date of the files you are loading?&lt;/P&gt;&lt;P&gt;What file format is it that you are loading from SharePoint?&lt;/P&gt;&lt;P&gt;How does the date look in a Filter Pane if you don't do anything to it when you load?&lt;/P&gt;&lt;P&gt;If it looks like a date, but sorts incorrectly and messes up when you try and break it down you probably need to do a&amp;nbsp;&lt;STRONG&gt;date#&amp;nbsp;&lt;/STRONG&gt; on it to convert it to a numeric, and then a&amp;nbsp;&lt;STRONG&gt;date&lt;/STRONG&gt; function to format it. This should happen in the load;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DateField as RawDate,&lt;BR /&gt;Date(Date#(DateFIeld, 'YYYYMMDD', 'DD MMM YYYY') as Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You can then do a &lt;A href="https://www.quickintelligence.co.uk/preceding-load-qlikview/" target="_self"&gt;preceding load&lt;/A&gt; on this to put that date into Months and Year etc.&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Sun, 10 Jan 2021 12:04:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1773142#M59852</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2021-01-10T12:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1774128#M59948</link>
      <description>&lt;P&gt;hi Steve,&lt;/P&gt;&lt;P&gt;Thanks this has helped.all these works fine when connecting to shared drive.&lt;/P&gt;&lt;P&gt;But how do I set the same code to work on share point.&lt;/P&gt;&lt;P&gt;Could you please help if there is any need change in code which need to be done while connecting to share point.&lt;/P&gt;&lt;P&gt;appreciate your help.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 16:33:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1774128#M59948</guid>
      <dc:creator>meenakshi_m</dc:creator>
      <dc:date>2021-01-13T16:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1774544#M60001</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/132035"&gt;@meenakshi_m&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Loading from SharePoint is a different topic, and how you go about it depends on what version of Qlik you are using, whether it is Sense on Prem, Sense SaaS or QlikView.&lt;/P&gt;&lt;P&gt;You will probably want to be using a connector which will download a list of files on the SharePoint server into a table. This will take the place of&amp;nbsp;&lt;STRONG&gt;for each vFile in FileList&lt;/STRONG&gt;. To enumerate around a table you need to do&amp;nbsp;&lt;STRONG&gt;for iFile = 0 to NoOfRows('TableName') -1&lt;/STRONG&gt; and then use the&amp;nbsp;&lt;STRONG&gt;PEEK&amp;nbsp;&lt;/STRONG&gt;function to get all of the values from the table.&lt;/P&gt;&lt;P&gt;For a time it was not possible to load the files directly from SharePoint, but I believe it now is. I've been involved in some threads on this in Community, but I can't seem to find any now. Suggest searching the forums to see if someone has a solution.&lt;/P&gt;&lt;P&gt;Connecting with other cloud file sharing services is not a problem. I've blogged on this here:&lt;BR /&gt;&lt;A href="https://www.quickintelligence.co.uk/cloud-file-services-qlik-sense/" target="_blank"&gt;https://www.quickintelligence.co.uk/cloud-file-services-qlik-sense/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope you can get the SharePoint connection working.&lt;/P&gt;&lt;P&gt;Cheers,&lt;BR /&gt;Steve&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 19:38:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1774544#M60001</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2021-01-14T19:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1775925#M60149</link>
      <description>&lt;P&gt;Hi Steve&lt;/P&gt;&lt;P&gt;Appreciate your respond on same.Have been trying to find but did not get any satisfactory solution .So the requirement is there are files uploaded in share point 2016 during different days of month .And these files should be updated in my Qlik sense app.&lt;/P&gt;&lt;P&gt;what connector is required to download the list of files on the share point server into a table. How and Where this is done.Could you please provide more details with steps required. Thank you&lt;/P&gt;&lt;P&gt;Meenakshi Mantri&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 09:21:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1775925#M60149</guid>
      <dc:creator>meenakshi_m</dc:creator>
      <dc:date>2021-01-20T09:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1775985#M60153</link>
      <description>&lt;P&gt;Sure. Which flavour of Sense are you using? Enterprise, SaaS or Desktop?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 12:36:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1775985#M60153</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2021-01-20T12:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1776251#M60177</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;Thanks for your help.This is Enterprise Version.&lt;/P&gt;&lt;P&gt;I am to connect to share point and retrieve 1 XLSX file .I&amp;nbsp; understand that I need to get the list of files present in share point and then create a loop. But I am not aware on how to get the list of files from share point dynamically.(list should be updated when new file is added)&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 10:19:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1776251#M60177</guid>
      <dc:creator>meenakshi_m</dc:creator>
      <dc:date>2021-01-21T10:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1777237#M60287</link>
      <description>&lt;P&gt;Hello Steve dark,&lt;/P&gt;&lt;P&gt;Any luck please.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 18:14:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1777237#M60287</guid>
      <dc:creator>meenakshi_m</dc:creator>
      <dc:date>2021-01-25T18:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: connection with sharepoint/share drive- appending the data on addition of new file.</title>
      <link>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1777339#M60305</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/132035"&gt;@meenakshi_m&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to have Qlik Web Connectors installed, either on the Enterprise Sense server or another in the same domain (there is more config if you go for another machine).&lt;/P&gt;&lt;P&gt;Notes on QWC can be found here:&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/Connectors_QWC/Setup-deploy/Qlik_Web_Connectors_package.htm" target="_blank"&gt;https://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/Connectors_QWC/Setup-deploy/Qlik_Web_Connectors_package.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And the latest download can be found in the Downloads part of qlik.com, or the current one (as of now) is:&lt;BR /&gt;&lt;A href="https://da3hntz84uekx.cloudfront.net/WebConnectors/2.98.1/0/_MSI/QlikWebConnectorsDecember2020.zip" target="_blank"&gt;https://da3hntz84uekx.cloudfront.net/WebConnectors/2.98.1/0/_MSI/QlikWebConnectorsDecember2020.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You need to follow the installation instructions carefully. Two easily missed gotchas are ensuring you unblock the zip file and that you run the service installation batch file using "run as Administrator".&lt;/P&gt;&lt;P&gt;Go to &lt;A href="https://servername:5555/" target="_blank"&gt;https://servername:5555/ &lt;/A&gt;to get to the QWC web interface. You will need to accept the licence agreements and go to the Licence section and enter your Qlik Sense Enterprise licence details. Note that this requires that this doesn't work with the old token based licences and you may need to get your licence converted to do this bit.&lt;/P&gt;&lt;P&gt;Find the Office 365 Sharepoint connector under the premium connectors.&lt;/P&gt;&lt;P&gt;Here you have a number of different ways of connecting. First you need to authenticate with your SharePoint site though.&lt;/P&gt;&lt;P&gt;Once that is done you should be able to use ListFolders, ListFiles and GetFile to retrieve files from the server. Do this manually at first, entering all of the required parameters into the web form.&lt;/P&gt;&lt;P&gt;Once you have this working you can go to the&amp;nbsp;&lt;STRONG&gt;Qlik Sense (Standard Mode)&lt;/STRONG&gt; to get the code to run, there are important instructions on this sheet on how to set this up.&lt;/P&gt;&lt;P&gt;You will need to do a List Files into a table and then enumerate around it to get each of the IDs to pass into the Get File function. The loop will be something like:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for iFile = 0 to NoOfRows('FileList') -1&lt;BR /&gt;&amp;nbsp; &amp;nbsp;sFileID = peek('FileID', iFile, 'FileList');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp;// Get file&lt;BR /&gt;next&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For more info you might want to read:&lt;BR /&gt;&lt;A href="https://www.quickintelligence.co.uk/cloud-file-services-qlik-sense/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.quickintelligence.co.uk/cloud-file-services-qlik-sense/&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.quickintelligence.co.uk/convert-drop-folder-files-qvd/" target="_blank"&gt;https://www.quickintelligence.co.uk/convert-drop-folder-files-qvd/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 08:08:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/connection-with-sharepoint-share-drive-appending-the-data-on/m-p/1777339#M60305</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2021-01-26T08:08:28Z</dc:date>
    </item>
  </channel>
</rss>

