<?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: Need help on Migrating SSRS rdl files to Power BI Service using PowerShell script in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2265607#M33740</link>
    <description>&lt;P&gt;Hello Friend,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got similar kind of error message, was it solved??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Getting this error message "Error: paginated Report Drillthrough Unsupported" while trying to publish drillthrough report..Kinldy help me out to solove this issue..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly find the attached images for your reference...........&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SSRS 2.jpeg" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/651043i076DBFF0E7A97DD7/image-size/large?v=v2&amp;amp;px=999" role="button" title="SSRS 2.jpeg" alt="SSRS 2.jpeg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SSRS 1.jpeg" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/651042i1168364DDBF52AEB/image-size/large?v=v2&amp;amp;px=999" role="button" title="SSRS 1.jpeg" alt="SSRS 1.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Jan 2022 14:01:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-01-04T14:01:42Z</dc:date>
    <item>
      <title>Need help on Migrating SSRS rdl files to Power BI Service using PowerShell script</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2201912#M33068</link>
      <description>&lt;P&gt;I have multiple rdl files using On-premise shared SQL db connection. My requirement is publish these rdl files into Power BI Service by changing the database connection from On-premise SQL db to Azure Serverless SQL db using PowerShell.&lt;BR /&gt;I have tried below PowerShell script(referred this link&amp;nbsp;&lt;A href="https://github.com/microsoft/powerbi-powershell/issues/218" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/microsoft/powerbi-powershell/issues/218&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;) to publish single rdl file into Power BI Service.&lt;/P&gt;&lt;P&gt;This script is working fine when i change the data source connection to Azure Serverless SQL db from On-premise SQL db manually opening the rdl file in Power BI Report builder and saved report locally("C:\Reports\Summary.rdl") &lt;SPAN&gt;but can't migrate with existing On-premise SQL db connection and getting below error message because Paginated Reports don't support shared data source and need to convert the connection to embedded connection.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I need some help in below PowerShell script to change the data source connection to Azure Serverless SQL db and convert shared data source connection to embedded connection so that i can publish the report into Power BI Service.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Error Message:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;{"error":{"code":"PaginatedReportAuthoringError","pbi.error":{"code":"PaginatedReportAuthoringError","parameters":{},"details":[{"code":"RdlWorkloadErrorCode"&lt;BR /&gt;,"detail":{"type":1,"value":"PaginatedReportAuthoringError"}},{"code":"RdlWorkloadErrorMessage","detail":{"type":1,"value":"Report contains unsupported shared data source: eton_rei_data."}}&lt;BR /&gt;,{"code":"PaginatedReportAuthoringError","detail":{"type":1,"value":"&lt;FONT color="#FF0000"&gt;Report contains unsupported shared data source&lt;/FONT&gt;: eton_rei_data."}},{"code":"HostMode","detail":{"type":1,"value":"AutoPremium"}},{"code":"CapacityObjectId","detail":{"type":1,"value":"840204A1-4233-4CE6-B550-84F02691A369"}}],"exceptionCulprit":1}}}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;PowerShell Script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Connect-PowerBIServiceAccount&lt;BR /&gt;$token = Get-PowerBIAccessToken -AsString&lt;BR /&gt;$headers = @{&lt;BR /&gt;'Authorization' = $token&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;$path_to_rdl = "C:\Reports\Summary.rdl"&lt;/P&gt;&lt;P&gt;# RDL only supports "Abort" Or "Overwrite" and will fail with anything else&lt;BR /&gt;$conflict = 'Abort'&lt;BR /&gt;$workspaceID = '213aa0aa-4576-4601-b249-04583c484aa2'&lt;/P&gt;&lt;P&gt;$form = @{ file = Get-Item $path_to_rdl }&lt;BR /&gt;[string]$itemname = Split-Path $path_to_rdl -Leaf&lt;/P&gt;&lt;P&gt;$response = Invoke-RestMethod -Uri "&lt;A href="https://api.powerbi.com/v1.0/myorg/groups/$workspaceID/imports?datasetDisplayName=$itemname&amp;amp;nameConflict=$conflict" target="_blank" rel="noopener"&gt;https://api.powerbi.com/v1.0/myorg/groups/$workspaceID/imports?datasetDisplayName=$itemname&amp;amp;nameConflict=$conflict&lt;/A&gt;"-Method POST -ContentType "multipart/form-data" -Form $form -Headers $headers&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 16:07:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2201912#M33068</guid>
      <dc:creator>bolagam1986</dc:creator>
      <dc:date>2021-11-22T16:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on Migrating SSRS rdl files to Power BI Service using PowerShell script</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2208574#M33155</link>
      <description>&lt;P&gt;Follow the steps in this document to see if the problem still exists:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/guidance/migrate-ssrs-reports-to-power-bi" target="_self"&gt;https://docs.microsoft.com/en-us/power-bi/guidance/migrate-ssrs-reports-to-power-bi&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Nov 2021 02:46:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2208574#M33155</guid>
      <dc:creator>V-lianl-msft</dc:creator>
      <dc:date>2021-11-26T02:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on Migrating SSRS rdl files to Power BI Service using PowerShell script</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2211332#M33195</link>
      <description>&lt;P&gt;Thanks for the reply&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/182446"&gt;@V-lianl-msft&lt;/a&gt;.&amp;nbsp; I tried RDL Migration tool as well but getting below error.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;"The request failed with HTTP status 401: Unauthorized."&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Followed steps as per this link (&lt;A href="https://github.com/microsoft/RdlMigration)" target="_blank"&gt;https://github.com/microsoft/RdlMigration)&lt;/A&gt;&amp;nbsp;and registered app in&amp;nbsp;&lt;A href="https://dev.powerbi.com/apps" rel="nofollow" target="_blank"&gt;https://dev.powerbi.com/apps&lt;/A&gt;&amp;nbsp;for client id.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 06:33:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2211332#M33195</guid>
      <dc:creator>bolagam1986</dc:creator>
      <dc:date>2021-11-29T06:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on Migrating SSRS rdl files to Power BI Service using PowerShell script</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2265607#M33740</link>
      <description>&lt;P&gt;Hello Friend,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got similar kind of error message, was it solved??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Getting this error message "Error: paginated Report Drillthrough Unsupported" while trying to publish drillthrough report..Kinldy help me out to solove this issue..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly find the attached images for your reference...........&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SSRS 2.jpeg" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/651043i076DBFF0E7A97DD7/image-size/large?v=v2&amp;amp;px=999" role="button" title="SSRS 2.jpeg" alt="SSRS 2.jpeg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SSRS 1.jpeg" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/651042i1168364DDBF52AEB/image-size/large?v=v2&amp;amp;px=999" role="button" title="SSRS 1.jpeg" alt="SSRS 1.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 14:01:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-help-on-Migrating-SSRS-rdl-files-to-Power-BI-Service-using/m-p/2265607#M33740</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-04T14:01:42Z</dc:date>
    </item>
  </channel>
</rss>

