locked
Project field "Priority" in a PDP (PWA 2010) RRS feed

  • Question

  • Hi,

    I want to display the project Priority field in a custom PDP in PWA 2010. I did that but...

    I want this field to be editable in this PDP.

    How can I do that?

    Thanks

    Wednesday, January 20, 2016 4:48 PM

Answers

  • Hi WLID1966,

    As far as I know, you cannot update the Priority field from the PDP. What you can do is open your project through Project Professional and update the value.

    Method to do it :

    1. Open the Project in question using Project Pro.

    2. Click on Project Tab and select Project Information.

    3. Update the Priority field there.

    Another option is to write a custom event, where you can create a custom field (call it Project Priority) and this can be used by the user to update the Priority field on Save through SQL.

    For SQL you will find the Priority field as :

    SELECT TaskName, TaskPriority
      FROM [ProjectServer_Reporting].[dbo].[MSP_EpmTask_UserView] where TaskIsProjectSummary = 1

    • Proposed as answer by Abhijit Wadagole Wednesday, January 27, 2016 11:23 PM
    • Marked as answer by WLID1966 Friday, January 29, 2016 10:55 AM
    Wednesday, January 27, 2016 11:23 PM