Planning, Deploying and Managing Microsoft Project Server 2010 (£1800 + VAT)

When: Monday, December 10, 2012 at 9:30 AM – Friday, December 14, 2012 at 5:00 PM (GMT) Where: Technology House 1 Shottery Brook Office Park Timothy’s Bridge Road CV37 9NR Stratford Upon Avon United Kingdom Hosted By: Technology Associates Technology Associates is one of the leading IT solutions companies specialising in Microsoft Project and Enterprise Project Management Solutions. Since 1990, Technology Associates have provided deployment, consultancy, development and training services to more than 500 organisations including some of the world’s leading companies, and we have an international presence in countries in EMEA, USA, and APAC.     Technology Associates have deployed hundreds of EPM solutions and deployed more than 2,000 Microsoft Project solutions. The company holds Microsoft Gold Competencies in Project & Portfolio Management, Application Integration and as an ISV, along with eight other silver competencies. With such a stong technical tour-de-force we have built a solid reputation for delivering high quality services and solutions, and providing exceptional value for money. Headquartered in the United Kingdom, with Offices in New York, San Francisco, India and Barcelona, and a strategic partner network covering AsiaPac, Middle East and ROW, we work internationally in delivering IT solutions to our customer base in over 39 countries. Find out more at www.techassoc.com Follow us on Twitter – https://www.twitter.com /TechAssoc   Register for this event now at: https://talmanagingps2010101212-rss.eventbrite.com Event Details: Course Description The goal of this five-day instructor-led course is to provide students with the knowledge and skills necessary to effectively plan, deploy and manage Microsoft Project Server 2010. Target Audience This course is intended for Administrators, Systems Engineers, PMO Managers, Project Managers, Consultants and other people responsible for the deployment and management of a Microsoft EPM Solution using Project Server 2010 in medium to very large computing environments that use the Microsoft Windows Server 2008 operating system. Typical environments in which they work have the following characteristics: Supported users ranging from 50 to 2,000+ Multiple physical locations Typical products and technologies include Windows Server 2008, Active Directory, Network Internet Information Services (IIS), Load Balancing, Microsoft SQL Server 2008 and Analysis Services, Failover Clustering, Microsoft Exchange 2007, Microsoft SharePoint Technologies, Microsoft Project Server 2010, Microsoft Office Project Professional 2010, Microsoft Office Outlook 2010, Office Web components, messaging and collaboration platforms, and network security products and technologies. Pre-requisites: Students should have a working knowledge of the following: Microsoft Windows Server 2003/2008 networking. Microsoft Office Project Professional. Basic project management concepts. Course Outline:        Module 1: Planning to Deploy Project Server 2010 Module 2: Installing and Configuring Prerequisites Module 3: Deploying SharePoint and Project Server 2010 Module 4: Configuring Project Server 2010 Module 5: Configuring Project Server Clients Module 6: Defining Project Server Settings Module 7: Managing Project Server Security Module 8: Managing Time and Task Management Settings Module 9: Customizing Project Workspaces Module 10: Administrating Project Server Tasks Module 11: Configuring Demand Management and Portfolio Analysis Module 12: Configuring Project Server Business Intelligence Module 13: Backing up and Restoring Project Server 2010 Module 14: Upgrading and Migrating to Project Server 2010

Creating Project Workflows using Visual Studio 2012

