<?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: How to Fetch a Sharepoint 2013 List using REST interface in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521009#M194657</link>
    <description>&lt;P&gt;Up&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jun 2019 15:21:32 GMT</pubDate>
    <dc:creator>Qvmaster2019</dc:creator>
    <dc:date>2019-06-20T15:21:32Z</dc:date>
    <item>
      <title>How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521005#M194653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In earlier versions of SharePoint most of the Qlikview developers used&amp;nbsp; Windows SharePoint Services Remote Procedure Call (RPC) methods to fetch data from a share point list.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: Verdana; color: #2a2a2a; font-weight: normal; font-style: normal;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff; font-size: 13px; font-style: normal; font-family: Verdana; font-weight: normal;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/"&gt;http://&lt;/A&gt;&lt;EM&gt;Server_Name&lt;/EM&gt;/[sites/][&lt;EM&gt;Site_Name&lt;/EM&gt;/]_vti_bin/owssvr.dll?Cmd=Display&amp;amp;List=&lt;EM&gt;GUID&lt;/EM&gt;&amp;amp;XMLDATA=TRUE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff; font-size: 13px; font-style: normal; font-family: Verdana; font-weight: normal;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px; font-style: normal; font-family: Verdana; font-weight: normal;"&gt;This method of extraction always required a GUID to fetch a list or a specific view. This posed difficulties in automating some of the extraction tasks. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: Verdana; color: #2a2a2a; font-weight: normal; font-style: normal;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: Verdana; color: #2a2a2a; font-weight: normal; font-style: normal;"&gt;With the launch of Sharepoint 2013 Microsoft provided REST(Representational State Transfer) interface which is a data service that allows you to use construct HTTP requests to query SharePoint list data. &lt;SPAN style="text-decoration: underline;"&gt;&lt;EM&gt;The main advantage here is that &lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: Verdana; color: #2a2a2a; font-weight: normal; font-style: normal;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;EM&gt;WCF Data Services uses the OData protocol for fetching the data.&lt;/EM&gt; &lt;/SPAN&gt; The data is returned using a well known XML format called ATOM. As a Qlikview developer you don't have to learn entire technical aspects of this new feature. All you have to do is to understand some of the very useful methods.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2a2a2a; font-style: normal; font-size: 13px; font-family: Verdana; font-weight: normal;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2a2a2a; font-style: normal; font-size: 13px; font-family: Verdana; font-weight: normal;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2a2a2a; font-style: normal; font-size: 13px; font-family: Verdana; font-weight: normal;"&gt;Some of the main advantages are given below.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2a2a2a; font-style: normal; font-size: 13px; font-family: Verdana; font-weight: normal;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2a2a2a; font-style: normal; font-size: 13px; font-family: Verdana; font-weight: normal;"&gt;1.&amp;nbsp; GUID is no longer required to fetch a list. Now we can fetch a list by the Title&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Use the following format&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;A class="jive-link-external-small" href="http://server/site/_api/web/lists/getbytitle(‘Title’)/Items"&gt;http://server/site/_api/web/lists/getbytitle(‘Title’)/Items&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2&lt;SPAN style="color: #000000;"&gt;. We can fetch meta data about the list.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2989c5;"&gt;&lt;A class="jive-link-external-small" href="http://server/site/_api/web/lists/getbytitle(‘Title’"&gt;http://server/site/_api/web/lists/getbytitle(‘Title’&lt;/A&gt;)&amp;nbsp; &lt;SPAN style="color: #000000;"&gt;will provide a XML with Metadata about list&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;For example &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;[content/properties/ItemCount]&amp;nbsp; will provide you the number of records in the list&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;3. OData protocol have much more powerful methods and Going forward ,Microsoft is positioning it as a preferred method of interaction.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Following are some of the available options&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE style="border: 1px solid #bbbbbb; color: #000000; font-family: 'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif; font-size: 13px; font-style: normal; font-weight: normal; text-align: start; text-indent: 0px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; background-color: #ededed; color: #636363; text-align: left;"&gt;Option&lt;/TH&gt;&lt;TH style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; background-color: #ededed; color: #636363; text-align: left;"&gt;Description&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/gg309461.aspx#BKMK_expand" style="color: #03697a;"&gt;$expand&lt;/A&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;Directs that related records should be retrieved in the record or collection being retrieved.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/gg309461.aspx#BKMK_filter" style="color: #03697a;"&gt;$filter&lt;/A&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;Specifies an expression or function that must evaluate to ‘true’ for a record to be returned in the collection.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/gg309461.aspx#BKMK_orderby" style="color: #03697a;"&gt;$orderby&lt;/A&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;Determines what values are used to order a collection of records.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/gg309461.aspx#BKMK_select" style="color: #03697a;"&gt;$select&lt;/A&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;Specifies a sub set of properties to return.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/gg309461.aspx#BKMK_skip" style="color: #03697a;"&gt;$skip&lt;/A&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;Sets the number of records to skip before it retrieves records in a collection.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/gg309461.aspx#BKMK_top" style="color: #03697a;"&gt;$top&lt;/A&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 1px solid #bbbbbb; margin: 10px; padding: 10px 8px; color: #2a2a2a;"&gt;&lt;P style="color: #2a2a2a;"&gt;Determines the maximum number of records to return.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;H2&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/H2&gt;&lt;H2&gt;&lt;SPAN style="color: #000000;"&gt;Sample Script for Fetching data from Sharepoint 2013 List using ODate protocol&lt;/SPAN&gt;&lt;/H2&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;//Get number of Records from the list&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ListCount:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num([content/properties/ItemCount]) as ItemCount&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp; [&lt;SPAN style="color: #2989c5;"&gt;&lt;A class="jive-link-external-small" href="http://server/site/_api/web/lists/getbytitle(‘Title’"&gt;http://server/site/_api/web/lists/getbytitle(‘Title’&lt;/A&gt;) &lt;/SPAN&gt;] (XmlSimple, Table is [entry]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//fetch the Row count&lt;/P&gt;&lt;P&gt;Let vListCount=&amp;nbsp; Peek('ItemCount',0,'ListCount')&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Get List&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; text-decoration: underline;"&gt;//Please remember to use top method. If the top method with number of total rows is omitted the fetch might not return all the&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; text-decoration: underline;"&gt;//records in the share point list&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; text-decoration: underline;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;List:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/ID] as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/Title] as Title,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/Modified] as Modified,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/Created] as Created&lt;/P&gt;&lt;P&gt;FROM [&lt;SPAN style="color: #2989c5;"&gt;&lt;A class="jive-link-external-small" href="http://server/site/_api/web/lists/getbytitle(‘Title’"&gt;http://server/site/_api/web/lists/getbytitle(‘Title’&lt;/A&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #3366ff;"&gt;/Items?&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;$Top=$(vListCount)&lt;/SPAN&gt;] (XmlSimple, Table is [feed/entry]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"I tried to create this as a blog ,but apparently couldn't publish it to a place where every one can access. Sorry for posting it in multiple places. "&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #999999;"&gt;Hope this will help you in your quest for the next Qlikview solution. This method enabled us to automate fetching of lists with the same name from different share-point sites. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #999999;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #999999;"&gt;Wishing you all the best of up coming holiday season from your friends in Michigan&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #999999;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: auto; margin-bottom: auto;"&gt;&lt;SPAN style="color: #00ff00; font-size: 10.0pt; font-family: 'Times New Roman','serif';"&gt;Pauljin Kochupyloth&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Sr. BI Consultant&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: auto; margin-bottom: auto;"&gt;&lt;SPAN style="color: #00ff00;"&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Times New Roman','serif';"&gt;WIT Inc :"HARNESS THE POWER OF BI"&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="font-size: 12pt; font-family: 'Times New Roman','serif';"&gt;&lt;A href="http://www.witinc.com/"&gt;&lt;SPAN style="color: #00ff00;"&gt;http://www.witinc.com/&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2013 20:52:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521005#M194653</guid>
      <dc:creator />
      <dc:date>2013-11-13T20:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521006#M194654</link>
      <description>&lt;P&gt;I&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:04:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521006#M194654</guid>
      <dc:creator>Qvmaster2019</dc:creator>
      <dc:date>2019-06-20T15:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521007#M194655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried your method above with no luck.&amp;nbsp; Using sharepoint 2013 and QV 11 SR5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;server is uf.hide.com&lt;/P&gt;&lt;P&gt;site = prod&lt;/P&gt;&lt;P&gt;list&amp;nbsp; name = ProductionTanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this the right code:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;FROM&amp;nbsp; [&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #2989c5;"&gt;&lt;A class="jive-link-external-small" href="http://server/site/_api/web/lists/getbytitle(%E2%80%98Title%E2%80%99" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7; text-decoration: underline;"&gt;http://uf.hide.com/prod/_api/web/lists/getbytitle(‘ProductionTanks’&lt;/A&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;] (XmlSimple, Table is [entry]);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can get unknown MSXML errro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 19:11:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521007#M194655</guid>
      <dc:creator />
      <dc:date>2014-02-12T19:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521008#M194656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I encountered the same error when I was deploying my application to server. So the following might fix the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This error message is usually found where there is security access issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.. Check whether the ID by which you are executing the qlikview publisher has proper sharepoint access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Log into the server with the user id and password . Launch the sharepoint server . If you are asked to enter user name and password chances are that Qlikview is not getting the user authentication info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If your id has access , you need to do one more configuration in Internet explorer in the server. Apparently microsoft is storing this setting as part of internet explorer security settings.&lt;/P&gt;&lt;P&gt;Go to internet explorer &amp;gt; internet options&amp;gt; Security .&lt;/P&gt;&lt;P&gt;Click on trusted sites and add the sharepoint site into list of custom sites .&lt;/P&gt;&lt;P&gt;Then click on the 'Custom level' button under security level&amp;nbsp; area.&lt;/P&gt;&lt;P&gt;This will open up a list of options . Scroll all the way do and find option&lt;/P&gt;&lt;P&gt;'User authentication'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Logon'&lt;/P&gt;&lt;P&gt;By default it will be selected to 'Automatic logon only in intranet zone' change it to&lt;/P&gt;&lt;P&gt;'Automatic logon with current usename and password'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I have done to get things working. Ironically this falls in between admin and developer and sometimes none of us know what is going on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have to do it every server using the ID. For example if you move the app to prod , you have to do it there too. I guess you get the idea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it out and let me know whether it helped you..&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/53059_Capture.PNG.png" style="width: 620px; height: 383px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 20:12:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521008#M194656</guid>
      <dc:creator />
      <dc:date>2014-02-12T20:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521009#M194657</link>
      <description>&lt;P&gt;Up&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:21:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521009#M194657</guid>
      <dc:creator>Qvmaster2019</dc:creator>
      <dc:date>2019-06-20T15:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521010#M194658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Our sharepoint is not hosted on the server. You might be right about the cloud hosting. There might be something which is prohibiting qlikview user from reaching the sharepoint.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 15:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521010#M194658</guid>
      <dc:creator />
      <dc:date>2014-02-13T15:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521011#M194659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi pauljin&lt;/P&gt;&lt;P&gt;Thank you for the information.&amp;nbsp; I found something similar to this and it also worked.&amp;nbsp; Instead of trusted sites, we go to Local Intranet, then Advanced Settings, then add the SP site to trusted site and had to check the box for secure HTML..&amp;nbsp; and it worked!&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 17:06:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521011#M194659</guid>
      <dc:creator />
      <dc:date>2014-02-14T17:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521012#M194660</link>
      <description>&lt;P&gt;Up&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:22:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521012#M194660</guid>
      <dc:creator>Qvmaster2019</dc:creator>
      <dc:date>2019-06-20T15:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521013#M194661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QMC only.&amp;nbsp; works fine from desktop.&amp;nbsp; but all is working fine now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Feb 2014 18:37:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521013#M194661</guid>
      <dc:creator />
      <dc:date>2014-02-16T18:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521014#M194662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi pauljin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for sharing this information. It works fine for me as long as I only use the fields ID, title, modified and created. As soon as I try to read details from fields like description with multiple lines I get no values. How can I read from fields with blank in the field description like 'Assignd to' and how can I extract date from the field 'Created by' or 'Modified by'? Thank you in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harald Martini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 07:42:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521014#M194662</guid>
      <dc:creator />
      <dc:date>2014-04-17T07:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521015#M194663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harald,&lt;/P&gt;&lt;P&gt;The internal names of the files are different from the description by which they are shown.&lt;/P&gt;&lt;P&gt;You can access the entire list of fields by following query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="color: #2989c5;"&gt;&lt;A class="jive-link-external-small" href="http://server/site/_api/web/lists/getbytitle%28%E2%80%98Title%E2%80%99"&gt;http://server/site/_api/web/lists/getbytitle(‘Title’&lt;/A&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #3366ff;"&gt;/fields &lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;Sometimes the sharepoint won't give you the fields that you want by default. For example if you need EncodedAbsUrl&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;you have to specifically ask for in the query as follows.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;SPAN style="color: #2989c5;"&gt;&lt;A class="jive-link-external-small" href="http://server/site/_api/web/lists/getbytitle%28%E2%80%98Title%E2%80%99"&gt;&lt;SPAN&gt;http://server/site/_&lt;SPAN&gt;api&lt;/SPAN&gt;/web/lists/&lt;SPAN&gt;getbytitle&lt;/SPAN&gt;(‘Title’&lt;/SPAN&gt;&lt;/A&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #3366ff;"&gt;/Items?$select=&lt;SPAN style="color: #3366ff;"&gt;&lt;SPAN&gt;EncodedAbsUrl,* &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;SPAN&gt;Read about rest service in Sharepoint 2013. It will provide a lot of info. Qlilkview is just making use of the rest by pulling a xml .&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2014 13:38:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521015#M194663</guid>
      <dc:creator />
      <dc:date>2014-04-18T13:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521016#M194664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pauljin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I figured out how to do it and now it works fine for me. The only thing is, that there seems no possibility to select fields from the dialogue box. I have to delete the unwanted fields in the query manually. Thanks for your support.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 06:48:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521016#M194664</guid>
      <dc:creator />
      <dc:date>2014-04-28T06:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521017#M194665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 14px;"&gt;Debbie&lt;/SPAN&gt; , you succeed to load data from QVdesktop? How did you know the '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;list&amp;nbsp; name&lt;/SPAN&gt;'? and where should I change in the standard link ,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM [&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #2989c5;"&gt;&lt;A class="jive-link-external-small" href="http://server/site/_api/web/lists/getbytitle(%E2%80%98Title%E2%80%99" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://server/site/_api/web/lists/getbytitle(‘Title’&lt;/A&gt;)&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3366ff;"&gt;/Items?&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;$Top=$(vListCount)&lt;/SPAN&gt;] (XmlSimple, Table is [feed/entry]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 05:49:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521017#M194665</guid>
      <dc:creator />
      <dc:date>2014-06-12T05:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521018#M194666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please also enable active scripting option . &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 11:51:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521018#M194666</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2014-09-22T11:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521019#M194667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using the REST service successfully but have run in to a bit of a snag.&amp;nbsp; I can get all the data from the primary list without issue.&amp;nbsp; But when I try to select a data type "nested" data, that data is not returned.&amp;nbsp; I do not get an error, but the field is simply blank.&amp;nbsp; Below is a sample dealing specifically with a field called AssignedTo which is a person reference field.&amp;nbsp; The bolded field (AssignedTo/Title) is coming back blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CorrectiveActions:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/ID] as [%%Key_CorrectiveActionId],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/Solution] as Solution,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/Problem] as Problem,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/Resolved] as Resolved,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [content/properties/LPA_QuestionId] as [%%Key_LPA_QuestionId],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;[content/properties/AssignedTo/Title] as [CorrectiveActionAssignee]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;FROM [&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://[MYSHAREPOINTLOCATION]/_api/web/lists/getbytitle('Corrective%20Actions')/items?$top=10000&amp;amp;$select=Id,Solution,LPA_QuestionId,Problem,Resolved,AssignedTo/Title&amp;amp;$expand=AssignedTo" rel="nofollow"&gt;http://[MYSHAREPOINTLOCATION]/_api/web/lists/getbytitle('Corrective%20Actions')/items?$top=10000&amp;amp;$select=Id,Solution,LPA_QuestionId,Problem,Resolved,AssignedTo/Title&amp;amp;$expand=AssignedTo&lt;/A&gt;&lt;SPAN&gt;] (XmlSimple, Table is [feed/entry]);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This query returns everything I want (Solution, Problem, Resolved, etc.) But the &lt;STRONG&gt;CorrectiveActionAssignee&lt;/STRONG&gt; field is coming back blank.&amp;nbsp; If I take the http query and paste it into my browser, all the data is coming back as expected including the person reference with Title (name).&amp;nbsp; Do you have any idea why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried [content/properties/AssignedTo/properties/Title] and that doesn't work either. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 11:37:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521019#M194667</guid>
      <dc:creator />
      <dc:date>2015-03-09T11:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521020#M194668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm facing exactly the same problem. I can access to all the data exept the one in expand. Returns blank as you explained. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know how to solve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards CHUNG Fabien&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2015 13:20:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521020#M194668</guid>
      <dc:creator />
      <dc:date>2015-04-30T13:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521021#M194669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How should I treat access denied error?&lt;/P&gt;&lt;P&gt;I'm trying to get data from o365/SP and this error appears:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="line" style="color: #000000; font-family: monospace; font-size: 13px; font-style: normal; font-weight: normal; text-align: start; text-indent: 0px;"&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;m:error&lt;SPAN class="html-attribute"&gt;&lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;SPAN class="html-attribute-name"&gt;xmlns:m&lt;/SPAN&gt;="&lt;SPAN class="html-attribute-value"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" rel="nofollow"&gt;http://schemas.microsoft.com/ado/2007/08/dataservices/metadata&lt;/A&gt;&lt;/SPAN&gt;"&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="line"&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;m:code&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="text"&gt;-2147024891, System.UnauthorizedAccessException&lt;/SPAN&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;/m:code&amp;gt;&lt;/SPAN&gt;&lt;DIV class="expanded"&gt;&lt;DIV class="line"&gt;&lt;SPAN class="button collapse-button" style="margin-left: -10px; background-position: no-repeat;"&gt;&lt;/SPAN&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;m:message&lt;SPAN class="html-attribute"&gt;&lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;SPAN class="html-attribute-name"&gt;xml:lang&lt;/SPAN&gt;="&lt;SPAN class="html-attribute-value"&gt;en-US&lt;/SPAN&gt;"&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;P class="collapsible-content" style="margin-left: 1em;"&gt;&lt;SPAN class="text"&gt;Access denied. You do not have permission to perform this action or access this resource.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line"&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;/m:message&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class="line" style="color: #000000; font-family: monospace; font-size: 13px; font-style: normal; font-weight: normal; text-align: start; text-indent: 0px;"&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;/m:error&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="color: #000000; font-family: monospace; font-size: 13px; font-style: normal; font-weight: normal; text-align: start; text-indent: 0px;"&gt;&lt;SPAN class="html-tag"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="color: #000000; font-family: monospace; font-size: 13px; font-style: normal; font-weight: normal; text-align: start; text-indent: 0px;"&gt;&lt;SPAN class="html-tag"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="color: #000000; font-family: monospace; font-size: 13px; font-style: normal; font-weight: normal; text-align: start; text-indent: 0px;"&gt;&lt;SPAN class="html-tag"&gt;I'm trying to load from QlikView for Windows in my laptop, accessing SharePoint at Office 365 (which my user have access)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 19:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521021#M194669</guid>
      <dc:creator />
      <dc:date>2015-05-18T19:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521022#M194670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vagner,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Did you get this to work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 10:44:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521022#M194670</guid>
      <dc:creator>roelvandeven</dc:creator>
      <dc:date>2016-02-04T10:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521023#M194671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How the REST Qlikview Connector deal with recurring Calendar events in Sharepoint?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Mar 2016 10:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521023#M194671</guid>
      <dc:creator>Karthik3</dc:creator>
      <dc:date>2016-03-30T10:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to Fetch a Sharepoint 2013 List using REST interface</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521024#M194672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please Share sample Screenshot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2016 06:59:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Fetch-a-Sharepoint-2013-List-using-REST-interface/m-p/521024#M194672</guid>
      <dc:creator>vengadeshpalani</dc:creator>
      <dc:date>2016-10-27T06:59:51Z</dc:date>
    </item>
  </channel>
</rss>

