<?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 Query Report folder structure of PowerBI report server and see all the hierarchy of folders ? in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065342#M20847</link>
    <description>&lt;P&gt;Got a error&amp;nbsp; via OData connector using windows auth&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Details: "Microsoft.Mashup.Engine1.Library.Resources.HttpResource: Request failed:&lt;BR /&gt;OData Version: 3 and 4, Error: The remote server returned an error: (404) Not Found. (Not Found)&lt;BR /&gt;OData Version: 4, Error: The remote server returned an error: (404) Not Found. (Not Found)&lt;BR /&gt;OData Version: 3, Error: The remote server returned an error: (404) Not Found. (Not Found)"&lt;/P&gt;</description>
    <pubDate>Thu, 09 Sep 2021 00:01:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-09-09T00:01:02Z</dc:date>
    <item>
      <title>How to Query Report folder structure of PowerBI report server and see all the hierarchy of folders ?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2064972#M20837</link>
      <description>&lt;P&gt;How to Query Report folder structure of PowerBI report server and see all the hierarchy of folders ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to query PowerBI report server and want to see how folders have been organized .I want the nested structure so that I can make decision in re-designing the folders based on my Business line and sub departments.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I m technical user and not want to see what data is present in the reports but just the structure and objects on report server .&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 18:34:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2064972#M20837</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-08T18:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Query Report folder structure of PowerBI report server and see all the hierarchy of folders ?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065197#M20840</link>
      <description>&lt;P&gt;You could try starting with something like this SQL and modify it from here. You'll need access to the SQL Server and the ReportServer database.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;USE [ReportServer]&lt;BR /&gt;GO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT CATALOG.NAME&lt;BR /&gt;,CATALOG.[Path]&lt;BR /&gt;,DataSource.NAME datasource&lt;BR /&gt;,CATALOG.[Description]&lt;BR /&gt;,Created.UserName AS CreatedByUser&lt;BR /&gt;,CATALOG.[CreationDate]&lt;BR /&gt;,Modified.UserName AS ModifiedByUser&lt;BR /&gt;,CATALOG.[ModifiedDate]&lt;BR /&gt;FROM [dbo].[Catalog]&lt;BR /&gt;LEFT JOIN (&lt;BR /&gt;SELECT [UserID]&lt;BR /&gt;,[UserName]&lt;BR /&gt;FROM [dbo].[Users]&lt;BR /&gt;) AS Created ON CATALOG.CreatedByID = Created.UserID&lt;BR /&gt;LEFT JOIN (&lt;BR /&gt;SELECT [UserID]&lt;BR /&gt;,[UserName]&lt;BR /&gt;FROM [dbo].[Users]&lt;BR /&gt;) AS Modified ON CATALOG.ModifiedByID = Modified.UserID&lt;BR /&gt;JOIN DataSource ON CATALOG.ItemID = DataSource.ItemID&lt;BR /&gt;JOIN CATALOG cat1 ON DataSource.Link = cat1.ItemID&lt;BR /&gt;WHERE CATALOG.[Type] = 2&lt;BR /&gt;ORDER BY [Path]&lt;BR /&gt;,NAME&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 21:42:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065197#M20840</guid>
      <dc:creator>blynchdata</dc:creator>
      <dc:date>2021-09-08T21:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to Query Report folder structure of PowerBI report server and see all the hierarchy of folders ?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065324#M20844</link>
      <description>&lt;P&gt;You can also do this in a Power BI Report using an OData connector and connecting to the following endpoint&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;http(s)://&amp;lt;yourserver&amp;gt;/reports/api/v2.0/CatalogItems&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This has a report path column which you can split on / characters to create a hierarchy&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 00:46:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065324#M20844</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2021-09-09T00:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to Query Report folder structure of PowerBI report server and see all the hierarchy of folders ?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065342#M20847</link>
      <description>&lt;P&gt;Got a error&amp;nbsp; via OData connector using windows auth&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Details: "Microsoft.Mashup.Engine1.Library.Resources.HttpResource: Request failed:&lt;BR /&gt;OData Version: 3 and 4, Error: The remote server returned an error: (404) Not Found. (Not Found)&lt;BR /&gt;OData Version: 4, Error: The remote server returned an error: (404) Not Found. (Not Found)&lt;BR /&gt;OData Version: 3, Error: The remote server returned an error: (404) Not Found. (Not Found)"&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 00:01:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065342#M20847</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-09T00:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to Query Report folder structure of PowerBI report server and see all the hierarchy of folders ?</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065368#M20848</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Got a error&amp;nbsp; via OData connector using windows auth&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sorry, there should be a /reports (or whatever you have configured for your portal url) in front of the /api so the endpoint should be as follows&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;http(s)://&amp;lt;yourserver&amp;gt;&lt;STRONG&gt;/reports&lt;/STRONG&gt;/api/v2.0/CatalogItems&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 00:48:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/How-to-Query-Report-folder-structure-of-PowerBI-report-server/m-p/2065368#M20848</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2021-09-09T00:48:11Z</dc:date>
    </item>
  </channel>
</rss>