In Project Server 2010, Project developers were able to create Project Workflows using Visual Studio 2010. In Project Server 2013, we enabled creating the workflows with SharePoint Designer , which makes it much easier and faster to create Project Workflows. In that blog post , we showed how we have simplified the workflow creation for Project using SharePoint Designer 2013. We are, however, still supporting creating Project Workflows with Visual Studio for the more complex set of workflows, and in fact, have also made it easier to create Project Workflows with Visual Studio 2012. Below, we are going to use a sample two-stage workflow to show how you can create workflows with Visual Studio 2012: 1. Creating the Workflow solution: File Menu> New> Project> Office/SharePoint> SharePoint solutions > SharePoint 2013 Project. Give this project a name, and hit OK: In the customization wizard, enter the address of the PWA web you’d like this workflow to be published to. Then, pick the sandboxed solution option to limit this workflow to this particular PWA web: 2. At this point, the project you’ll see the empty canvas. In the Project Menu, click on the Add New Item, and from the Office/SharePoint tab, select Workflow, enter a name, and hit Add: Then, in the customization wizard, pick Site workflow: Then, pick the history list and the workflow tasks list from that site. We recommend that you use the default lists since a number of PWA UI entry points, use these default lists. Then, hit Finish: 3. Now, we need to set up the environment to use the Project Server activities. In the toolbox, right click and click on “add tab”, and call the new tab “project server”: Then, right click on the “project server” tab and click on “choose items” from the menu, and you’ll see this dialog: In the dialog click on Browse, and navigate to where the workflow dlls are located. They are usually located in C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions15TEMPLATEWorkflowActivities You’ll see two activities dll there. Open the project server one (Microsoft.Office.Project.Server.WorkflowActivities.dll), and hit OK. You are now taken back to the “toolbox items” dialog, and highlights the selected corresponding activities. Hit OK to continue. 4. You might see a “sequence” in the canvas. Delete that, and from the toolbox, pick Flowchart and add it by dragging it into the main area. This flowchart will be the main container of all the stages of the workflow: In the toolbox, click on Control flow, and add the sequence inside that flowchart. Throughout this sample workflow, we will use sequence to represent workflow stages in Visual Studio. This is similar to how SharePoint Designer handles each stage, i.e. each stage is equivalent to a separate sequence in Visual Studio: Rename the sequence to “Create_Stage” by clicking on the “Sequence” and start typing to change the name. Drag the line from start to “Create_Stage” to connect them together:   5. Double click on the “Create_Stage” to drill into this sequence a. Under project server in toolbox, add the “EnterProjectStage” and “ExitProjectStageGate” activities to the sequence. These two activities are required in any of the PWA stages in Visual Studio. b. In the properties of “EnterProjectStage”, change the StageID to the Stage ID of the particular stage you’d want this sequence to represent. You can find the stage ID in the URL of that stage, and is available if you navigate to that stage in PWA Settings > Workflow Stages, and then click on the particular stage. Since stageID is a string, the ID should be provided in quotation marks. c. Put another sequence between “EnterProjectStage” and “ExitProjectStageGate”. Essentially, everything in this sequence is what is represented in the text-based designer in SharePoint Designer stage definition. d. From project server item in the toolbox, drop the “waitForProjEvent” activity in that sequence: e. Change the EventName property to “OnProjectSubmit”. The other supported Event Names are “OnProjectCommit” and “OnProjectCheckIn” 6. In the breadcrumb, click on Flowchart to go one level up. Add another sequence after Create_Stage and call it Finished_Stage, and connect the wire from Create_Stage to the Finished_Stage: 7. Similar to the Create_Stage, add the EnterProectStage and ExitProjectStageGate activities to the sequence as well as the WaitForProjectEvent activity in the middle, and set the properties accordingly:     8. This completes building the workflow in Visual Studio. However, in order to make sure that the workflow can be properly published to the PWA, we need to make a few more changes in the xaml files of the project: From solution explorer, pick “Elements.xaml” under the workflow node a. Replace the WSEventSourceGUID with the following so that the workflow is correctly identifies as a project workflow: b. Inject the following properties under the “Url = WorkflowStartAssociation”:                         9. Now that everything is set, and the workflow is ready for publishing, click on the “Build Solution” under the Build menu, and then click on the “Deploy Solution” under the Build menu. The wsp file is now deployed to the site. You can also find a copy of the wsp file in the file system, under [project name]> bin> debug Now, the workflow will show up in PWA. If you navigate to PWA Settings > Enterprise Project Types, and create a new Enterprise Project Type, you will see this workflow as one of the options in the workflow dropdown list. For more information, see Getting started developing Project Server 2013 workflows in the Project 2013 SDK.

Office 365 Expert Discussions Series: Advanced Techniques for Troubleshooting Issues with Sending and Receiving Email in Office 365

