Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member

1.     Abstract

Sometimes it is necessary that we can embed our dashboard as a BSP Application. So that user/client gets the BI reports and dashboards all together in a single portal.

We know that dashboard which is built with SAP NW Connection in Xcelsius, it is directly published on EP Portal with iView.

But for the dashboard which is built with different connection like web-services, it is not directly published on EP Portal. We have to embed the swf of the dashboard in a BSP application and then publish it on EP.

2.     Creating a BSP application

For creating a BSP application, go to SE80 t-code. Select package and user name.

Follow the below navigation:

3.  Creating a page and importing swf in a BSP application

To create a page in a BSP application which we have developed in step 2:

In the Layout, enter the following code:

<%@page language="abap"%><%@extension name="htmlb" prefix="htmlb"%>

<htmlb:content design=
"design2003">
  <htmlb:page
title = "Dashboard">
<htmlb:form>
<object>
<embed src=
"demo.swf" quality="high" bgcolor="#869ca7"
width=
"100%" height="100%" name="test_page" align="middle"play="true"
loop=
"false" quality="high" allowScriptAccess="sameDomain"
type=
"application/x-shockwave-flash"
pluginspage=
"http://www.adobe.com/go/getflashplayer">
</embed>
</object>
</htmlb:form>
</htmlb:page>
</htmlb:content>

Note: Change the demo.swf file with your swf's name.

Import the swf of the dashboard using below navigation:

Choose the swf location and then press OK.

Then activate the BSP application.

Then test the display.html by right clicking on that.

You will able to see dashboard in browser.

Hope this helpful !!!

Regards,

Niket Talati

10 Comments
Labels in this area