Re: Power BI Embed - no menu available
Re: Power BI Embed - no menu available
As I said in this case it is your resposibility to recreate these functions.
Re: Power BI Embed - no menu available
Also when I 'Secure Embed' within an iframe there is no menu available either. It only shows the filter pane.
problems with the Power BI embedded today
Hi everyone!
Does anybody have problems with the Power BI embedded today? I can´t load the dashboards. I tried to restart the service on Azure, when I access the Power BI capacity on Azure, the screen get freeze.
Thanks,
Lawrence
Re: problems with the Power BI embedded today
Yes, same problem here in Brazil (São Paulo).
Re: problems with the Power BI embedded today
You could check the Issues forum here:
https://community.powerbi.com/t5/Issues/idb-p/Issues
And if it is not there, then you could post it.
If you have Pro account you could try to open a support ticket. If you have a Pro account it is free. Go to https://support.powerbi.com. Scroll down and click "CREATE SUPPORT TICKET".
Re: problems with the Power BI embedded today
Thank you
APP registration - API permissions
Hi,
Regarding registration of an App in Azure AD through below power-bi App registration tool.
https://docs.microsoft.com/en-us/power-bi/developer/embedded/register-app
From governance and security perspective, want to know what each of API permissions are for. any documentation/pointers explaining each API access/permission scope would be helpful.
I believe APP that should be registered is the workspace which becomes APP once published..
By granting " Read and Write All data sets" .. would this application and developer signed in get read/write access to all data sets of all work spaces in the tenant or only the data sets of the App/workspace being registered?
Similarly, other permissions like "Read and Write all workspaces/dashboards" ??
By name it sounds like developer registering the app would get access through API to all data sets/reports/dashboards when those respective permissions are given. But wondering why one should have access to other workspaces/datasets outside his App/workspace which is being registered?
Re: how to change embed-token duration
Hi
I checked the corresponding rest API but not found any related option to allow you to increase the expiry time of the token. So I think you can't directly use this rest API to achieve your requirement.
For your scenarios, I think you can research in two directions.
First, power bi embed tokens are generated from the azure side. AFAIK, azure has a token lifetime configuration menu for its tokens, you can check them to confirm if they provide the options to modify the lifetime of embed tokens.
Configurable token lifetimes in Microsoft identity platform (Preview)
Second, you can consider using programming codes to achieve auto-replace expired tokens to indirectly increase the embed contents usage lifetimes. (e.g. stored respond token and expired time into the session or other variables, then you can add a looping timer to check if this token expired and re-invoke the generated token API to get the new token for the following usage)
Hope above helps for your requirement.
Regards,
Xiaoxin Sheng
Re: UpdateDatasourcesInGroup on a v3 datasource / dataset does not work -- need to change connection
HI
Did you find a solution ? I am facing same issue now. Please share you approach. Thanks
Re: full screen mode icon is missing with Iframe secured power bi
Any news? Struggling as well
Dataset doesn't contain a datasource that matches selector #1 exception
I develop Power BI Embed reports project and it has ever worked fine before since I update Power BI desktop when I modify some reports and publish it to Power BI workspace.
Now when my updated Embed report is clone to new workspace and try to update with new DB connection string.
this API method is broken it cannot update DB connectionstring and marked is obsoleted.
"await client.Datasets.SetAllDatasetConnectionsInGroupAsync(GroupId, dataset.Id, connDetail)"
The error throws something like this
"{"error":{"code":"PowerBIUpdateMetadataUnsupportedModelWithV3DataSourceException","pbi.error":{"code":"PowerBIUpdateMetadataUnsupportedModelWithV3DataSourceException","parameters":{},"details":[],"exceptionCulprit":1}}"
So I try to fix my codes to use new Microsoft.PowerBI.Api version 3.14.0.0 by updating NuGet Package and try to use this new method in the example below but it still does not work and the new error throw instead
"{"error":{"code":"ItemNotFound","message":"Dataset doesn't contain a datasource that matches selector #1"}}"
My some codes example:
var datasourcesRequest = new UpdateDatasourcesRequest()
{
UpdateDetails = updateDataSourceDetails
};
try
{
await client.Datasets.UpdateDatasourcesInGroupAsync(groupId, dataset.Id, datasourcesRequest);
}
catch (HttpOperationException exHttp)
{
_logger.LogError(exHttp, exHttp.Response.Content);
}
Any helps would be appreciate, Thanks in advance.
Perform calculation on data from Forms before pushing to Power BI
I want to make a Power BI application that displays data provided from the inputs of a Form. However, I want to perform some calculations on the data provided by the form before providing it to Power BI. Specifically, I want to sum and devide some specific cells in the form.
Is there any Power Automate functionality that does this?
Is it possible (or best) to do this in Power BI? I was only able to perform simple calculations on whole coloumns, not specific cells here.
Safe to say I'm a beginner to Power BI and Power apps in general, so any help is appreciated.
SelectionManager and JsonFilter not work in the same Custom Visual
Hi,
in my custom visual I need to alternatively use the SelectionManager and the JsonFilter. To make the JsonFilter work I added the following lines to capabilities.json:
"filter": { "type": { "filter": true } }
The JsonFilter works fine but the SelectionManager has stopped working. Removing the configuration the SelectionManager works correctly. Is this the behavior I should expect? Is there a way to make SelectionManager and JsonFilter work together? Thank You Regards,
Giovanni
Report Page as Tooltip blank in Embedded (Size of Div Tag Issue?)
Is there a known issue with using a Report Page as a tooltip with Power BI Embedded? Depending on the size of the dynamic size of the Div tag using Material UI the tooltip will display but will be blank other sizes seems to work, but cuts off the text. The tooltips work in the Service and always display.
Re: Perform calculation on data from Forms before pushing to Power BI
These transforms can be safely done in Power BI (Power Query, to be precise). No need to use Power Automate unless you really want to.
Custom Developer Visual is empty, but when uploading package it works
Hi Folks
In a previous post , I asked how to customize an existing Power BI.
First I had problems compiling the whole project. But with the help of this Community I was able to compile the project, after I downgraded.
But now I have another problem. I can't see anything when using the Developer Visual. Even if I insert the right fields nothing happens.
But when I package the Visual and upload it, it works fine.
What could be the problem of this?
Edit: There are no errors in any Browser console
Thanks in advance
Hekuran
Power Bi embedded - interaction through dataSelected event
hello,
I'm trying to implement interaction between my app and embedded power bi raport. I've seen demos with dataSelected event but this all seems to be insufficent.
Let's say I have a table that shows users: user name and some aggregated data. I click on user name and through dataSelected event I can get 'user name' value and nothing more. Using 'user name' as a key to do something on my app side is not acceptable. I need userId. I don't want to put userId as a column in table visual.
Is there any way to pass something 'extra' with dataSelected event? Not only value that was clicked.
best regards,
JJ
Power BI Custom Visual - Interaction with Matrix Visual
Hi All,
Considering a report that has a Power BI Matrix Visual, would it be possible to develop a Custom Visual that would know which level in the hierarchy was selected by the user? Or can I only do it by checking the highlighted values?
Thanks in advance for any feedback you could provide me.
Re: Power BI Custom Visual - Interaction with Matrix Visual
Also, ISINSCOPE is useful for this.