Skip to main content

Configure Power View (Reporting service Features) on existing SharePoint 2013 Farm With BI Features (Small Farm – APP & DB)

Configuration Summary

  • Install SQL Server 2012 SP1 (SQLServer2012SP1-FullSlipstream-ENU-x64)
  • Uninstall Report Services - Native If you have installed it
  • Install Reporting Services – SharePoint & Reporting Services Add-In for SharePoint Product
  • Install Analysis Services In Tabular Mode and Data Tools
  • Install SharePoint Reporting Service
  • Install and Configure Power Pivot for SharePoint
  • Configure Performance Point Services
  • Configure Reporting Services
  • Check SharePoint Power Pivot Integration

Install SQL Server 2012 SP1 CTP3

First you need need at least SQL Server 2012 SP1 CTP 3 installed in your farm.  If not you can download and install it from here

Better if you can restart the machine after installation.

Uninstall Report Services – Native

If You have already installed Reporting services Native go to Control Panel and Uninstall SQL Server and remove the Reporting Services – Native Feature.

image

Install Reporting Services – SharePoint & Reporting Services Add-In for SharePoint Product

If you are not installed Reporting Services – SharePoint and Reporting services Add –ins

you need to run SQL Server 2012 and select Add features to an existing instance of SQL Server 2012

 image

Select Reporting Services – SharePoint and Reporting services Add –ins for SharePoint Products and Proceed

 image

Then install as Reporting Services SharePoint Integrated Mode

image

Install Analysis Services In Tabular Mode and Data Tools

If you have already installed the Analysis services uninstall in and install it in Tabular Mode.

image

image

after the installation restart the machine . (This is not mandatory)

Install SharePoint Reporting Service

Open the SharePoint Management Shell and run following commands If every thing is fine it will return no errors.

  • Install-SPRSService
  • Install-SPRSServiceProxy

image 

Note: If you come across this error you need to install SQL Server 2012 SP1 CTP3 again and restart the machine again.

Install-SPRSService : The term 'Install-SPRSService' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the

Install and Configure Power Pivot for SharePoint

Download PoverPivot for SharePoint.  (http://www.microsoft.com/en-us/download/confirmation.aspx?id=35577)

Run the setup as administrator.

image

image

After the installation you need to run the PowerPivot Configuration as a admin.

 image

image

image

Validate and run the configuration.

image

Configure Performance Point Services

Go to Central Admin and go to Manage service applications and create Performance Point Service Application.

image

When creating the Service Application make sure you inserted the Unattended Service Account.

image

ultimately check PerformancePoint Service is up and running.

image

Configure Reporting Services

Go to Central Admin and go to Manage service applications and create Reporting Service Application.

image

When you are creating make relevant web associations to  your web applications.

image

When service application created navigate to Provision Subscriptions and Alerts

image

and enter spadmin account and make in as Windows Credentials. (This account should have sysadmin permission in the Database )

image

Then make sure SQL server Agent is up and running

image

Then download the Script and execute the SQL.

image

and finally make sure SQL Server Reporting Services is running.

image

Now You are almost over.

Now you need to go to site collection and activate features

Site Collection Features

Performance Point Site Collection Feature

PowerPivot Feature Integration for Site Collections

Site Features

PerformancePoint Site Feature

SharePoint Server Enterprise site feature

Comments

Popular posts from this blog

How to Link Two List and Create a combine view in the SharePoint 2010

In this way you can join multiple list together and can create a combine view. for an example assume that you are managing a list for some events. And also you are having a participants in separate list. Thus you want to join the two list and create a composite view. SharePoint 2010 allows you to create this kind of view using  Linked Data Source. in this approach you can create your own custom list in the SharePoint. How to Create a Linked Data source Go to SharePoint designer and  go to the link called data sources. And Click the Linked Data Source button in the ribbon. Then SharePoint designer will prompt following kind of a dialog. In there add two list, that you wan to linked together. I'm adding airline schedule and booking list. those are the two list that i wan to merge. then click next. And it will guide you another screen. it will ask you to select either Merge Merge use to combine list which are having same columns definition. for and example we can say th

Motion Eye Docker compose File

Docker compose files are comes in handy when considering container orchestration. Below example shows my docker compose files and folder structure. ---- Your Folder (motioneye)   -- etc   -- lib   -- docker-compose.yaml You can run the docker compose file using docker-compose -d , and etc and lib folder will be automatically populated in the initiation. --- Below shows the content of the docker-compose.yaml file. version: '3' services:   nodered:    image: "ccrisan/motioneye:master-amd64"    container_name: motioneye    restart: always    user: root    ports:      - 8765:8765    volumes:      - "/etc/localtime:/etc/localtime:ro"      - "./etc:/etc/motioneye"      - "./lib:/var/lib/motioneye"

How to get Username , UserID in CAML Query

If you are want to get the userID you can simple use following code. <Where>    <Eq>       <FieldRef Name='userfieldname' />       <Value Type='Integer'>            <UserID Type='Integer' />       </Value>    </Eq> </Where> in here you should declare the UserID variable before it uses. normally If you make a user filter in the SharePoint designer it will automatically create the parameter in parameter binding section in the web part. <ParameterBinding Name="UserID" Location="CAMLVariable" DefaultValue="CurrentUserName"/> But assume you want to filter using a user name and the field is not a persongroup feild and it is just a text field. then you can use following query to archive it. <Where>    <Eq>       <FieldRef Name='userfieldname' />       <Value Type=’Text’>            <UserID Type=’Text’/>       </Value>    </Eq> </Wh