<?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 Embedding Powerbi reports into Application in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Embedding-Powerbi-reports-into-Application/m-p/117880#M4067</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I developed reports in desktop and published those reports into Azure service with creating some workspace for my reports.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For importing my local Pbix files to Azure i used microsoft provision console Application ,reports are deployed to Azure successfully and get status message with reportlink,dataset link,import id,Accesskey.&lt;/P&gt;&lt;P&gt;While at the time of integrating the reports into application using java API ,the preview of the data is not showing and getting error no data available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help from anyone and i will also &amp;nbsp;share my screen and show the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;skyid:jalla.pavankumar&lt;/P&gt;&lt;P&gt;contact No;8801262055&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Jan 2017 07:36:09 GMT</pubDate>
    <dc:creator>pavan1</dc:creator>
    <dc:date>2017-01-24T07:36:09Z</dc:date>
    <item>
      <title>Embedding Powerbi reports into Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Embedding-Powerbi-reports-into-Application/m-p/117880#M4067</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I developed reports in desktop and published those reports into Azure service with creating some workspace for my reports.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For importing my local Pbix files to Azure i used microsoft provision console Application ,reports are deployed to Azure successfully and get status message with reportlink,dataset link,import id,Accesskey.&lt;/P&gt;&lt;P&gt;While at the time of integrating the reports into application using java API ,the preview of the data is not showing and getting error no data available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help from anyone and i will also &amp;nbsp;share my screen and show the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;skyid:jalla.pavankumar&lt;/P&gt;&lt;P&gt;contact No;8801262055&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 07:36:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Embedding-Powerbi-reports-into-Application/m-p/117880#M4067</guid>
      <dc:creator>pavan1</dc:creator>
      <dc:date>2017-01-24T07:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding Powerbi reports into Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Embedding-Powerbi-reports-into-Application/m-p/119107#M4096</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/19951"&gt;@pavan1&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Is directquery mode in your case? You'll have to update the connection string in in directquery mode connecting to Azure SQL database.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is not your case, can you post the code snippet embedding report? I use below sample to embedded report in Javascript and it works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;html&amp;gt;

 &amp;lt;script src="https://microsoft.github.io/PowerBI-JavaScript/demo/bower_components/jquery/dist/jquery.js"&amp;gt;&amp;lt;/script&amp;gt;  
 &amp;lt;script src="https://microsoft.github.io/PowerBI-JavaScript/demo/bower_components/powerbi-client/dist/powerbi.js"&amp;gt;&amp;lt;/script&amp;gt;
  
&amp;lt;script type="text/javascript"&amp;gt;
window.onload = function () {
 
var embedConfiguration = {
    type: 'report',
    accessToken: 'eyJ0eXxxxxxxxxxxxTPrKUTmxWApYaTSonFJ5kM',
    id: '8e84xxxxxxxxxxxxxxxxxe07a6823ca9',
    embedUrl: 'https://embedded.powerbi.com/appTokenReportEmbed?reportId=8e84b28d-xxxxxxxxxx07a6823ca9'	 
}; 

var $reportContainer = $('#reportContainer');
 
var report = powerbi.embed($reportContainer.get(0), embedConfiguration); 
}
&amp;lt;/script&amp;gt;

&amp;lt;div id="reportContainer"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Jan 2017 10:31:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Embedding-Powerbi-reports-into-Application/m-p/119107#M4096</guid>
      <dc:creator>Eric_Zhang</dc:creator>
      <dc:date>2017-01-26T10:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding Powerbi reports into Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Embedding-Powerbi-reports-into-Application/m-p/736884#M19946</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/19951"&gt;@pavan1&lt;/a&gt;&amp;nbsp;:&amp;nbsp; Is this issue posted solved?. If yes can you tell me steps please&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2019 20:49:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Embedding-Powerbi-reports-into-Application/m-p/736884#M19946</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-10T20:49:48Z</dc:date>
    </item>
  </channel>
</rss>

