RSS

Step by Step: Install, configure, and Deploy Project Server 2013 – Part 5: Deploy Project Web App with a new site collection – Project Server 2013

01 Mar

This is the Fifth and Final part for Step by Step: Install, configure, and Deploy Project Server 2013 Article,

Article Content’s Index:

  1. Part 1: Overview and Prepare for a deployment of Project Server 2013
  2. Part 2: Install and Configure Project Server 2013
  3. Part 3: Configure Project Server 2013 Application Service
  4. Part 4: Deploy Project Web App with a new site collection – Project Server 2013
  5. Part 5: Deploy Project Web App in an existing site collection – Project Server 2013

Deploy Project Web App in an existing site collection – Project Server 2013

For this post I create a Web Application with Top-Level Site collection. In Top-Level site, there is no link for PWA Setting in Site Action Menu. We want to enable PWA for this site collection

image

Deploying an instance of Project Web App to an existing site collection consists of the following:

  1. Enable the Project Web App site collection features
  2. Create a Project Web App site in an existing site collection

These steps will be created using PowerShell Script.

Enable the Project Web App site collection features

Enabling the Project Web App site collection features adds additional functionality to the site collection that allows you to import SharePoint list projects into Project Web App.

  1. Run PowerShell As Administrator:
    image
  • Create a Project Web App database

    A Project Web App database is created using the New-SPProjectDatabase Windows PowerShell cmdlet. In order for the new database to be properly associated with the site collection where you want enable the Project Web App site collection features, you must use the Tag parameter to associate a unique string with this database. That string will be used later when you enable the site collection features, the script is:

New-SPProjectDatabase –Name DatabaseName -ServiceApplication “ServiceApplicationName” –DatabaseServer SQLServerInstance -Tag String

So, in our example, we will use the following parameters for script:

New-SPProjectDatabase -Name “PS15_PWA2_DB” -ServiceApplication “Project Services Application” -DatabaseServer “AliDev-SQL” -Tag “PWA2DB”

So, The results are:
image

image

Once you have created the new Project Web App database, the next step is to enable the Project Web App site collection features. Doing so will associate the database that you just created with the site collection.

  • Enable the Project Web App site collection features

The Project Web App site collection features are enabled by using the Enable-SPFeature Windows PowerShell cmdlet. Prior to running this cmdlet, you must set the PWA_TAG parameter of the site collection to match the Tag parameter that you set when you created the database.

The PowerShell command is:
$web=Get-SPWeb SiteCollectionURL
$web.Properties[“PWA_TAG”]=“String”
$web.Properties.Update()
Enable-SPFeature pwasite -URL
SiteCollectionURL

So, in our example, the parameters will be:

$web=Get-SPWeb http://alidev-sp2013:30
$web.Properties[“PWA_TAG”]=”PWA2DB”
$web.Properties.Update()
Enable-SPFeature pwasite -URL
http://alidev-sp2013:30

And the results are:
image

in Site Action Menu
image

in Site Collection Features
image

  • After the Project Web App site collection features have been activated for the site collection, you can add a Project Center web part and begin importing SharePoint list projects into Project Web App.

Create a Project Web App site in an existing site collection

You can add a Project Web App site to an existing site collection. Doing so will allow you to take full advantage of Project Server 2013 and Project Web App functionality for the projects in that site collection.

In order for a Project Web App site to function properly, the site collection must have a Project Web App database associated with it and the Project Web App site collection features must be enabled. If you have not already done so, create a Project Web App database and enable the Project Web App site collection features on the site collection where you want to deploy the Project Web App site.

To create a Project Web App site in an existing site collection, you run the  Windows PowerShell cmdlet to create the site and then run the Upgrade-SPProjectWebInstance to perform post-provisioning actions, including creating a Business Intelligence Center.

Use the following script to create the Project Web App site:

  • New-SPweb -URL SiteCollectionURL/PWASiteName -Template pwa#0
  • Upgrade-SPProjectWebInstance -Identity SiteCollectionURL –Confirm:$False


in our example, we will use the following parameters for script:

image

After you have created the Project Web App site and run Upgrade-SPProjectWebInstance, you must run iisreset on each application server in the farm.

image

Open the Project Services Application from Central Administration, and check if PWA site Status is provisioned
image

The Project Web App site is now available at the URL that you specified.

image

I hope this was useful for you Smile

 

Tags: , , , , , , ,

8 responses to “Step by Step: Install, configure, and Deploy Project Server 2013 – Part 5: Deploy Project Web App with a new site collection – Project Server 2013

  1. SutoCom

    March 1, 2013 at 8:43 pm

     
  2. Samo Moro

    March 2, 2013 at 1:06 pm

    Great article keep up the good work.

     
  3. Tiago Rost

    March 2, 2013 at 12:08 pm

    thank you for sharing such information 🙂

     
  4. 网购产品推荐

    May 10, 2013 at 10:57 pm

    Great blog! Is your theme custom made or did you download it from somewhere?
    A theme like yours with a few simple adjustements would really make my blog jump out.
    Please let me know where you got your theme. Kudos

     
  5. Yasser

    August 29, 2013 at 10:20 am

    Hi
    i did a test enabling PWA feature in an existing teamsite as per your steps, after the Project Web App site collection features have been activated for the site collection,I add a Project Center web page and added Project Center webpart and configred teh PWA webpart with URL of teh teamsite. it seems working, but when i try to create a new project it gives me an error “GeneralUnhandledException”

     
  6. akashanand008

    September 23, 2014 at 5:10 pm

    Hi,

    I have tried that, but still same error. Even i am trying to create the PWA site, when i am unable to Enable the “Project Web App” feature. i am getting below error.

    Failed to find Project Site object. Are there any database mounted?

    Thanks
    Akash

     
  7. llteodoro

    November 25, 2015 at 5:44 pm

    Hi Alexander,

    I’m having the following error just after I run the command to create the database,

    New-SPProjectDatabase : Service Application not found.
    At line:1 char:1
    + New-SPProjectDatabase -Name PS15_PWA2_DB -ServiceApplication “Project
    Services A …
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
    + CategoryInfo : ObjectNotFound: (GRANADA:String) [New-SPProjectD
    atabase], SPException
    + FullyQualifiedErrorId : Microsoft.Office.Project.Server.Cmdlet.PSCmdletN
    ewProjectDatabase

    You can help me this ?

     
  8. Kunaal

    May 11, 2016 at 1:06 pm

    Awesome tutorial. Thanks lots

     

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

 
%d bloggers like this: