1
votes

Customer can only see their data through this web application which is on azure ad domain. If I embed Power BI to the web application is it possible to embed the power bi web designer as well?

Just trying to find a way to use embedded without giving the user direct access to the cubes and db from their Power BI desktop.

1

1 Answers

1
votes

You can embed the report in View or in Edit modes. Probably the later one is what you are looking for. See Embed Configuration Details for more details.

var embedConfig = {
  ...
  permissions: models.Permissions.All
  viewMode: models.ViewMode.Edit

You can also switch from view to edit mode and vise versa with following code:

report.switchMode("edit");
report.switchMode("view");