SharePoint List Office 365 PowerQuery Error [DataSource.Error] SharePoint: Request failed:

When I open Power Query in my Excel and connect to the SharePoint site that my list(s) reside in the tool displays the tables but when I select the table to pull the data I receive this error
[DataSource.Error] SharePoint:   Request failed: The remote server returned an error: (500) Internal Server   Error. (An error occurred while processing this request.)
My SharePoint version is the SharePoint online 2013 version.
thanks
Andrew
BTW: all the system created lists (like L MicroFeed)  in the SharePoint do work properly. I can open them in Power Query and look at the data 

GUTN, 
can you submit this as a bug in the UI via the Smile Frown button?
Thanks!
Ed Price, Azure & Power BI Customer Program Manager (Blog,
Small Basic,
Wiki Ninjas,
Wiki)
Answer an interesting question?
Create a wiki article about it!

Similar Messages

  • SharePoint 2013 - Office 365 Custom Rating(0-5) Sharepoint Hosted App SetRating Reputation Class using Javascript and CSOM

    I have created the list and enabled the rating feature. I want to display the List items and rate individual items from an App.  I can able to create and bind the rating control through CSOM associated with the Rating Value.  But I unable to rating
    when I click rating star button. I am using the below code for clicking through JavaScript
    function SetRating(webUrl, listId, itemId, ratingElementId) {
    hostWebContext = new SP.AppContextSite(context, hostWebUrl);
    var listPrograms = hostWebContext.get_web().get_lists().getByTitle("MyList");
    context.load(listPrograms);
    var RatingValue = 5;
    EnsureScriptFunc('reputation.js', 'Microsoft.Office.Server.ReputationModel.Reputation',
    function () {
    var rating = Microsoft.Office.Server.ReputationModel.Reputation.setRating(hostWebContext, listId, itemId, RatingValue);
    context.executeQueryAsync(Function.createDelegate(this, this.RatingSuccess), Function.createDelegate(this, this.RatingFailure));
    While executing this script I got error like get 0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'addQuery'
    * Which Context we have to use for this case? AppWeb / HostedWeb
    * Is there any way to update the rating control value at runtime?
    Please help us to find out the solution.
    Thanks.

    Hi Elie,
    Since this forum is discussing about Developing Apps for Office 2013, and your issue is more related about Exchange development. I will move this thread to the more related forum.
    Reference:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=exchangesvrdevelopment
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error while executing script for sharepoint online (office 365) - the remote server returned an error: (503) server unavailable

    error while executing script for sharepoint online (office 365) - the remote server returned an error: (503) server unavailable.
    I am creating many site collections reading records from sharepoint list using powershell in sharepoint online tenant (office 365).
    Few site collections are created and then getting above error so this error record will be skipped then few succeeding record processed then again getting error.
    pattern is like:
    success
    success
    success
    success
    Error
    success
    success
    success
    success
    success
    success
    error
    success

    Hi,
    As it is an online environment, to troubleshoot this issue in an easier way, I suggest you contact Office 365 Support to see if there is any useful information in
    the log files in the server side:
    https://support.office.com/en-us/article/Contact-Office-365-for-business-support-32a17ca7-6fa0-4870-8a8d-e25ba4ccfd4b?ui=en-US&rs=en-US&ad=US
    Best regards
    Patrick Liang
    TechNet Community Support

  • Web Part Error: Sandboxed code execution request failed - office 365

    If i am trying to edit the webpart, i am getting this error "Web Part Error: Sandboxed code execution request failed"
    But the same code worked properly before two months, i didnt done any deployment activities from last 6 months..i dont know how it is possible ? 
    and the same issue happening during the javascript post back also
    1) I cant able to restart the sandbox service because i am using office 365
    2) it worked properly before march month, after the patch upgrade which is released by microsoft, i am facing this kind of issue..
    can any one help to resolve this issue ?

    Hi,
    Please post your question on online community for sharepoint 

  • I'm getting DataSource.NotFound: OData: Request failed (404) error when open connection

    Hi,
    I have a simple OData service running in a server. When I try to call him in a browser all works fine. But in Excel Power Query, after the user authentication step, I get this error in Query editor
    DataSource.NotFound: OData: Request failed (404): The remote server returned an error: (404) Not Found.
    Details:
        http://<URL>/GIPJAM/$metadata
    The service is configured in a server and he his public. The URL (working in browser) http://<URL>:91/GIPJAM/
    This may be a port (91) problem? My application runs in port 80. This 91 port is to guarantee that the server is public. For exemple, if I run in my home network, using the name of the machine in the URL (like; http://quiron.blabla.net/GIPJAM/) all works
    in browser and in Excel PQ.
    I've made every test I can remember but i'm newbie in OData services and server, IIS and network configurations. 
    Anyone can help me?
    Regards,
    Filipe Almeida
    EDIT: I have this workaround implemented: https://social.technet.microsoft.com/Forums/en-US/dc0ca6ff-6583-4373-a31f-acb95e8046ef/connecting-to-odata-feed-using-powerquery-216-results-in-404-error?forum=powerquery
    I'm using Power Query 2.16 and Excel 2013, with a Odata V4 Service in Web .NET API 2.2

    It looks like your service probably supports V3 and V4 or you'd be getting a different error message. What I suspect is happening is that the service doesn't know that it's listening on port 91 and so it's returning URLs embedded in your result -- either
    the xml:base on an XML body or the metadata link in a JSON body -- which don't reflect the port number. You can easily verify this by using Fiddler to look at the results. If any of them have an URL that's missing the ":91", that's an indication
    that you'll need to fix this on the service side.

  • How to Get user profile properties in provider -cloud hosted app in sharepoint online - office 365 using REST API?

    How to Get user profile properties in provider -cloud hosted app in sharepoint online - office 365 using REST API?
    any idea?

    Hi,
    From your description, my understanding is that you want to get user profile properties in provider-hosted app in SharePoint online using REST API.
    Here is sample code for getting user profile properties:
    http://www.vrdmn.com/2013/07/sharepoint-2013-get-userprofile.html
    Here is a blog below about accessing data from the provider-host apps:
    http://dannyjessee.com/blog/index.php/2014/07/accessing-sharepoint-data-from-provider-hosted-apps-use-the-right-context/
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to get sharepoint online (office 365) data in cloud/windows azure (provider) hosted app using Javascript?

    How to get sharepoint online (office 365) data in cloud/windows azure (provider) hosted app using Javascript?
    I wish to retrieve sharepoint online data in html page (hosted in windows azure) using javascript and then need to play with AngularJS

    Hi,
    According to your description, you might want to get data from Office 365 SharePoint Online(also known as host web) and pass to the Provider Hosted App which is hosted
    in Windows Azure site.
    I would suggest you take a look at the links below about accessing data from the host web
     for a quick start:
    https://msdn.microsoft.com/en-us/library/office/fp179927(v=office.15).aspx#SP15Accessdatafromremoteapp_Codeexample
    http://dannyjessee.com/blog/index.php/2014/07/accessing-sharepoint-data-from-provider-hosted-apps-use-the-right-context/
    Aother sample solution for your reference:
    https://code.msdn.microsoft.com/SharePoint-2013-Get-the-0ec36bb6
    Best regards
    Patrick Liang
    TechNet Community Support

  • Is possible to site mailbox email address with different domains in sharepoint online - office 365

    Can I set site mailbox email address with different domains in sharepoint online - office 365?
    For eg I have two dns link with office 365 account - abc.com, xyz.com
    So can i set site mailbox email according  using powershell like follwoing
    New-SiteMailbox –DisplayName "test" -Name "[email protected]" –SharePointUrl $NewlyCreatedsiteurl
    New-SiteMailbox –DisplayName "test" -Name "[email protected]" –SharePointUrl $NewlyCreatedsiteurl

    Hi Biraj,
    From your description, you would like site mailbox to have two email address.
    Since the issue is related to SharePoint online and Exchange online, I'd recommend you contact online support engineer for sufficient resource and more assistance. For your convenience:
    http://community.office365.com/en-us/f/154.aspx
    In addition, I find some information that might be relevant for your reference:
    Quotes from
    https://support.office.com/en-sg/article/Prepare-for-using-site-mailboxes-in-Office-365-6381daa5-3d98-4629-972d-d19e1dc48c1b
    Can I rename a site mailbox?            
    The display name of a site mailbox is the SharePoint team site display name. If you change the display name of the site in SharePoint, the display name also changes in Outlook. However, the site email address won’t be changed.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to change Site Share mail template in SharePoint online (Office 365)

    Hi,
    I want to change the default mail template used in SharePoint Online (Office 365) which is as follows
    I want to change the logo of microsoft with my custom logo and message below that logo.
    How could i do that?

    in Office365 SharePoint Online, if you wan to customize the alert template you need to customize the Alerttemplates.xml under 14 folder on Online server, but it is not permitted, check this article you
    also have seen.
    You can also post this question related SharePoint Online in dedicated Office365 SharePoint Online forum, you can get a better assistance there,
    http://community.office365.com/en-us/forums/151/categories.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/0d31bb5d-d46b-425a-9f48-6100404b95d8/sharepoint-online-custom-alert-emails?forum=sharepointcustomizationprevious

  • How to install app using powershell in sharepoint online - office 365?

    How to install app using powershell in sharepoint online - office 365?

    Hi
    check this similar post
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/1f0cd45a-00e1-4452-bafe-83c6ee3a59db/can-i-deploy-a-sharepointapp-to-office-365-using-powershell?forum=appsforsharepoint
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • Lotus notes migration to SharePoint online Office 365

    Hi there,
    My organization is looking to migrate from Lotus notes to SharePoint Online Office 365 (SharePoint 2013).
    We are doing this without any help of a tool.
    I am going to create the wiki pages.
    There are around 1600 pages which are interlinked and approximately 15 links on every page.
    Is there any means I can automate the linking of wiki pages.
    Can a workflow be written to do so..??
    Please advise
    Many thanks.

    Yes, this can be automated. However in doing so you're effectively building your own tool which will cost more than buying a pre-built one.
    This isn't going to be possible with a SharePoint workflow. First you'll have to read the Lotus notes content, then you'll want to serialise that into a format for import and clean up any links or dead pages. Then you'll have to use the CSOM or REST
    APIs to create, populate and publish those pages.
    This won't be a quick task.

  • Any way to get all users's user profile proeprty using CSOM c# for sharepoint online - office 365?

    Any way to get all users's user profile proeprty using CSOM c# for sharepoint online - office 365?

    Since CSOM provides methods for operations related to people per
    user scope, you could retrieve all site users first using SP.Web.siteUsers
    property. and then use SP.UserProfiles.PeopleManager.getUserProfilePropertyFor
    Method to get property.
    [custom.development]

  • What is the Industry data for SharePoint Usage / Office 365 Usage?? ( Market size , Market growth , Competitive landscape)

    What is the industry data for SharePoint Usage / Office 365 Usage?

    Have Windows Updates been applied? See my note about this
    https://twitter.com/imorrish/status/491020435039854592
    Look at the URL in the search results. It may have invalid character in which case you can use this fix
    http://blogs.msdn.com/b/spses/archive/2014/06/30/sharepoint-2013-the-search-results-with-5c-the-character-will-become-double-encoded-and-causes-broken-links.aspx
    Regards,
    Ian
    http://sps.cloudapp.net
    Regards, Ian Internet Sites running on SharePoint 2013 http://j.mp/sp2013sites

  • Error while saving a workflow via sharepoint designer Office 365: Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities

    Hi,
    I get the above error whenever I try to save a new WorkFlow. I have cleared the caches
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    <user profile>\appdata\local\microsoft\websitecache\<sitename>, and
    I still get the same issue.
    We are using SharePoint Designer 2013 (15.0.4569.1503) and connecting to SharePoint 2013 on Office 365.
    Can you please provide more insight?
    Thanks.

    Hi Rake,
    You can compare your PC and another machine which is working, see if it is related to IE settings(e.g. SharePoint urls in trusted sites zone).
    And you can try re-install the SharePoint Designer 2013 with same version and bit-version(32/64) on your PC like another machine, then check again.
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

  • SharePoint List Error :[DataSource.Error] SharePoint: Request failed: The remote server returned an error: (500) Internal Server Error. (An error occurred while processing this request.)

    When I connect to the SharePoint site that contains the lists I need to build my query from , Power Query enumerates the list and displays them in the tool. I can click on the system tables and view the records but any table
    in the list I created returns this  error.
    I can connect fine with InfoPath
    [DataSource.Error] SharePoint:   Request failed: The remote server returned an error: (500) Internal Server   Error. (An error occurred while processing this request.)
    thank you for your help
    Andrew
     

    Hi Andrew. In order for us diagnose this issue, you'll need to capture some network traces using a tool such as Fiddler and share them by sending a Frown.
    To capture a trace using Fiddler, start Fiddler, enable the Tools > Fiddler Options > HTTPS > Decrypt HTTPS traffic option, start the capture, reproduce your issue, then stop and save the capture. You can find more information here.
    Once you've done that, please send a Frown through the Power Query ribbon and attach the traces.
    Thanks,
    Ehren

Maybe you are looking for

  • Probably a stupid question- deleting music

    I know there is probably a very simple answer to this question but I can't figure it out. When trying to delete a song from my music library in iTunes I get a warning saying that the song will also be removed from any device that syncs with this itun

  • Copied music from my husband's iTunes is showing up Track01, etc

    Hello, This evening I wanted to copy some songs from my husband's iTunes library.  I selected the songs, made a playlist from them, then copied the playlist to a CD.  When I imported the CD into my iTunes, all the songs show up as Track 01, etc, no s

  • How do I edit a document I've Imported to My Workspace?

    How do I edit a document I've Imported to My Workspace?

  • RC12 while transporting InfoObjects

    Hello Gurus, I created a sequence of transports from our DEV system (BI 7.0 SP12) to our QA system (same level as DEV) and the first transport is for all the InfoObjects (including InfoCatalogs and InfoAreas). The import sequence in the QA system wen

  • Password from command line

    I have some password protected pdf documents. I would like to specify the password on the command line when I open them in Adobe Reader. Is there a command line option for this? (If it makes a difference, I have Windows Reader v. 8.1.2. running on Vi