<?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: Power BI Custom Visual Error Embedded for Customers in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4670700#M60834</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1249554"&gt;@v-dineshya&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Thanks for sharing the potential solutions.&lt;/P&gt;&lt;P class=""&gt;Unfortunately, we have explored all the options but haven't had any luck.&lt;/P&gt;&lt;P class=""&gt;We are currently working with the Microsoft support team to resolve this issue.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt;&lt;BR /&gt;1. The custom visual was created using an R script.&lt;/P&gt;&lt;P class=""&gt;2. We faced a similar issue last year (September 2024) where the custom R visual worked fine in Power BI Service, Desktop, and Embedded for Organization, but not for customers. Microsoft eventually fixed it and stated that the issue was due to a bug in R script visuals.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Apr 2025 11:20:49 GMT</pubDate>
    <dc:creator>ejQap</dc:creator>
    <dc:date>2025-04-28T11:20:49Z</dc:date>
    <item>
      <title>Power BI Custom Visual Error Embedded for Customers</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4664641#M60693</link>
      <description>&lt;P class=""&gt;Hi, since yesterday, we have been experiencing a rendering issue with a custom visual in our application that uses Power BI Embedded for customers.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Our custom visual&amp;nbsp;works fine in Power BI Desktop and in Power BI Embedded for our organization. We haven’t updated or changed our custom visuals for a while, so this issue seems to have occurred without any recent modifications on our end.&lt;/P&gt;&lt;P class=""&gt;​&lt;/P&gt;&lt;P class=""&gt;Has anyone else experienced this issue recently? Any insights into potential causes would be greatly appreciated.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Note:&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;We faced a similar problem last year, where the custom visual failed to render in both the embedded for our organization and for customers.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ejQap_1-1745401112624.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1262596i4AEA605CCA9EC680/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ejQap_1-1745401112624.png" alt="ejQap_1-1745401112624.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 09:42:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4664641#M60693</guid>
      <dc:creator>ejQap</dc:creator>
      <dc:date>2025-04-23T09:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual Error Embedded for Customers</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4666062#M60723</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/378147"&gt;@ejQap&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to the Microsoft Community Forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This error typically arises when a custom visual cannot be properly rendered in Power BI Embedded reports.&lt;/P&gt;
&lt;P&gt;Few potential causes and things to check:&lt;/P&gt;
&lt;P&gt;1. Power BI Service Changes: Microsoft occasionally updates the Power BI service backend, which can unintentionally break compatibility with some custom visuals, especially in embedded contexts. Since you didn’t make any updates, this is a likely cause.&lt;/P&gt;
&lt;P&gt;Note: Check the Power BI support page or the Power BI community forum to see if others have reported similar issues recently.&lt;/P&gt;
&lt;P&gt;2. Visual Capabilities or API Version: Even if the visual hasn't been modified, an outdated apiVersion or unsupported capability in your custom visual’s manifest can cause issues in Embedded scenarios.&lt;/P&gt;
&lt;P&gt;Note: Double-check the pbiviz.json file of the custom visual. Ensure it uses a supported API version (ideally v3.8.0 or higher). Compare it with the latest custom visual guidelines: Custom Visual Guidelines –-&amp;gt; Microsoft Docs.&lt;/P&gt;
&lt;P&gt;3. Token Issue: Sometimes token mismatches, authorization changes, or domain policy updates can affect how visuals are rendered in embedded environments (especially for customer-embedded reports).&lt;/P&gt;
&lt;P&gt;Note: Confirm the access token being used is valid and scoped correctly. Check browser console logs for CORS or authentication-related errors. Make sure any Content Security Policy headers aren’t blocking resources.&lt;/P&gt;
&lt;P&gt;4. Power BI Visual Configuration: There may be a configuration in your embedded report setup or iframe code that prevents certain custom visuals from initializing correctly.&lt;/P&gt;
&lt;P&gt;Note: Check your embedded report iframe settings. Ensure loadCustomVisualsFromAppPackage or loadCustomVisualsFromExtension (depending on how you're embedding) is configured properly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please check official documents and community forum threads.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/power-bi-custom-visuals-organization" target="_blank"&gt;Organization visuals in Power BI - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/guidance/powerbi-implementation-planning-usage-scenario-embed-for-your-organization" target="_blank"&gt;Power BI usage scenarios: Embed for your organization - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://powerbi.microsoft.com/en-in/blog/how-to-govern-power-bi-visuals-inside-your-organization/" target="_blank"&gt;How to govern Power BI visuals inside your organization | Microsoft Power BI Blog | Microsoft Power BI&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://powerbi.microsoft.com/en-in/blog/deep-dive-in-the-organizational-custom-visuals/" target="_blank"&gt;Deep dive in the organizational custom visuals | Microsoft Power BI Blog | Microsoft Power BI&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Developer/Custom-visuals-and-embedding-options/m-p/2710379" target="_blank"&gt;Solved: Custom visuals and embedding options - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Service/Custom-Visuals-not-displaying-in-the-Power-BI-Service/m-p/4396176" target="_blank"&gt;Solved: Custom Visuals not displaying in the Power BI Serv... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If my response has resolved your query, please mark it as the Accepted Solution to assist others. Additionally, a 'Kudos' would be appreciated if you found my response helpful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 06:59:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4666062#M60723</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-04-24T06:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual Error Embedded for Customers</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4670570#M60829</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/378147"&gt;@ejQap&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you find this post helpful, please mark it as an "Accept as Solution" and consider giving a KUDOS. Feel free to reach out if you need further assistance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 10:18:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4670570#M60829</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-04-28T10:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual Error Embedded for Customers</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4670700#M60834</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1249554"&gt;@v-dineshya&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;Thanks for sharing the potential solutions.&lt;/P&gt;&lt;P class=""&gt;Unfortunately, we have explored all the options but haven't had any luck.&lt;/P&gt;&lt;P class=""&gt;We are currently working with the Microsoft support team to resolve this issue.&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt;&lt;BR /&gt;1. The custom visual was created using an R script.&lt;/P&gt;&lt;P class=""&gt;2. We faced a similar issue last year (September 2024) where the custom R visual worked fine in Power BI Service, Desktop, and Embedded for Organization, but not for customers. Microsoft eventually fixed it and stated that the issue was due to a bug in R script visuals.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 11:20:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4670700#M60834</guid>
      <dc:creator>ejQap</dc:creator>
      <dc:date>2025-04-28T11:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual Error Embedded for Customers</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4670714#M60836</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/378147"&gt;@ejQap&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Have you created support ticket for this thread?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 11:24:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4670714#M60836</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-04-28T11:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual Error Embedded for Customers</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4712812#M61503</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/378147"&gt;@ejQap&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;If you have raised a support ticket and received a resolution, please take a moment to post the details of that solution here on the forum. Sharing the fix you obtained will help others who encounter the same issue resolve it more quickly.&lt;/P&gt;
&lt;P&gt;Should you face any new challenges or have additional questions, feel free to reach out to the community we’re always here to help.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 16:59:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Custom-Visual-Error-Embedded-for-Customers/m-p/4712812#M61503</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-05-29T16:59:28Z</dc:date>
    </item>
  </channel>
</rss>

