<?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 Api approach for dynamic report generation in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2510099#M36058</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I am using a Power Bi Premium license, but the scope of my project is to create a model (o more than one if necessary), link SQL sources to the model and generate reports/dashboard for various customers in order to view the processed data. Customer must view data from their related DB connection (they are isolated, not a common one).&lt;BR /&gt;&lt;BR /&gt;Also, I want to make available the model (or a copy of that) to the customer in order to use it in his own Power BI Desktop. The connection details will be sent separately if necessary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this moment I am using the Post Dataset API to generate model and connection, but since that his model cannot be shareable between API and power BI Desktop, can i generate the model dynamically in PBIX format, upload it in the solution with Post Import API and use it in both ways (dashboard API and Desktop)?&lt;BR /&gt;&lt;BR /&gt;Also, last question: for this approach, is it required to use a Power BI Premium license for our account that will contain the workspace for all application' models and connections?&lt;/P&gt;</description>
    <pubDate>Thu, 12 May 2022 09:21:58 GMT</pubDate>
    <dc:creator>ms92ita</dc:creator>
    <dc:date>2022-05-12T09:21:58Z</dc:date>
    <item>
      <title>Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2502453#M35989</link>
      <description>&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am developing a solution to my software that creates a dedicated Azure SQL server database for each customer and binds a dataset for each DB in DirectMode query mode with the connection string for the DB.&lt;BR /&gt;In order to test it, I have already created dynamically the dataset from API with relations and tabes defined with DefaultMode as Streaming (I am using the official nuget library), but when I am trying to use it from my local Power BI Desktop instance I have this error:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ms92ita_0-1652107530875.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711472iD91C4E38510484E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ms92ita_0-1652107530875.png" alt="ms92ita_0-1652107530875.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dataset creation code is the following:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;var createDataSet = new CreateDatasetRequest();
createDataSet.Name = "azuredb";
var clientCnt = new SqlConnectionStringBuilder();
clientCnt.DataSource = "tcp:azureserver.database.windows.net,1433";
clientCnt.InitialCatalog = "azuredb";
clientCnt.UserID = "XXXXXXXXXXXX";
clientCnt.Password = "XXXXXXXXXXXX";
clientCnt.Encrypt = true;
clientCnt.ConnectTimeout = 30;
clientCnt.PersistSecurityInfo = true;
clientCnt.MaxPoolSize = 6000;
createDataSet.DefaultMode = DatasetMode.Streaming;

createDataSet.Datasources = new List&amp;lt;Datasource&amp;gt;()
{
	new Datasource()
	{
		DatasourceType = "Sql",
		ConnectionString = clientCnt.ToString(),
		Name = "azuredb",
		ConnectionDetails = new DatasourceConnectionDetails
		{
			Server = "azuredb",
			Database = "tcp:azureserver.database.windows.net,1433",
		},
	}
};

//code for tables and relationships

