Skip to main content

Posts

Showing posts from March, 2014

A resource availability contour cannot go outside the range of the resources earliest and latest availability dates

A resource availability contour Encountered a problem at one of our customers today Project Server 2010 installation today. In Resource Center when i try and edit a resource's "Latest Available Date" or "Earliest Available Date" i get an error saying: A resource availability contour cannot go outside the range of the resources earliest and latest availability dates I experience this error before, but always forget the reason for it. The reason is that the resource have custom availability defined, this can only be defined in the MS Project client. An indication that the resource has custom availability is also that "Current Max. Units (%)" is grayed out (inactive). To solve the problem you need to select the resource and open it up in the MS Project client (3 button on the Ribbon). In the client doubleclick the resource name and modify the values in the "Resource Availability" grid to match what you wanted to type in "Latest Avai

Project Server 2013 Service Pack 1 download and install

Project Server 2013 and SharePoint 2013 SP1 is out Service Pack 1 is out for Project Server 2013. Download and install it now to recieve all the hotfixes and a couple of new features. Don't forget to first install SharePoint SP1 and run the configuration wizard afterwards. 1. Download and install SharePoint SP1:  http://www.microsoft.com/en-us/download/details.aspx?id=42008 2. Download and install Project Server SP1:  http://www.microsoft.com/en-us/download/details.aspx?id=42011 3. Restart the windows server  4. Run the SharePoints Configuration wizard 5. If any of your users are using the MS Project client don't forget to have them update to the latest version: 32 bit -  http://www.microsoft.com/en-us/download/details.aspx?id=42013 64 bit -  http://www.microsoft.com/en-us/download/details.aspx?id=42020

Sharepoint/Project Server App with javascript and Web Part

Getting Project Server code to run in a AppPart Today I tried to get project server CSOM/javascript code to run within an app part. This caused a lot of troubleshooting and guessing to get it to work. By simply adding the ps.js library to the app part page I kept getting an error. Library: <script type="text/javascript" src="/_layouts/15/ps.js"></script> Error: "executeordelayuntilscriptloaded is undefined" Then I tried to use ScriptLink to load the library but got the same error. <SharePoint:ScriptLink runat="server" Name="ps.js" Localizable="false" OnDemand="False" LoadAfterUI="True"></SharePoint:ScriptLink> The code I was trying to run was very simpel and worked fine if I added it to a normal aspx page.  $(document).ready(function () {     var projContext = PS.ProjectContext.get_current();       var projects = projContext.get_projects();     projContext.load(projects

Project Server - Change field name on PDP for standard fields (like the Owner field)

Project Server - Change owner field name on PDP The field names on the PDPs (Project Detail Pages) has been preselected on the standard fields for a project. If you want to change the Owner to something else it is quite difficult. In the following i will explain how we can change this field through the Content Editor webpart. To change the owner field add a Content Editor webpart to the PDP page where the field is inserted. Select the webpart and from the ribbon select HTML->Edit HTML Source. Copy/Paste the following code into the Content Editor webpart. < script type ="text/javascript">     var old_name = "Owner" ;     var new_name = "Ansvarlig" ;     var ttnA = document.getElementsByTagName( "div" );     for ( var j = 0; j < ttnA.length; j++) {         var orig = ttnA[j].innerHTML;         var stripped = orig.replace( /^\s*/ , "" ).replace( /\s*$/ , &quo