<?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: Link to another report using Built-in Collections (global variable) in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1647904#M17952</link>
    <description>&lt;P&gt;Thanks for the reply. For me it looks like the built-in collection is not giving back the correct Report Server URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need:&amp;nbsp;dev-kpl-pbi-vm/Reports/report/&lt;/P&gt;&lt;P&gt;[&amp;amp;ReportServerUrl] is giving me:&amp;nbsp;http://dev-kpl-pbi-vm:80/ReportServer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The expression is&amp;nbsp;Globals!ReportServerUrl. This is the same which is used on the SSRS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Neither&amp;nbsp;http://dev-kpl-pbi-vm:80/ReportServer/report/test_report&amp;nbsp;nor&amp;nbsp;http://dev-kpl-pbi-vm:80/ReportServer/test_report is opening the report.&lt;/P&gt;</description>
    <pubDate>Fri, 05 Feb 2021 12:46:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-02-05T12:46:39Z</dc:date>
    <item>
      <title>Link to another report using Built-in Collections (global variable)</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1645567#M17933</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On SSRS the global variable for the server URL is working fine, but in PBIRS not. I found this &lt;A href="https://docs.microsoft.com/en-us/sql/reporting-services/report-design/built-in-collections-built-in-globals-and-users-references-report-builder?view=sql-server-ver15" target="_blank" rel="noopener"&gt;MS documentation&amp;nbsp;&lt;/A&gt;&amp;nbsp;and like to know if and where these built-in references can be edited.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My example:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Link to the report: http://dev-kpl-pbi-vm/Reports/report/test_report&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[&amp;amp;ReportServerUrl] is giving me: &lt;A href="http://dev-kpl-pbi-vm:80/ReportServer" target="_blank" rel="noopener"&gt;http://dev-kpl-pbi-vm:80/ReportServer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In SSRS I can use the global built-in variable followed by the folder structure to link to a report, but in PBIRS it is not opening the linked report. It shows me the following instead:&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Mogry&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2021 15:40:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1645567#M17933</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-04T15:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Link to another report using Built-in Collections (global variable)</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1647066#M17944</link>
      <description>&lt;P&gt;What is the expression you were using in SSRS. As far as I am aware the url syntax for the ReportServer endpoint has not changed since SSRS 2005.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Typically you would use something like the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;[&amp;amp;ReportServerUrl]?&amp;lt;path to report&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So you your case something like the following should work:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;[&amp;amp;ReportServerUrl]?/test_report&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I think it is the extra &lt;STRONG&gt;/report/&lt;/STRONG&gt;&amp;nbsp;in your url that is used in the portal, but is not required by the ReportServer that is give you the issue.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 05:12:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1647066#M17944</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2021-02-05T05:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Link to another report using Built-in Collections (global variable)</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1647904#M17952</link>
      <description>&lt;P&gt;Thanks for the reply. For me it looks like the built-in collection is not giving back the correct Report Server URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need:&amp;nbsp;dev-kpl-pbi-vm/Reports/report/&lt;/P&gt;&lt;P&gt;[&amp;amp;ReportServerUrl] is giving me:&amp;nbsp;http://dev-kpl-pbi-vm:80/ReportServer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The expression is&amp;nbsp;Globals!ReportServerUrl. This is the same which is used on the SSRS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Neither&amp;nbsp;http://dev-kpl-pbi-vm:80/ReportServer/report/test_report&amp;nbsp;nor&amp;nbsp;http://dev-kpl-pbi-vm:80/ReportServer/test_report is opening the report.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 12:46:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1647904#M17952</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-05T12:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Link to another report using Built-in Collections (global variable)</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1648007#M17953</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Neither&amp;nbsp;http://dev-kpl-pbi-vm:80/ReportServer/report/test_report&amp;nbsp;nor&amp;nbsp;http://dev-kpl-pbi-vm:80/ReportServer/test_report is opening the report.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That is probably because neither of those match the format I suggested. As in my previous post, you need to have the report server url, then a question mark (?) then the path to the report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I would expect one of the following to work (I'm not sure if you need the leading / when the report is in the home folder)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://dev-kpl-pbi-vm:80/ReportServer?/test_report" target="_blank"&gt;http://dev-kpl-pbi-vm:80/ReportServer?/test_report&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://dev-kpl-pbi-vm:80/ReportServer?test_report" target="_blank"&gt;http://dev-kpl-pbi-vm:80/ReportServer?test_report&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 13:35:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1648007#M17953</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2021-02-05T13:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Link to another report using Built-in Collections (global variable)</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1648070#M17955</link>
      <description>&lt;P&gt;I totally missed the question mark. The report is opening with "&lt;A href="http://dev-kpl-pbi-vm/ReportServer?/test_report" target="_blank" rel="nofollow noopener noreferrer"&gt;http://dev-kpl-pbi-vm:80/ReportServer?/test_report&lt;/A&gt;" and the leading slash is necessary.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 14:11:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Link-to-another-report-using-Built-in-Collections-global/m-p/1648070#M17955</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-05T14:11:31Z</dc:date>
    </item>
  </channel>
</rss>