client.Datasets.PostDataset(groupid, createDataSet);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 15:01:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2502453#M35989</guid>
      <dc:creator>ms92ita</dc:creator>
      <dc:date>2022-05-09T15:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2505220#M36014</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/387570"&gt;@ms92ita&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I never used this SDK, but I believe you are calling the &lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/push-datasets/datasets-post-dataset-in-group" target="_blank" rel="noopener"&gt;Post Dataset&lt;/A&gt; API.&lt;BR /&gt;This API creates a live connections dataset / push dataset / streaming dataset.&lt;BR /&gt;&lt;BR /&gt;You will not be able to connect to a Streaming Dataset from Power BI Desktop.&lt;BR /&gt;This dataset is not an actual tabular model. It is a temporary cache, used only with Power BI Dashboards, that should be actively fed with pushed data.&lt;BR /&gt;&lt;BR /&gt;In order to create a Direct Query (DQ) dataset, you will need to implement another approach.&lt;BR /&gt;&lt;BR /&gt;If you use Power BI Premium (dedicated capacity / PPU license), the best course of action will be to use the &lt;A href="https://docs.microsoft.com/en-us/analysis-services/tom/install-distribute-and-reference-the-tabular-object-model?view=asallproducts-allversions" target="_blank" rel="noopener"&gt;AMO-TOM Assemblies&lt;/A&gt; to create the DQ dataset as an Analysis Services database.&lt;BR /&gt;&lt;BR /&gt;If you do not use&amp;nbsp;Power BI Premium, you will need to call the &lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/imports/post-import-in-group" target="_blank" rel="noopener"&gt;Post Import&lt;/A&gt;&amp;nbsp;and &lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/imports/get-import-in-group" target="_blank" rel="noopener"&gt;Get Import&lt;/A&gt; APIs to upload an actual PBIX file (you may prefer to save it as a serialized base64 string). After the upload, you can use the &lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/datasets/update-datasources-in-group#datasource" target="_blank" rel="noopener"&gt;Update Datasources&lt;/A&gt; or &lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/datasets/update-parameters-in-group" target="_blank" rel="noopener"&gt;Update Parameters&lt;/A&gt; APIs to change the connection strings.&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 14:39:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2505220#M36014</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-05-10T14:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2510099#M36058</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I am using a Power Bi Premium license, but the scope of my project is to create a model (o more than one if necessary), link SQL sources to the model and generate reports/dashboard for various customers in order to view the processed data. Customer must view data from their related DB connection (they are isolated, not a common one).&lt;BR /&gt;&lt;BR /&gt;Also, I want to make available the model (or a copy of that) to the customer in order to use it in his own Power BI Desktop. The connection details will be sent separately if necessary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this moment I am using the Post Dataset API to generate model and connection, but since that his model cannot be shareable between API and power BI Desktop, can i generate the model dynamically in PBIX format, upload it in the solution with Post Import API and use it in both ways (dashboard API and Desktop)?&lt;BR /&gt;&lt;BR /&gt;Also, last question: for this approach, is it required to use a Power BI Premium license for our account that will contain the workspace for all application' models and connections?&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 09:21:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2510099#M36058</guid>
      <dc:creator>ms92ita</dc:creator>
      <dc:date>2022-05-12T09:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2510708#M36061</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/387570"&gt;@ms92ita&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;In order to allow users to see shared reports&amp;nbsp;in the PBI Service and connect to shared datasets using PBI desktop,&amp;nbsp;each user must have a user-principal in AAD.&lt;BR /&gt;A user-principal can be created in the AAD tenant, or invited from outside the AAD tenant (using Azure B2B which has some limitations- Those will lead to a suboptimal user experience with Power BI Service &amp;amp; Desktop, so you should avoid them).&lt;BR /&gt;For this approach you have two options:&lt;BR /&gt;1. Each user-principal must have a Power BI license (Pro/PPU).&lt;BR /&gt;2. You'll need to purchase a premium dedicated capacity which allows free users access to the&amp;nbsp;reports and datasets.&lt;BR /&gt;&lt;BR /&gt;Since you need to create DQ datasets, you should use a template &lt;SPAN&gt;PBIX file, upload it with the&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;Post Import API then change the connection using the&amp;nbsp;Update Datasources&amp;nbsp;or&amp;nbsp;Update Parameters&amp;nbsp;APIs.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;You also have APIs for managing permissions, creating workspaces (one per customer for example. you can use the same premium dedicated capacity for all of them), duplicating reports, and binding reports to datasets. You also have some API control over dashboards, but they are more difficult to manage.&lt;BR /&gt;&lt;BR /&gt;If you need to use a different dataset per customer, you should consider &lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/embedded/embedded-analytics-power-bi" target="_blank" rel="noopener"&gt;Power BI Embedded&lt;/A&gt;. It may better suit your needs (e.g, &lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/embedded/embed-dynamic-binding" target="_blank" rel="noopener"&gt;dynamic binding&lt;/A&gt;).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png" style="width: 715px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711619iA3C59484475D25E7/image-dimensions/715x89?v=v2" width="715" height="89" role="button" title="2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png" alt="2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Data-Stories-Gallery/Contoso-by-SpartaBI/m-p/2449543" target="_blank" rel="noopener"&gt;Showcase Report – Contoso By SpartaBI&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_3-1652115470761.png" style="width: 38px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711537i57E282CEF16AF77E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_3-1652115470761.png" alt="SpartaBI_3-1652115470761.png" /&gt;&lt;/span&gt;&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;A href="https://www.linkedin.com/company/spartabi" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_1-1652115142093.png" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711533iCE1E1AF766A75463/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_1-1652115142093.png" alt="SpartaBI_1-1652115142093.png" /&gt;&lt;/span&gt;&lt;/A&gt; &amp;nbsp;&amp;nbsp;&lt;A href="https://www.facebook.com/SpartaBI" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_2-1652115154505.png" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711534iDB100AFD2EE08B6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_2-1652115154505.png" alt="SpartaBI_2-1652115154505.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Full-Logo11.png" style="width: 201px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711538iD2F894AC65E27C4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Full-Logo11.png" alt="Full-Logo11.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 13:32:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2510708#M36061</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-05-12T13:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2510777#M36064</link>
      <description>&lt;P&gt;For, us the better approach is the shared template with the "Embedding for your organization" mode. Basically, we do not want to allow access to the database so the second approach is better and all our acesses to the API are with the app registration identity from AD (we are already using it for ARM management in Azure).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, can we create dynamically a PBIX file with all tables/relations without Power BI Desktop? This is beacuse, if we need to change table definitions, this is not easy to change multiple datasets one by one&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 15:46:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2510777#M36064</guid>
      <dc:creator>ms92ita</dc:creator>
      <dc:date>2022-05-12T15:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2511541#M36071</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/387570"&gt;@ms92ita&lt;/a&gt;,&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt;In theory, you can try to create the PBIX dynamically by hacking the file, but this is not supported nor documented.&lt;BR /&gt;An easier way will be to use &lt;A href="https://www.sqlbi.com/tools/tabular-editor/" target="_blank" rel="noopener"&gt;Tabular Editor&lt;/A&gt; to manipulate PBIX/PBIT files using C# (it has CLI support).&lt;BR /&gt;&lt;BR /&gt;Note that the&amp;nbsp;Post Import API allows you to overwrite all the existing copies of a dataset. If you plan to create multiple models per customer- This is usually redundant since you should be able to consolidate the logic in a single model (you can consider creating perspectives in the model for a better user experience during report authoring).&lt;BR /&gt;&lt;BR /&gt;If you use a PPU or a premium capacity, I strongly suggest you use the&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/analysis-services/tom/install-distribute-and-reference-the-tabular-object-model?view=asallproducts-allversions" target="_blank" rel="nofollow noopener noreferrer"&gt;AMO-TOM Assemblies&lt;/A&gt;&lt;BR /&gt;This will allow you to create/change any dataset structure dynamically (You'll have access to the object model).&lt;BR /&gt;&lt;BR /&gt;If you are implementing Embedding for your organization without PPU or premium capacity, you can consider using an embedded capacity (A SKU) just to have programmatic access during the datasets changes. You can start/stop the embedded capacity and assign/unassign it to a workspace programmatically.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png" style="width: 715px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711619iA3C59484475D25E7/image-dimensions/715x89?v=v2" width="715" height="89" role="button" title="2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png" alt="2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Data-Stories-Gallery/Contoso-by-SpartaBI/m-p/2449543" target="_blank" rel="noopener"&gt;Showcase Report – Contoso By SpartaBI&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_3-1652115470761.png" style="width: 38px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711537i57E282CEF16AF77E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_3-1652115470761.png" alt="SpartaBI_3-1652115470761.png" /&gt;&lt;/span&gt;&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;A href="https://www.linkedin.com/company/spartabi" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_1-1652115142093.png" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711533iCE1E1AF766A75463/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_1-1652115142093.png" alt="SpartaBI_1-1652115142093.png" /&gt;&lt;/span&gt;&lt;/A&gt; &amp;nbsp;&amp;nbsp;&lt;A href="https://www.facebook.com/SpartaBI" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_2-1652115154505.png" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711534iDB100AFD2EE08B6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_2-1652115154505.png" alt="SpartaBI_2-1652115154505.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Full-Logo11.png" style="width: 201px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711538iD2F894AC65E27C4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Full-Logo11.png" alt="Full-Logo11.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 05:53:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2511541#M36071</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-05-13T05:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2529893#M36229</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now I have created 2-3 reports from Power BI Desktop and I have already retrieved visuals and dashboards from the javascript library and token generation from the c# library in order to get the correct EmbedUrl.&lt;BR /&gt;Now, can I create multiple datasets dynamically (Direct Query and SQL server) with Power BI API library and then view the reports' dashboard with the correct dataset ID depending on the customer?&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2022 15:44:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2529893#M36229</guid>
      <dc:creator>ms92ita</dc:creator>
      <dc:date>2022-05-20T15:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2530155#M36232</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/387570"&gt;@ms92ita&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I'm not sure that I understand your question.&lt;BR /&gt;Do you have a couple of reports, published to the Power BI Service, connected to a DQ dataset that points to a sample customer?&lt;BR /&gt;I assume you mean reports (not dashboards).&amp;nbsp;right? Dashboards are much more limiting from a programmatic point of view.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You'll need to create the additional datasets using&amp;nbsp;the&amp;nbsp;Post Import API and then change the connections using the&amp;nbsp;Update Datasources&amp;nbsp;or&amp;nbsp;Update Parameters&amp;nbsp;APIs.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;This will allow customers to connect using Power BI Desktop and allow you to use&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/embedded/embed-dynamic-binding" target="_blank" rel="noopener"&gt;dynamic binding&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;in order to present the reports with the right data content to users connecting to your application (using the dataset ID).&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="In case it answered your question, please accept the solution to help other members find it. Appreciate Your Kudos." style="width: 715px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/718290i8B8BA878BC298708/image-dimensions/715x89?v=v2" width="715" height="89" role="button" title="2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png" alt="2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Data-Stories-Gallery/Contoso-by-SpartaBI/m-p/2449543" target="_blank" rel="noopener"&gt;&lt;FONT size="4" color="#0000EE"&gt;Showcase Report – Contoso By SpartaBI&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI website" style="width: 38px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711537i57E282CEF16AF77E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_3-1652115470761.png" alt="SpartaBI_3-1652115470761.png" /&gt;&lt;/span&gt;&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;A href="https://www.linkedin.com/company/spartabi" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI Linkdin" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711533iCE1E1AF766A75463/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_1-1652115142093.png" alt="SpartaBI_1-1652115142093.png" /&gt;&lt;/span&gt;&lt;/A&gt; &amp;nbsp;&amp;nbsp;&lt;A href="https://www.facebook.com/SpartaBI" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI Facebook" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711534iDB100AFD2EE08B6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_2-1652115154505.png" alt="SpartaBI_2-1652115154505.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI Logo" style="width: 156px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711538iD2F894AC65E27C4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Full-Logo11.png" alt="Full-Logo11.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2022 18:23:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2530155#M36232</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-05-20T18:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2532832#M36260</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;my request was for reports. Since that a report can be accessible&amp;nbsp;from several customers at the same time, in order to accomplish my requirements do I have to prepare multiple datasets (one for each customer because of different connection credentials) and then generate the embed token with the correct dataset ID at runtime per customer?&lt;BR /&gt;Probably using a single dataset and update credentials from API is not the best solution.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 09:47:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2532832#M36260</guid>
      <dc:creator>ms92ita</dc:creator>
      <dc:date>2022-05-23T09:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2533828#M36268</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/387570"&gt;@ms92ita&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Yes. You should create a dataset for each customer and then generate an embed token with the right DatasetID.&lt;BR /&gt;In addition, you should add the following to the config object:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;datasetBinding: {
   datasetId: "&amp;lt;DatasetId&amp;gt;"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/embedded/embed-dynamic-binding" target="_blank" rel="noopener nofollow noreferrer"&gt;dynamic binding&lt;/A&gt;&amp;nbsp;and &lt;A href="https://docs.microsoft.com/en-us/javascript/api/overview/powerbi/bind-report-datasets" target="_blank" rel="noopener"&gt;bind datasets dynamically to a report&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="In case it answered your question, please accept the solution to help other members find it. Appreciate Your Kudos." style="width: 715px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/718290i8B8BA878BC298708/image-dimensions/715x89?v=v2" width="715" height="89" role="button" title="2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png" alt="2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Data-Stories-Gallery/Contoso-by-SpartaBI/m-p/2449543" target="_blank" rel="noopener"&gt;&lt;FONT size="4" color="#0000EE"&gt;Showcase Report – Contoso By SpartaBI&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI website" style="width: 38px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711537i57E282CEF16AF77E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_3-1652115470761.png" alt="SpartaBI_3-1652115470761.png" /&gt;&lt;/span&gt;&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;A href="https://www.linkedin.com/company/spartabi" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI Linkdin" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711533iCE1E1AF766A75463/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_1-1652115142093.png" alt="SpartaBI_1-1652115142093.png" /&gt;&lt;/span&gt;&lt;/A&gt; &amp;nbsp;&amp;nbsp;&lt;A href="https://www.facebook.com/SpartaBI" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI Facebook" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711534iDB100AFD2EE08B6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_2-1652115154505.png" alt="SpartaBI_2-1652115154505.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI Logo" style="width: 156px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711538iD2F894AC65E27C4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Full-Logo11.png" alt="Full-Logo11.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 15:30:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2533828#M36268</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-05-23T15:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2535815#M36293</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I have done these steps:&lt;BR /&gt;&lt;BR /&gt;1) create a copy of the dataset from a .pbix template (PostImportWithFileInGroup from c# API)&lt;/P&gt;&lt;P&gt;2) update datasource settings of new dataset in order to point to the right database (UpdateDatasourcesInGroup from c# API): at the moment, the databases are in the same server so credentials are valid&lt;/P&gt;&lt;P&gt;3) generate a token for the report with both original and new dataset with this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;                var pbiReport = client.Reports.GetReport(groupid, reportid);

                EmbedToken embedToken;
                // Create list of dataset
                var datasetIds = new List&amp;lt;Guid&amp;gt;();

                // Add dataset associated to the report
                datasetIds.Add(Guid.Parse(pbiReport.DatasetId));

                // Append additional dataset to the list to achieve dynamic binding later
                datasetIds.Add(Guid.Parse(newreportid));

                // Get Embed token multiple resources
                var tokenRequest = new GenerateTokenRequestV2(
                    reports: new List&amp;lt;GenerateTokenRequestV2Report&amp;gt;() { new GenerateTokenRequestV2Report(reportid) },
                    datasets: datasetIds.Select(datasetId =&amp;gt; new GenerateTokenRequestV2Dataset(datasetId.ToString())).ToList(),
                    targetWorkspaces: groupid != Guid.Empty ? new List&amp;lt;GenerateTokenRequestV2TargetWorkspace&amp;gt;() { 
                        new GenerateTokenRequestV2TargetWorkspace(groupid)
                    } : null
                );
                // Generate Embed token
                embedToken = client.EmbedToken.GenerateToken(tokenRequest);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4) create report view from JS with the correct report id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;        const config = {
            type: 'report',
            tokenType: models.TokenType.Embed,
            accessToken: accessToken,
            embedUrl: embedUrl,
            id: embedReportId,
            datasetBinding: {
                datasetId: "newdatasetid", // The dataset id that you want the report to use 
            },
            datasetId: "newdatasetid",
            permissions: models.Permissions.All,
            settings: {
                // Enable this setting to remove gray shoulders from embedded report
                // background: models.BackgroundType.Transparent,
                panes: {
                    filters: {
                        expanded: false,
                        visible: true
                    },
                    pageNavigation: {
                        visible: true
                    }
                }
            }
        };

        // Embed the dashboard and display it within the div container.
        const report = powerbi.embed(embedContainer, config);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;The report is blank. Also, filter visuals are empty&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ms92ita_0-1653386553730.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/720628iCA8441251A4FEE63/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ms92ita_0-1653386553730.png" alt="ms92ita_0-1653386553730.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;From console, I have seen that a call has 403 result&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ms92ita_1-1653386605449.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/720629i62B30859A298B616/image-size/large?v=v2&amp;amp;px=999" role="button" title="ms92ita_1-1653386605449.png" alt="ms92ita_1-1653386605449.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;UPDATE:&lt;BR /&gt;&lt;BR /&gt;i have refreshed credentials from the gateway with&amp;nbsp;UpdateDatasource and not it seems to work fine. I will try later with multiple binding but probably the circle has been closed&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 10:30:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2535815#M36293</guid>
      <dc:creator>ms92ita</dc:creator>
      <dc:date>2022-05-24T10:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2536404#M36295</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/387570"&gt;@ms92ita&lt;/a&gt;&amp;nbsp;great, so please accept all the messages that helped you as solutions, and will appreciate your kudos on them&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 13:34:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2536404#M36295</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-05-24T13:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2536617#M36298</link>
      <description>&lt;P&gt;Last question related to the initial visual of a report: in some pages, I have a dropdown filter that&amp;nbsp;that acts on the graphs and is populated by a table.&lt;BR /&gt;I have noticed that in first stage the dropdown views the "default" value even if I am using an another dataset. Dropdown values after loading are correct. How can I avoid default value or overwrite it in the first instance (for example empty value)?&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 14:32:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2536617#M36298</guid>
      <dc:creator>ms92ita</dc:creator>
      <dc:date>2022-05-24T14:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Api approach for dynamic report generation</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2537310#M36309</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/387570"&gt;@ms92ita&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I believe you mean a slicer:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_0-1653421530386.png" style="width: 200px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/721021iF766A2ABAA916410/image-size/small?v=v2&amp;amp;px=200" role="button" title="SpartaBI_0-1653421530386.png" alt="SpartaBI_0-1653421530386.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Not a filter:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_1-1653421554611.png" style="width: 200px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/721022i9A0F21EB77A9F6F9/image-size/small?v=v2&amp;amp;px=200" role="button" title="SpartaBI_1-1653421554611.png" alt="SpartaBI_1-1653421554611.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;In any case, you have a couple of options:&lt;BR /&gt;1. Programatically set the initial slicer selection for each user in your embedded application. See:&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/javascript/api/overview/powerbi/control-report-slicers#set-slicer-state" target="_blank" rel="noopener"&gt;Set Slicer State&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/javascript/api/overview/powerbi/control-report-filters#update-filters" target="_blank" rel="noopener"&gt;Update Filters&lt;/A&gt;&lt;BR /&gt;2. Save the initial report with a "select all" option. For a slicer, you can add it in the visualization pane:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI_2-1653421711920.png" style="width: 200px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/721024i2DFB98DAB754AF92/image-size/small?v=v2&amp;amp;px=200" role="button" title="SpartaBI_2-1653421711920.png" alt="SpartaBI_2-1653421711920.png" /&gt;&lt;/span&gt;&lt;BR /&gt;3. Add the same slicer value to all SQL DBs (such as "Default", "Choose a Value" etc...) and save the report with this value. You can adjust the model so that selecting the value presents nothing or presents actual default data relevant to each customer.&lt;BR /&gt;4. Technically, you can also save the report with a slicer value that will not appear in any SQL DBs (like "Choose a Value"). No data will be presented and once the user will unselect the value it will disappear from the slicer. I wouldn't recommend this approach since it is kind of a hack and harder to maintain.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="In case it answered your question, please accept the solution to help other members find it. Appreciate Your Kudos." style="width: 715px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/718290i8B8BA878BC298708/image-dimensions/715x89?v=v2" width="715" height="89" role="button" title="2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png" alt="2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Data-Stories-Gallery/Contoso-by-SpartaBI/m-p/2449543" target="_blank" rel="noopener"&gt;&lt;FONT size="4" color="#0000EE"&gt;Showcase Report – Contoso By SpartaBI&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI website" style="width: 38px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711537i57E282CEF16AF77E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_3-1652115470761.png" alt="SpartaBI_3-1652115470761.png" /&gt;&lt;/span&gt;&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;A href="https://www.linkedin.com/company/spartabi" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI Linkdin" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711533iCE1E1AF766A75463/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_1-1652115142093.png" alt="SpartaBI_1-1652115142093.png" /&gt;&lt;/span&gt;&lt;/A&gt; &amp;nbsp;&amp;nbsp;&lt;A href="https://www.facebook.com/SpartaBI" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visit SpartaBI Facebook" style="width: 30px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711534iDB100AFD2EE08B6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpartaBI_2-1652115154505.png" alt="SpartaBI_2-1652115154505.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.spartabi.com" target="_blank" rel="noopener"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpartaBI Logo" style="width: 156px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/711538iD2F894AC65E27C4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Full-Logo11.png" alt="Full-Logo11.png" /&gt;&lt;/span&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 21:19:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Api-approach-for-dynamic-report-generation/m-p/2537310#M36309</guid>
      <dc:creator>SpartaBI</dc:creator>
      <dc:date>2022-05-24T21:19:16Z</dc:date>
    </item>
  </channel>
</rss>

