<?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: Passing parameters through asp.net form framework to paginated report not working in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734366#M41137</link>
    <description>&lt;P&gt;Hi, I achieved it by passing the paramters through embed URL&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eg:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; &lt;SPAN class=""&gt;// Base embed URL for paginated report&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;const&lt;/SPAN&gt; baseEmbedUrl = &lt;SPAN class=""&gt;`https://app.powerbi.com/reportEmbed?reportId=&lt;SPAN class=""&gt;${reportId}&lt;/SPAN&gt;&amp;amp;groupId=&lt;SPAN class=""&gt;${groupId}&lt;/SPAN&gt;`&lt;/SPAN&gt;;
    
    &lt;SPAN class=""&gt;// Add parameters (rp: prefix for paginated report params)&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;const&lt;/SPAN&gt; parameters = &lt;SPAN class=""&gt;'&amp;amp;rp:fromsk=20&amp;amp;rp:area=A'&lt;/SPAN&gt;;

    &lt;SPAN class=""&gt;this&lt;/SPAN&gt;.&lt;SPAN class=""&gt;embedConfig&lt;/SPAN&gt; = {
      &lt;SPAN class=""&gt;type&lt;/SPAN&gt;: &lt;SPAN class=""&gt;'report'&lt;/SPAN&gt;, &lt;SPAN class=""&gt;// &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Still use 'report' for paginated reports in older SDKs&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;isPaginatedReport&lt;/SPAN&gt;: &lt;SPAN class=""&gt;true&lt;/SPAN&gt;, &lt;SPAN class=""&gt;// &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Tell SDK it's a paginated report&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;embedUrl&lt;/SPAN&gt;: baseEmbedUrl + parameters,&lt;/PRE&gt;</description>
    <pubDate>Tue, 17 Jun 2025 07:10:20 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-06-17T07:10:20Z</dc:date>
    <item>
      <title>Passing parameters through asp.net form framework to paginated report not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4733364#M41122</link>
      <description>&lt;P&gt;1. I am attempting to integrate a Power BI Paginated report into an ASP.NET webForms application (using the .NET Framework).&lt;/P&gt;&lt;P&gt;2. I am working on sending values as input parameters to load the paginated report.&lt;/P&gt;&lt;P&gt;The main problem is that the parameters are not being passed to the report, and it is not loading.&lt;/P&gt;&lt;P&gt;Issues:&lt;/P&gt;&lt;P&gt;1. Uncaught Error: There was an attempt to embed a component of type: paginated, but no corresponding component was found. Please confirm that the specified type is correct.&lt;/P&gt;&lt;P&gt;2. The parameters are either not being passed to the paginated report or the report is not loading with the selected filter values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below are the&amp;nbsp; code snippet used.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;script src="&lt;A href="https://cdn.jsdelivr.net/npm/powerbi-client@2.19.0/dist/powerbi.js" target="_blank"&gt;https://cdn.jsdelivr.net/npm/powerbi-client@2.19.0/dist/powerbi.js&lt;/A&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var embedUrl = '&amp;lt;%= EmbedUrl %&amp;gt;';&lt;BR /&gt;var embedToken = '&amp;lt;%= EmbedToken %&amp;gt;';&lt;BR /&gt;var reportId = '&amp;lt;%= ReportId %&amp;gt;';&lt;/P&gt;&lt;P&gt;// Your selected parameters&lt;BR /&gt;var empId = '&amp;lt;%= EMP_ID %&amp;gt;';&lt;BR /&gt;var empchildId = '&amp;lt;%= EMP_CHILD_ID %&amp;gt;';&lt;BR /&gt;var leadId = '&amp;lt;%= LEAD_ID %&amp;gt;';&lt;BR /&gt;var startDate = '&amp;lt;%= START_DATE %&amp;gt;';&lt;BR /&gt;var endDate = '&amp;lt;%= END_DATE %&amp;gt;';&lt;/P&gt;&lt;P&gt;function embedPaginatedReport() {&lt;BR /&gt;if (!embedUrl || !embedToken || !reportId) return;&lt;/P&gt;&lt;P&gt;var models = window['powerbi-client'].models;&lt;BR /&gt;var config = {&lt;BR /&gt;type: '&lt;STRONG&gt;paginated&lt;/STRONG&gt;', // &amp;lt;-- This is critical for paginated reports&lt;BR /&gt;tokenType: models.TokenType.Embed,&lt;BR /&gt;accessToken: embedToken,&lt;BR /&gt;embedUrl: embedUrl,&lt;BR /&gt;id: reportId,&lt;BR /&gt;permissions: models.Permissions.All,&lt;BR /&gt;settings: {&lt;BR /&gt;filterPaneEnabled: false,&lt;BR /&gt;navContentPaneEnabled: true&lt;BR /&gt;},&lt;BR /&gt;parameters: [&lt;BR /&gt;{ name: "EMP_ID", value: empId },&lt;BR /&gt;{ name: "EMP_CHILD_ID ", value: null },&lt;BR /&gt;{ name: "LEAD_ID ", value: leadId },&lt;BR /&gt;{ name: "START_DATE", value: startDate },&lt;BR /&gt;{ name: "END_DATE", value: endDate }&lt;BR /&gt;]&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;var reportContainer = document.getElementById('powerBIReportContainer');&lt;BR /&gt;powerbi.reset(reportContainer);&lt;BR /&gt;powerbi.embed(reportContainer, config);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;document.addEventListener("DOMContentLoaded", embedPaginatedReport);&lt;BR /&gt;window.onload = embedPaginatedReport;&lt;/P&gt;&lt;P&gt;//window.onload = function () {&lt;BR /&gt;// embedPowerBIReport();&lt;BR /&gt;//};&lt;BR /&gt;&amp;lt;/script&amp;gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 10:47:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4733364#M41122</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-16T10:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters through asp.net form framework to paginated report not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734232#M41133</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-start="313" data-end="435"&gt;&lt;FONT color="#000000"&gt;It looks like you're embedding a paginated report using the Power BI JavaScript API, but you're facing two key issues:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;1. There was an attempt to embed a component of type: paginated, but no corresponding component was found"&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-start="585" data-end="610"&gt;&lt;FONT color="#000000"&gt;This usually occurs when:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL data-start="611" data-end="856"&gt;
&lt;LI data-start="611" data-end="694"&gt;
&lt;P data-start="613" data-end="694"&gt;&lt;FONT color="#000000"&gt;The correct report type (paginated) is not supported by your Power BI capacity.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="695" data-end="774"&gt;
&lt;P data-start="697" data-end="774"&gt;&lt;FONT color="#000000"&gt;You're using an older or incorrect version of the Power BI JavaScript client.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="695" data-end="774"&gt;
&lt;P data-start="697" data-end="774"&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;Paginated reports aren’t enabled in your Power BI Premium or Embedded capacity.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4 data-start="858" data-end="869"&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Fix:&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P data-start="873" data-end="954"&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Ensure you're using the correct JavaScript client library (v2.19.0+ is fine):&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;&lt;FONT color="#000000"&gt;&amp;lt;script src="&lt;A href="https://cdn.jsdelivr.net/npm/powerbi-client@2.19.0/dist/powerbi.js" target="_blank" rel="noopener"&gt;https://cdn.jsdelivr.net/npm/powerbi-client@2.19.0/dist/powerbi.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/FONT&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;&lt;FONT color="#000000"&gt;Confirm your Power BI workspace is backed by Premium or PPU capacity, and paginated reports are enabled in that capacity (Admin portal &amp;gt; Capacity settings).&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;
&lt;H3 data-start="1242" data-end="1310"&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;2. Parameters not being passed to the paginated report&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;UL data-start="1337" data-end="1577"&gt;
&lt;LI data-start="1337" data-end="1405"&gt;
&lt;P data-start="1339" data-end="1405"&gt;&lt;FONT color="#000000"&gt;You’re passing parameters in the wrong place in the config object.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1406" data-end="1503"&gt;
&lt;P data-start="1408" data-end="1503"&gt;&lt;FONT color="#000000"&gt;Parameter names have trailing spaces (e.g. EMP_CHILD_ID instead of EMP_CHILD_ID ).&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1406" data-end="1503"&gt;
&lt;P data-start="1408" data-end="1503"&gt;&lt;FONT color="#000000"&gt;&lt;SPAN&gt;Parameters should go inside settings.parameter, not the root config.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="1604" data-end="1641"&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Update your embedding code like this:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&amp;lt;script&amp;gt;&lt;BR /&gt;var models = window['powerbi-client'].models;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;var config = {&lt;BR /&gt;type: 'paginated',&lt;BR /&gt;tokenType: models.TokenType.Embed,&lt;BR /&gt;accessToken: '&amp;lt;%= EmbedToken %&amp;gt;',&lt;BR /&gt;embedUrl: '&amp;lt;%= EmbedUrl %&amp;gt;',&lt;BR /&gt;id: '&amp;lt;%= ReportId %&amp;gt;',&lt;BR /&gt;permissions: models.Permissions.All,&lt;BR /&gt;settings: {&lt;BR /&gt;filterPaneEnabled: false,&lt;BR /&gt;navContentPaneEnabled: true,&lt;BR /&gt;parameters: {&lt;BR /&gt;EMP_ID: '&amp;lt;%= EMP_ID %&amp;gt;',&lt;BR /&gt;EMP_CHILD_ID: '&amp;lt;%= EMP_CHILD_ID %&amp;gt;',&lt;BR /&gt;LEAD_ID: '&amp;lt;%= LEAD_ID %&amp;gt;',&lt;BR /&gt;START_DATE: '&amp;lt;%= START_DATE %&amp;gt;',&lt;BR /&gt;END_DATE: '&amp;lt;%= END_DATE %&amp;gt;'&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;};&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;var reportContainer = document.getElementById('powerBIReportContainer');&lt;BR /&gt;powerbi.reset(reportContainer);&lt;BR /&gt;powerbi.embed(reportContainer, config);&lt;BR /&gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Make sure those parameters are actually defined in your paginated report (.rdl file). Date values should be passed in a consistent format (e.g., yyyy-MM-dd). If any parameter is null , explicitly set it as null or remove it if optional.&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;If the response has addressed your query, please&lt;STRONG&gt;&amp;nbsp;Accept it as a solution&amp;nbsp;&lt;/STRONG&gt;and give a&amp;nbsp;'Kudos'&amp;nbsp;so other members can easily find it&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Best Regards,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;Sreeteja.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;Community Support Team&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 17 Jun 2025 05:06:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734232#M41133</guid>
      <dc:creator>v-sshirivolu</dc:creator>
      <dc:date>2025-06-17T05:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters through asp.net form framework to paginated report not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734288#M41135</link>
      <description>&lt;P&gt;I appreciate your response. However, I'm still having trouble retrieving the parameter value in the paginated report for rendering. Could this issue be related to the Power BI workspace being not supported by Premium or PPU capacity?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Additionally, aside from using the Power BI JavaScript API to embed a paginated report, could you recommend any alternative methods for embedding the paginated report with parameter passing in an ASP.NET Web Forms application? Specifically for the ASP.NET Web Forms framework application.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 06:07:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734288#M41135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-17T06:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters through asp.net form framework to paginated report not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734366#M41137</link>
      <description>&lt;P&gt;Hi, I achieved it by passing the paramters through embed URL&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eg:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; &lt;SPAN class=""&gt;// Base embed URL for paginated report&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;const&lt;/SPAN&gt; baseEmbedUrl = &lt;SPAN class=""&gt;`https://app.powerbi.com/reportEmbed?reportId=&lt;SPAN class=""&gt;${reportId}&lt;/SPAN&gt;&amp;amp;groupId=&lt;SPAN class=""&gt;${groupId}&lt;/SPAN&gt;`&lt;/SPAN&gt;;
    
    &lt;SPAN class=""&gt;// Add parameters (rp: prefix for paginated report params)&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;const&lt;/SPAN&gt; parameters = &lt;SPAN class=""&gt;'&amp;amp;rp:fromsk=20&amp;amp;rp:area=A'&lt;/SPAN&gt;;

    &lt;SPAN class=""&gt;this&lt;/SPAN&gt;.&lt;SPAN class=""&gt;embedConfig&lt;/SPAN&gt; = {
      &lt;SPAN class=""&gt;type&lt;/SPAN&gt;: &lt;SPAN class=""&gt;'report'&lt;/SPAN&gt;, &lt;SPAN class=""&gt;// &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Still use 'report' for paginated reports in older SDKs&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;isPaginatedReport&lt;/SPAN&gt;: &lt;SPAN class=""&gt;true&lt;/SPAN&gt;, &lt;SPAN class=""&gt;// &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Tell SDK it's a paginated report&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;embedUrl&lt;/SPAN&gt;: baseEmbedUrl + parameters,&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Jun 2025 07:10:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734366#M41137</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-17T07:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters through asp.net form framework to paginated report not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734374#M41138</link>
      <description>&lt;P data-start="271" data-end="335"&gt;&lt;FONT size="3" color="#000000"&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp; ,&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;It looks like you're embedding a Power BI paginated report into an ASP.NET Web Forms application, but facing two primary issues:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;H3 data-start="480" data-end="548"&gt;&lt;FONT size="3" color="#000000"&gt;&lt;STRONG data-start="487" data-end="548"&gt;Issue 1: Error – "Component of type: paginated not found"&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P data-start="550" data-end="578"&gt;&lt;FONT size="3" color="#000000"&gt;This typically happens when:&lt;/FONT&gt;&lt;/P&gt;
&lt;OL data-start="580" data-end="813"&gt;
&lt;LI data-start="580" data-end="677"&gt;
&lt;P data-start="582" data-end="677"&gt;&lt;FONT size="3" color="#000000"&gt;You're not using a workspace backed by Power BI Premium or Premium per User (PPU) capacity.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P data-start="680" data-end="756"&gt;&lt;FONT size="3" color="#000000"&gt;Your JavaScript client is outdated or doesn't support paginated reports.&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-start="759" data-end="813"&gt;&lt;FONT size="3" color="#000000"&gt;You're using an incorrect type in your embed config.&lt;/FONT&gt;&lt;/P&gt;
&lt;H4 data-start="815" data-end="826"&gt;&amp;nbsp;&lt;/H4&gt;
&lt;P data-start="830" data-end="873"&gt;&lt;FONT size="3" color="#000000"&gt;1.Use the correct Power BI JavaScript client:&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;&amp;lt;script src="&lt;A href="https://cdn.jsdelivr.net/npm/powerbi-client@2.19.0/dist/powerbi.js" target="_blank" rel="noopener"&gt;https://cdn.jsdelivr.net/npm/powerbi-client@2.19.0/dist/powerbi.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="982" data-end="1023"&gt;&lt;FONT size="3" color="#000000"&gt;2.Confirm your workspace is Premium-backed:&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT size="3" color="#000000"&gt;Go to Power BI Service - Workspace list&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-start="1029" data-end="1068"&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="" dir="ltr"&gt;
&lt;P&gt;&lt;FONT size="3" color="#000000"&gt;var models = window['powerbi-client'].models;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-start="1074" data-end="1132"&gt;&lt;FONT size="3" color="#000000"&gt;Make sure there’s a diamond icon next to the workspace&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-start="1138" data-end="1191"&gt;&lt;FONT size="3" color="#000000"&gt;Otherwise, embedding paginated reports will fail.&lt;/FONT&gt;&lt;/P&gt;
&lt;H3 data-start="1198" data-end="1258"&gt;&lt;FONT size="3" color="#000000"&gt;&lt;STRONG data-start="1205" data-end="1258"&gt;Issue 2: Parameters not reaching paginated report&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P data-start="1260" data-end="1421"&gt;&lt;FONT size="3" color="#000000"&gt;Your original code sends parameters at the root level, which is incorrect for paginated reports. Also, there are trailing spaces in some parameter names.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3" color="#000000"&gt;&lt;STRONG&gt;&lt;BR /&gt;Update your embedding code like this:&lt;BR /&gt;&lt;/STRONG&gt;&amp;lt;script&amp;gt;&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;var config = {&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;type: 'paginated',&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;tokenType: models.TokenType.Embed,&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;accessToken: '&amp;lt;%= EmbedToken %&amp;gt;',&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;embedUrl: '&amp;lt;%= EmbedUrl %&amp;gt;',&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;id: '&amp;lt;%= ReportId %&amp;gt;',&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;permissions: models.Permissions.All,&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;settings: {&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;filterPaneEnabled: false,&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;navContentPaneEnabled: true,&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;parameters: {&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;EMP_ID: '&amp;lt;%= EMP_ID %&amp;gt;',&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;EMP_CHILD_ID: '&amp;lt;%= EMP_CHILD_ID %&amp;gt;',&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;LEAD_ID: '&amp;lt;%= LEAD_ID %&amp;gt;',&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;START_DATE: '&amp;lt;%= START_DATE %&amp;gt;',&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;END_DATE: '&amp;lt;%= END_DATE %&amp;gt;'&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;}&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;}&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;};&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;var reportContainer = document.getElementById('powerBIReportContainer');&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;powerbi.reset(reportContainer);&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;powerbi.embed(reportContainer, config);&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&lt;FONT size="3" color="#000000"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Remove any trailing spaces in parameter names like "EMP_CHILD_ID&amp;nbsp; "&lt;SPAN&gt;&amp;nbsp;- "EMP_CHILD_ID"&lt;BR /&gt;&lt;SPAN&gt;Ensure your RDL file has these parameters defined exactly as named&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-start="2193" data-end="2359"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="2398" data-end="2444"&gt;&lt;FONT size="3" color="#000000"&gt;To confirm the report is receiving parameters:&lt;/FONT&gt;&lt;/P&gt;
&lt;OL data-start="2446" data-end="2716"&gt;
&lt;LI data-start="2446" data-end="2499"&gt;
&lt;P data-start="2449" data-end="2499"&gt;&lt;FONT size="3" color="#000000"&gt;Open the .rdl report in Power BI Report Builder.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2446" data-end="2499"&gt;
&lt;P data-start="2449" data-end="2499"&gt;&lt;SPAN&gt;Add default values or expression logic to display the parameter values in the report.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="2446" data-end="2499"&gt;
&lt;P data-start="2449" data-end="2499"&gt;&lt;SPAN&gt;Check if the report fails when loaded without parameters — this can help you verify if the values are being passed properly.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P data-start="2592" data-end="2716"&gt;&lt;FONT size="3" color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV id="bodyDisplay_0" class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;If the response has addressed your query, please&amp;nbsp;&lt;STRONG&gt;Accept it as a solution&lt;/STRONG&gt;&amp;nbsp;and give a&amp;nbsp;'Kudos'&amp;nbsp;so other members can easily find it.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Best Regards,&lt;BR /&gt;&lt;FONT color="#000000"&gt;Sreeteja.&lt;BR /&gt;&lt;FONT color="#000000"&gt;Community Support Team&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 07:20:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734374#M41138</guid>
      <dc:creator>v-sshirivolu</dc:creator>
      <dc:date>2025-06-17T07:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameters through asp.net form framework to paginated report not working</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734773#M41139</link>
      <description>&lt;P data-start="912" data-end="1158"&gt;Hi Anonymous&lt;/LI-USER&gt;,&lt;BR data-start="932" data-end="935" /&gt;Thanks for sharing this! You're absolutely right using the rp: prefix in the embed URL is the correct way to pass parameters to a paginated report. This works well, especially when embedding through SDKs or custom apps.&lt;/P&gt;
&lt;P data-start="1160" data-end="1201"&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="" dir="ltr"&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV id="bodyDisplay_0" class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Best Regards,&lt;BR /&gt;Sreeteja.&lt;BR /&gt;Community Support Team&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 17 Jun 2025 12:19:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Passing-parameters-through-asp-net-form-framework-to-paginated/m-p/4734773#M41139</guid>
      <dc:creator>v-sshirivolu</dc:creator>
      <dc:date>2025-06-17T12:19:58Z</dc:date>
    </item>
  </channel>
</rss>

