Please note that this feature is only available if the right license has been acquired. Contact your Account Manager for more information.
Power BI with Web View Controls
A web view control is used to embed Power BI report to populate the correct POV based on the selections made in the CXO report. The URL consists of link to the Power BI app, followed by the Power BI report ID, followed by the filter for the name of the table and the dimension that is being used to embed it into CXO, which is equal to the mapping.
The following URL shows how it is used:
https://app.powerbi.com/reportEmbed?reportId=25d7baa5-f8f7-4f64-b7ed-ad30000bea26&autoAuth=true&ctid=2f3aa76a-89a8-4468-9894-2b4842b9534b&$filter=TestTable/Entity eq '[ENT].Name', where:
$filter= : Defines the filter
TestTable : Table
Entity: Field
eq : Query operator
[ENT]: Is the member for a dimension defined in a dynamic string replacement
For additional information on creating this URL, please check this documentation:
https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-create-and-manage-relationships
Override CXO POV Member Name
If a user wants to use the embedded system matching to override the CXO member name they should include the DisplayName
used in Embedded System Matches in the string. For example:
app.powerbi.com/reportEmbed?reportId=25d7baa5-f8f7-4f64-b7ed-ad30000bea26&autoAuth=true&ctid=2f3aa76a-89a8-4468-9894-2b4842b9534b&$filter=TestTable/Entity eq 'TestTable.[ENT].Name'
If the user has two tables with the same name in Power BI, they can add a second column in Source System Matches which will have a different DisplayName. For example:
A new column that uses TestTable is added, with
DisplayName
TestTable_2The URL to refer it would be:
app.powerbi.com/reportEmbed?reportId=25d7baa5-f8f7-4f64-b7ed-ad30000bea26&autoAuth=true&ctid=2f3aa76a-89a8-4468-9894-2b4842b9534b&$filter=TestTable/Entity eq 'TestTable_2.[ENT].Name'
Related: