3

We have a powerview report (.rdlx) created in sharepoint and is accessible from sharepoint. My objective is to create a .aspx page and call the powerview report in it. I can do it using iframe but thats not what I want. In iframe, the menu ribbon and the grey background of the sharepoint is also visible.

Is there any other way to call a powerview report using server name and report path as in report viewer control for ssrs reports ? I want to show just the report.

Thanks

S. Swaroop
  • 411
  • 1
  • 6
  • 17

1 Answers1

1

When you click on rdlx report in Sharepoint, it opens Power View in presentation mode. You can grab that URL and use it. For another report you'll need to pass rdlx ID instead of the name. Or you can view html source and see how Power View is embedded into the page.

user1578107
  • 645
  • 1
  • 5
  • 9
  • You can also manage how the view behaves using URL parameters, much like in SSRS. See here for details: http://denglishbi.wordpress.com/2012/06/13/url-actions-with-reporting-services-power-view-rtm/ – GShenanigan Dec 19 '12 at 13:50