Hi Folks,
In this post I'll go over a simple yet powerful requirement: embedding a PowerBI report in a custom SAP UI5 Fiori application. This can be a great way to enrich your Fiori applications with rich, interactive analytics. Utilize this to create a seamless, unified user experience which puts data-driven insights right where decisions are made.
<mvc:View
controllerName="com.mycompany.powerbiapp.controller.Home"
xmlns:mvc="sap.ui.core.mvc"
xmlns="sap.m"
xmlns:core="sap.ui.core">
<Page id="page" title="INPUT_A_TITLE_HERE">
<content>
<core:HTML
id="powerBIFrame"
content='<iframe title="INPUT_A_TITLE_HERE " width="100%"
height="100%" src=" INSERT_YOUR_POWER_BI_EMBED_URL_HERE "
frameborder="0" allowFullScreen="true"></iframe>'>
</core:HTML>
</content>
</Page>
</mvc:View>
(Example from my project)
Your Fiori application will launch in a new browser tab and you should see your PowerBI report embedded within your application
(Example from my project)
I hope you found this guide useful. Feel free to leave your questions and feedback in the comments below.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
9 | |
9 | |
7 | |
7 | |
7 | |
6 | |
6 | |
5 | |
5 | |
5 |