Updated 11/1: Thank you for attending this Office 365 Expert Discussions Series. If you missed it, don’t worry! You can view the  Lync Recording here  and below. Microsoft Support will be presenting a series of webcasts called the  Office 365 Expert Discussion Series ,  to showcase our tools and content that can be used to help make your Office 365 experience better and help solve common issues more quickly.  (Please visit the site to view this video) During our fifth Expert Discussion webcast, Microsoft Support will be covering the topic of using advanced techniques for troubleshooting issues with sending and receiving email in Office 365.  We will be highlighting the use of automated troubleshooting tools such as the MOSDAL and the Remote Connectivity Analyzer. Members of the Microsoft Support team will be presenting the first part of the meeting and then questions will be taken live afterward.  Join us  on Thursday, October 25th at 8:00 AM Pacific Time for this exciting discussion. The duration of the meeting is planned for 1 hour. After the meeting concludes a recording of the session will be published to this blog post and the  Office 365 YouTube channel . Microsoft Support will be monitoring the Office 365 Expert Discussion  Forum  and  Wiki  as well as the Community closely for this topic for a week after the event to answer any questions about the live session. To sign up for this webcast please  download and save the calendar invite below  where you will find the Lync invite and all other Office 365 Expert Discussion information.  We are excited to see you there!  —————————————————————————————————————————————————————————— Presenter :  Steve Justice ,  Principal Escalation Engineer from Microsoft Customer Service and Support Date/Time:  Thursday October 25 th , at 8:00 AM Pacific Time . (1 Hour presentation) Online Meeting Information: ……………………………………………………………………………………………………………………….. Join Lync Meeting – https://join.microsoft.com/meet/sjustice/LCK3SFKL Or by phone +18883203585 (USA) Find a local number Conference ID: 2046439   Forgot your dial-in PIN?  | Help      [! ……………………………………………………………………………………………………………………….. Audience: Office 365 MVP and  Grid Members  and open to anyone who is interested in Office 365 Expert Discussions. 

Announcing MOSDAL 4.6 – The Microsoft Online Services Diagnostic and Logging Support Toolkit

Audience: Office 365 for professionals and small businesses Office 365 for enterprises   With the release of the Microsoft Online Services Diagnostics and Logging Support Toolkit 4.6 , we introduce a number of exciting new features and improve the user experience yet again so both users (information workers) and administrators can collect the right data, for the right problem.  In this release, we made an effort to make the tool and its output, more user friendly.  Not only did we make improvements to the UI to help guide users through the data collection process, we made many of the reports that MOSDAL generates more readable.  Please read below for additional details on all the improvements MOSDAL 4.6 has to offer: User Interface Changes – Added information to help users collect the right data, as well as understand what data MOSDAL is collecting. New Languages – MOSDAL is now offered in Russian and Korean languages. Smaller download – MOSDAL will only download .NET 4.0 and Windows Installer 3.0 if they are not present on the system.  This reduces the size of the installation package by more than half. Exchange ActiveSync diagnostics – In addition to testing the Exchange Autodiscover process, MOSDAL now also performs ActiveSync connectivity tests.  The tests are run sequentially, and the results are now viewable in a web format that is similar to https://www.testexchangeconnectivity.com. Compatibility with Microsoft Office 2013 and Microsoft Office Click-To-Run – MOSDAL is now aware of and will collect data for Outlook 2013 and Lync 2013.  In addition, if you installed Office 2013 through Click-To-Run, MOSDAL will collect additional data to help troubleshoot Click-to-Run installation and activation issues. Compatibility with Microsoft Windows 8, Windows Server 2012 and .NET 4.5 – MOSDAL will now run without issues on Microsoft Windows 8, Windows Server 2012 and on systems with .NET 4.5 installed. WebDAV ETL component logging for SharePoint Online – Logs are collected by MOSDAL to help troubleshoot issues WebDAV connections to SharePoint Online. Directory Synchronization, Domains/DNS and Exchange Hybrid Configuration reports in XML – Many of the reports generated by MOSDAL are now in XML format to make them easier to read and easier to create automated diagnostics to help identify issues quicker. Windows Network Trace logging – Network tracing utilizes the Event Tracing for Windows (ETW) framework available in Windows. Network components (such as Winsock, TCP/IP, NDIS, packet-capture, and so on) register as ETW trace providers and emit events related to network activity. Any recordable activity of significance can be an event logged to ETW. Tracing for these network components and packet captures can be enabled using the netsh trace context which acts as an ETW controller.  For more information, see     https://msdn.microsoft.com/en-us/library/windows/desktop/dd569137(v=vs.85).aspx . Resources Here are some resources to get started with MOSDAL 4.6: Download MOSDAL 4.6 and the available training MOSDAL Knowledge Base article Here are some additional resources where you can see the tool in action: Exchange Online: 2555008 How to troubleshoot free/busy issues when you use Exchange Federation in the Microsoft Office 365 for enterprises environment 2581088 How to troubleshoot issues that prevent you from viewing other clients’ free/busy information in Office Outlook 2007 and in Outlook 2010 in an Office 365 environment VIDEO :  Troubleshooting Issues with Free/Busy Information in Office Outlook Clients for Office 365 Lync Online: 2566790 Automatic sign-in, domain federation, and other features do not work as expected in Lync Online when you use a custom domain in Office 365Automatic sign-in, domain federation, and other features do not work as expected in Lync Online when you use a custom domain in Office 365 2541980  How to troubleshoot authentication and connectivity issues in Lync Online 2392146  Instant messages to federated Lync contacts fail VIDEO :  Troubleshooting Sign-In Issues in Lync Online for Office 365 VIDEO :  Troubleshooting Instant Message Failures to Federated Contcacts in Lync Online for Office 365 VIDEO :  Troubleshooting “Cannot Connect to the Server” error when using Lync Mobile for Office 365 Office 365 Suite: 2515404 Troubleshoot domain verification issues in Office 365 2621267 How to view and verify CNAME records, MX records, TXT records and SRV records in Office 365 VIDEO :  Troubleshooting Domain Verification Errors in Office 365 Identity federation/Single Sign On: 2598459 How to use the Microsoft Online Services Diagnostics and Logging (MOSDAL) Support Toolkit to diagnose identity federation issues in Office 365 2433327  How to use MOSDAL to enable tracing for the Microsoft Online Services Sign-in Assistant to troubleshoot rich client authentication issues VIDEO :  How to Use MOSDAL to Diagnose Identity Federation Issues in Office 365 Directory Synchronization (Co-Existence): 2643629 Individual Active Directory Domain Services objects do not synchronize to Office 365 2647098 Duplicate or invalid attributes prevent Office 365 directory synchronization VIDEO :  Troubleshooting Duplicate or Invalid User Attributes that Prevent Directory Synchronization in Office 365 SharePoint Online: 2629108  How to use the “Open with Explorer” command and how to troubleshoot issues with this option in SharePoint Online for Office 365 Visit the  MOSDAL wiki page for more information.

