Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Angel
Resolver III
Resolver III

Power bi embebbed doubts

Hi everyone,

 

Our company is thinking about change the way we are deploying Power bi to our customers.

 

We have a software developed on business central on premise. As a functionality to this software we distribute Power bi. The way we are doing now is modeling data in Desktop reports and publish to pbi service using domain account of our customers.  As we get more customers, it takes more time to deploy It.

 

We are thinking to change the method to Power bi embebbed. The goal is not having one report per every customer, but only one for all customers. 

 

Does anyone know if is It possible taking in consideraron that data of every customer is placed on different servers?

 

Thanks in advance,

 

 

 

1 REPLY 1
Anonymous
Not applicable

Hi,

So, I also had a very complex solution, before Dynamic DataSet binding came along. With this, our backend PowerBI service manufactures up a dataset (push) on the fly, and returns this datasetId in the token along with the requested report template and workspace.

The front end (NG9 in our case), builds the report embed configuration that includes the "dynamic datasetId binding".

 

This makes it easier to have a single report template that can be populated with data at render-time.

 

Example:

   var configany = {
            type: PowerBIEntityType[type].toLowerCase(),
            tokenType: pbi.models.TokenType.Embed,
            accessToken: entityToken.Token,
            embedUrl: entityToken.Url,
            id: entityToken.EntityId,

            // Permissions and Mode...
            permissions: pbi.models.Permissions.All,
            viewMode: viewMode,

            // -----  Adjustment required for dynamic binding ---- //
            datasetBinding: {
                datasetId: entityToken.DatasetId
            }

        };

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.