Project Online, Project Server 2013, the new Project TechEd Slides

Getting access to the new Project slides is in hot demand these days and voila! (see expect a lot more in the future…) https://channel9.msdn.com/Events/TechEd/Australia/2012/OSP216   Microsoft Project Online Overview https://channel9.msdn.com/Events/TechEd/Australia/2012/AIT002   Project Server 2013, a Landmark Release!

Office 365 Expert Discussion Series #4: Exchange Online Q&A w/ Support Team

Updated 9/27: Thank you for attending this Office 365 Expert Discussions Series. If you missed it, don’t worry! You can view the  Lync Recording here  and below.  Microsoft Support will be presenting a series of webcasts called the  Office 365 Expert Discussion Series ,  to showcase our tools and content that can be used to help make your Office 365 experience better and help solve common issues more quickly.  (Please visit the site to view this video) Team Members from Exchange Online Escalation Team will be on hand to answer a few selected technical questions followed by open Q&A. Bring any technical questions you may have regarding Exchange Online such as tips for resolving directory sync issues, managing users, improving Outlook connectivity. Join us  on Thursday, September 27th at 8:00 AM Pacific Time  for this exciting webcast. The duration of the meeting is planned for 1 hour. After the meeting concludes a recording of the session will be published to this blog post and the  Office 365 YouTube channel . Microsoft Support will be monitoring the Office 365 Expert Discussion  Forum  and  Wiki  as well as the Community closely for this topic for a week after the event to answer any questions about the live session. Be sure to view our past Expert Discussions here .  To sign up for this webcast please  download and save the calendar invite below  where you will find the Lync invite and all other Office 365 Expert Discussion information.  We are excited to see you there!  —————————————————————————————————————————————————————————— Presenter :  Jeremy Kelly , Principle Escalation Engineer from Microsoft Commercial Technical Support and other Microsoft Support Team members. Date/Time:  Thursday September 27th , at 8:00 AM Pacific Time . (1 Hour presentation) Online Meeting Information: ……………………………………………………………………………………………………………………….. à Join Lync meeting            Join by phone +14257063500 (USA – Redmond Campus)                     English (United States) +18883203585 (USA – Redmond Campus)                     English (United States)   Find a local number   Conference ID: 35047018     Forgot your dial-in PIN? | Help      [! ……………………………………………………………………………………………………………………….. Audience: Office 365 MVP and  Grid Members  and open to anyone who is interested in Office 365 Expert Discussions. 

Recent content about the new Project, Project Online, Project Professional, Project Server

Following recent webcasts, sessions and articles during the past month about The new Microsoft Project please find key content I’ve noticed. If I’ve missed any please let me know and I will gladly add to this list. In the meantime happy reading and watching! TechEd Australia (video): Microsoft Project Online Overview MPUG (video): Overview of the new Microsoft Project, plus QA with Senior Microsoft Product Manager Projects At Work (article): Tool Shop: Microsoft Project 2013 TechRepublic (article): Microsoft Project Professional 2013 new features preview Project Blog: Tasks Integration with Exchange Timelines Everywhere: See and share your work with ease in SharePoint and PWA Get Started with Project Web App SharePoint Tasks List plus Project – Better Together Adding SharePoint task lists to PWA an a lot more to come so please subscribe to the RSS feed !!!! Office Next blog: Click-to-Run and Office on Demand (good read to understand the new Project Pro for Office 365 service) SharePoint blog: Keep Your Team in Sync with Site Mailboxes Other blogs from MVPs, experts, product fans: EPMSource (Alex Burton’s blog, Project MVP) SharePoint (and Project Server Shenanigans) Nenad Trajkovski (Project MVP)

Lync To Phone, Overview and Setup – Lync and Learn

Updated 9/21: Thank you for attending this fantastic Lync and Learn session. If you missed it, you can find the  Lync Recording here  and below. The Power Point presentation is also attached to the blog post below. Lync and Learn is an online session led by Office 365 Product Managers and Community   Grid members .  Lync and Learn sessions address different Office 365 subjects and scenarios and is beneficial to anyone who wants to learn more and expand their knowledge of the Office 365 suite. View past Lync and Learn sessions   here . (Please visit the site to view this video) Come learn what Lync to phone is all about in our upcoming Lync and Learn session.  Sean McNeill  will be leading this presentation and showing us Lync to phone and how to set up Office 365 with services to enable Lync to voice.   If you’re interested in getting a dedicated local phone number for calls with Lync Online, then his session will provide everything you need to get started.   Sean McNeill  was recently awarded Office 365 MVP and has been working in Microsoft technologies for over 15 years. Sean enjoys technology and Cloud Services. Sean is a Managing Consultant with Catapult Systems. You can read Sean’s blog at https://office365evangelist.com/  and follow him on twitter @s_mcneill . Be sure to view his community profile  here . Attend this session to learn more about Lync to phone and to participate in a Q&A session with Sean McNeill.  To sign up for this webcast please  download and save the calendar invite below  where you will find the Lync invite and all other Lync and Learn information.  We are excited to see you there!  Interested in being our next Lync and Learn presenter?  Learn how to join the Office 365 Grid  and become an Office 365 Lync and Learn presenter. —————————————————————————————————————————————————————————— Presenter :  Sean McNeill , Managing Consultant with Catapult Systems and  Office 365 Grid member . Date/Time:  Thursday September 20 th , at 10:00 AM Pacific Time . (1 Hour presentation) Live Meeting Information: ……………………………………………………………………………………………………………………….. Join online meeting https://join.microsoft.com/meet/v-joshto/F00T8BQY Join by Phone  +14257063500         +18883203585           Find a local number   Conference ID: 27579341     Forgot your dial-in PIN?   |    First online meeting?      [1033])!] Audience: Office 365 for professionals and small businesses Office 365 for enterprises

Register to Project Ignite Training to Ready Yourselves to the new Microsoft Project!

As announced by my colleague Jan Kalis: Don’t miss the unique opportunity – register for the new Project Ignite now! we have a great 3 day agenda for you at three locations (Sydney, Australia; Reston, Virginia, USA and Warsaw, Poland) in the coming month. I truly believe this is a historical moment for Microsoft Project and Project Server and hence readiness is one of the key to success so don’t wait anymore and REGISTER today!

Project Server 2010 Administration – 12th to 13th September, 2012 (£795 + VAT)

When: Wednesday, September 12, 2012 at 9:00 AM – Thursday, September 13, 2012 at 5:00 PM (BST) Where: 1 Shottery Brook Office Park Timothy’s Bridge Road CV37 9NR Stratford Upon Avon United Kingdom Hosted By: Technology Associates Technology Associates is one of the leading IT solutions companies specialising in Microsoft Project and Enterprise Project Management Solutions. Since 1990, Technology Associates have provided deployment, consultancy, development and training services to more than 500 organisations including some of the world’s leading companies, and we have an international presence in countries in EMEA, USA, and APAC.     Technology Associates have deployed hundreds of EPM solutions and deployed more than 2,000 Microsoft Project solutions. The company holds Microsoft Gold Competencies in Project & Portfolio Management, Application Integration and as an ISV, along with eight other silver competencies. With such a stong technical tour-de-force we have built a solid reputation for delivering high quality services and solutions, and providing exceptional value for money. Headquartered in the United Kingdom, with Offices in New York, San Francisco, India and Barcelona, and a strategic partner network covering AsiaPac, Middle East and ROW, we work internationally in delivering IT solutions to our customer base in over 39 countries. Find out more at www.techassoc.com Follow us on Twitter – https://www.twitter.com /TechAssoc   Register for this event now at: https://talpsadmin2010120912-rss.eventbrite.com Event Details: Course Description: This course is designed to cover all the features and aspects of Project Server 2010 Administration. Attendance on the Introductory Project Professional 2010 course is an essential pre-requisite. Attendance on an advanced course with at least two to six weeks as a consolidation period is highly desirable . A ttendees ideally will have some experi ence of SQL Server, IIS, and SharePoint Server . Knowledge of network permissions, active directory and security models would be an advantage. Who Should Attend: Users who have a good knowledge of Microsoft Project 2010 and will be responsible for managing, maintaining and updating the Project 2010 Server database and user information. Course Content:   Upon completion of the course, delegates will be able to: Understand EPM 2010 Administration Concepts & Setup ·          Understand the different areas of the PWA Home page and links from it. ·          Understand authentication – types and logins. ·          Understand how to set up e-mail notifications for users and their teams. ·          Demonstrate how to save Microsoft Project information offline. ·          Demonstrate how to view, edit, and update projects & tasks ·          Understand how to reject, create, and delegate task assignments. ·          Understand how to link documents , issues, risks and documents to tasks. ·          Describe the Outlook integration. ·          Show how to view projects in the Project Center & how to create and maintain the views. ·          Show how to view resources in the Resource Center & how to create the views. ·          Demonstrate how to view resource and assignment data related to one or more projects. ·          Understand how to edit enterprise resource information. ·          Describe how to revi ew an archive of object data. ·          View and update task changes to a Microsoft Project plan. ·          View and update calend ar changes. ·          Set up rules to automatically update projects. ·          View a historical archive of task updates. ·          Understand Check In/Check Out of Projects and resources. ·          Understand Outlook integration. ·          Understand Categories/Groups/Permissions & Security Templates and how to use these to configure the system. Essential for analyzing the business and how EPM can be adopted. ·          Understand how d ata is stored in Project Server Databases and in SharePoint.   Project 2010 Server Administration ·          Understand the different Administration options. ·          Understand the communication and messaging process. ·          Understand the Task Views, Time Periods, Fiscal Periods and options. ·          Describe the provisioning process for creating workspaces. ·          Understand how to view and upload documents for projects and public documents. ·          Demonstrate searching of documents in the document libraries. ·          Understand how to create and edit an issue or risk. ·          Understand how to customize Issue and risk fields and views. ·          Describe what Microsoft Project Server is and what it is used for. ·          Demonstrate connecting Microsoft Project to Microsoft Project Server. ·          Understand the functionality of Microsoft Project Server. ·          Understand the different user types and the how they interact with Microsoft Project Server and the functionality of each, as well as how to modify permissions. ·          Understand the responsibilities of a Microsoft Project Server Administrator and adopt best practices. ·          Discuss the various views available, their purpose and how to customize them. ·          Understand the integration of SharePoint fr om the Microsoft administration perspective. ·          Understand the Databases in Project Server and how they interact. ·          Understand Reporting and Business Intelligence capabilities in EPM 2010. ·          Understand the Dashboard capability. ·          Understand customization of the Microsoft Project Web Access Client. ·          Describe license manag ement within Project Server 2010 ·          Discuss maintenance of clean data in the Microsoft Project Server database. ·          Understand how security works within Microsoft Project Server. ·          Demonstrate the process for setting permissions. ·          Under stand the process for time track ing and progressing updates. ·          Understand and edit the Resource Breakdown Structure. ·          Understand the Administration options in Project Server and how to use them. ·          Demonstrate and understand the significance of Outline code fields at Project, Task and Resource level. ·          Understand and apply the Portfolio capabilities and administer the settings in Project Server. ·          Understand ULS, Messaging logs, and the Queue services in Project Server. ·          Describe, understand and be able to apply Multi-value fields. ·          Recognise what the Active Cache is and how it works . ·          Understand the concept of web parts and SharePoint as a platform for Project Server.