<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type='text/xsl' href='http://appleparkltd.spaces.live.com/mmm2008-05-17_13.22/rsspretty.aspx?rssquery=en-US;http%3a%2f%2fappleparkltd.spaces.live.com%2ffeed.rss' version='1.0'?><rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:msn="http://schemas.microsoft.com/msn/spaces/2005/rss" xmlns:live="http://schemas.microsoft.com/live/spaces/2006/rss" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Applepark Ltd</title><description>Project Server bloggers!</description><link>http://Appleparkltd.spaces.live.com/</link><language>en-US</language><pubDate>Fri, 20 Jun 2008 00:11:42 GMT</pubDate><lastBuildDate>Fri, 20 Jun 2008 00:11:42 GMT</lastBuildDate><generator>Microsoft Spaces v1.1</generator><docs>http://www.rssboard.org/rss-specification</docs><ttl>60</ttl><live:identity><live:id>-1511370371294540259</live:id><live:alias>Appleparkltd</live:alias></live:identity><image><title>Applepark Ltd</title><url>http://blufiles.storage.live.com/y1pjtYUNCkamt_JFcT86SVkwNgwv1A5ge6zQd3JYnCb7GUgjWBH9S3hWyuYXbvh8rYR</url><link>http://Appleparkltd.spaces.live.com/</link></image><cf:listinfo><cf:group ns="http://schemas.microsoft.com/live/spaces/2006/rss" element="typelabel" label="Type" /><cf:group ns="http://schemas.microsoft.com/live/spaces/2006/rss" element="tag" label="Tag" /><cf:group element="category" label="Category" /><cf:sort element="pubDate" label="Date" data-type="date" default="true" /><cf:sort element="title" label="Title" data-type="string" /><cf:sort ns="http://purl.org/rss/1.0/modules/slash/" element="comments" label="Comments" data-type="number" /></cf:listinfo><item><title>Problems with Status Reports</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!471.entry</link><description>&lt;p&gt;&amp;lt;dry again&amp;gt; &lt;p&gt;Status reports have been around since Project Server 2003 (or even in 2002? - I can't remember), but I do know that I've had various problems with them in 2007, but haven't been able to specifically reproduce them in order to get a bug raised with Microsoft. &lt;p&gt;My specific scenario was that when Status Reports where deleted users were still getting reminders to send the reports; in addition other Status Reports were successfully sent but actually never received by the Project Manager!  Both of these issues started after a few false starts with Status Reports, we'd created quite a few for testing purposes and then deleted them.   &lt;p&gt;As part of the troubleshooting process I started delving into the published database and discovered that deleted status reports are not deleted, but marked as disabled.  In order to clean up the Status Reports I decided to clean up the database using some SQL scripts.   &lt;p&gt;Here's the caveat - I'm no SQL guy, so though this worked for me there are no guarantees it'll work for you.  Also it's a semi manual task involving two separate steps; someone smarter than me can probably create a single script that does the same job - if you can - I'd like a copy. &lt;p&gt;The 1st stage finds all of the records that need deleting; the 2nd stage deletes them. &lt;p&gt;&lt;u&gt;1st stage&lt;/u&gt; &lt;p&gt;The 1st thing to do is to select the published database and then get the UID for the Status Reports that are set to False (i.e., deleted ones) - my DB is called project_live_published &lt;p&gt;-- define the database ** yours will be different**&lt;br&gt;use project_live_published  &lt;p&gt;-- get the SR_UID from SR_Reports that have been deleted&lt;br&gt;select SR_UID from dbo.MSP_SR_REPORTS where SR_IS_ENABLED = 'False'  &lt;p&gt;Use this output to as part of the next select statement to find all of the Response UIDs (SR_RESP_UID) from the SR_RESPONSES database. &lt;p&gt;-- get the SR_RESP_UID for the &amp;quot;deleted&amp;quot; reports&lt;br&gt;select SR_UID, SR_RESP_UID from dbo.MSP_SR_RESPONSES where SR_UID in &lt;br&gt;('EEBF89E1-6E74-4B88-9CE6-3B7F93EEAC62' , &lt;br&gt;'379BA18E-E98E-4FD8-AC83-5D8BF8ABF04A' , &lt;br&gt;'87BF5F35-843E-43FC-9EF6-9BB542E8677A' , &lt;br&gt;'7332150B-69AD-446A-A946-C08DFC57D3D9') order by SR_UID, SR_RESP_UID &lt;p&gt;The output from both select statements is then used to select the rows that need deleting in the database. &lt;p&gt;&lt;u&gt;2nd stage&lt;/u&gt; &lt;p&gt;The following tables are effected; &lt;p&gt;SR_DISTRIBUTION; SR_SECTIONS; SR_RESPONSES; SR_REQUESTS; SR_REQUENCIES; SR_REPORTS &lt;p&gt;My SQL script looked like this. &lt;p&gt;-- define the database&lt;br&gt;use project_live_published  &lt;p&gt;-- delete the records from SR_DISTRIBUTION&lt;br&gt;delete from dbo.MSP_SR_DISTRIBUTION where SR_RESP_UID in &lt;br&gt;('225E71BD-C639-441B-8FD8-1983DBBD15D7',&lt;br&gt;'086D6E61-EF43-40A8-AF4F-47982373FB88',&lt;br&gt;'A6EC490C-55EA-4145-9508-59D6749CE29F',&lt;br&gt;'D5CEEBF8-17DD-4D58-9E58-5B3587269620',&lt;br&gt;'8D77214C-CA97-4FB1-9251-5BFFDD25B775',&lt;br&gt;'17F9C2DA-69B5-45AD-9338-66624E6A79E8',&lt;br&gt;'D2138BA6-3808-434F-A3EA-7BE1BF5AE028',&lt;br&gt;'43185E36-0459-4BC6-93D1-88FF9E2E2D7D',&lt;br&gt;'77BD3939-A2D1-4F2D-97DE-9CC99D69C0CA',&lt;br&gt;'87437EA6-6576-4AF7-8EAC-A9009DD8F217',&lt;br&gt;'5082CCDE-4683-4356-BE5C-DE4F87A5DAB1',&lt;br&gt;'25061369-DD4F-4C22-A8F3-DFA4F5FAEA50',&lt;br&gt;'AF777558-241C-488B-B951-E8A3C1D04FC1',&lt;br&gt;'C1186BED-CD1B-4F4E-BD75-EE349BCBF0CE',&lt;br&gt;'1656301F-2463-4900-994D-F3621C051754',&lt;br&gt;'D82E51E9-A89A-41AF-86E1-0C0071A06647',&lt;br&gt;'B625269B-A1D6-4353-99FB-11D499AA80CB',&lt;br&gt;'AAB7359A-92DC-4416-9048-350C48BCFBC2',&lt;br&gt;'3138136B-1427-41BE-A052-3AAD97C273AD',&lt;br&gt;'49BB243C-0D97-40F0-AF54-545813FC5CC2',&lt;br&gt;'3CB7EE4D-3A94-4090-A809-74317AC42A29',&lt;br&gt;'3F61FB9E-FAE8-418C-BF22-779ACD71CE1E',&lt;br&gt;'DC628EC6-01D4-4039-A1C1-AAE4737E27FD',&lt;br&gt;'220CF8EF-6D55-4F6F-869E-AFAE68CF067D',&lt;br&gt;'F9A3CDF0-A532-44C1-AA30-B10354890A9F',&lt;br&gt;'39238C2C-F9FA-49F6-BA1C-CB1F8B1EB998',&lt;br&gt;'65BD1BC4-B386-4E1E-AE39-DF81FDA61397',&lt;br&gt;'F04C0A57-C166-43B9-BA00-EB7251074764',&lt;br&gt;'99B8B405-9153-4C36-8A16-AE35C216A224'&lt;br&gt;)  &lt;p&gt;-- delete the records from SR_SECTIONS&lt;br&gt;delete from dbo.MSP_SR_SECTIONS where SR_RESP_UID in &lt;br&gt;('225E71BD-C639-441B-8FD8-1983DBBD15D7',&lt;br&gt;'086D6E61-EF43-40A8-AF4F-47982373FB88',&lt;br&gt;'A6EC490C-55EA-4145-9508-59D6749CE29F',&lt;br&gt;'D5CEEBF8-17DD-4D58-9E58-5B3587269620',&lt;br&gt;'8D77214C-CA97-4FB1-9251-5BFFDD25B775',&lt;br&gt;'17F9C2DA-69B5-45AD-9338-66624E6A79E8',&lt;br&gt;'D2138BA6-3808-434F-A3EA-7BE1BF5AE028',&lt;br&gt;'43185E36-0459-4BC6-93D1-88FF9E2E2D7D',&lt;br&gt;'77BD3939-A2D1-4F2D-97DE-9CC99D69C0CA',&lt;br&gt;'87437EA6-6576-4AF7-8EAC-A9009DD8F217',&lt;br&gt;'5082CCDE-4683-4356-BE5C-DE4F87A5DAB1',&lt;br&gt;'25061369-DD4F-4C22-A8F3-DFA4F5FAEA50',&lt;br&gt;'AF777558-241C-488B-B951-E8A3C1D04FC1',&lt;br&gt;'C1186BED-CD1B-4F4E-BD75-EE349BCBF0CE',&lt;br&gt;'1656301F-2463-4900-994D-F3621C051754',&lt;br&gt;'D82E51E9-A89A-41AF-86E1-0C0071A06647',&lt;br&gt;'B625269B-A1D6-4353-99FB-11D499AA80CB',&lt;br&gt;'AAB7359A-92DC-4416-9048-350C48BCFBC2',&lt;br&gt;'3138136B-1427-41BE-A052-3AAD97C273AD',&lt;br&gt;'49BB243C-0D97-40F0-AF54-545813FC5CC2',&lt;br&gt;'3CB7EE4D-3A94-4090-A809-74317AC42A29',&lt;br&gt;'3F61FB9E-FAE8-418C-BF22-779ACD71CE1E',&lt;br&gt;'DC628EC6-01D4-4039-A1C1-AAE4737E27FD',&lt;br&gt;'220CF8EF-6D55-4F6F-869E-AFAE68CF067D',&lt;br&gt;'F9A3CDF0-A532-44C1-AA30-B10354890A9F',&lt;br&gt;'39238C2C-F9FA-49F6-BA1C-CB1F8B1EB998',&lt;br&gt;'65BD1BC4-B386-4E1E-AE39-DF81FDA61397',&lt;br&gt;'F04C0A57-C166-43B9-BA00-EB7251074764',&lt;br&gt;'99B8B405-9153-4C36-8A16-AE35C216A224'&lt;br&gt;)  &lt;p&gt;--delete the records from SR_RESPONSES&lt;br&gt;delete from dbo.MSP_SR_RESPONSES where SR_UID in &lt;br&gt;('EEBF89E1-6E74-4B88-9CE6-3B7F93EEAC62' , &lt;br&gt;'379BA18E-E98E-4FD8-AC83-5D8BF8ABF04A' , &lt;br&gt;'87BF5F35-843E-43FC-9EF6-9BB542E8677A' , &lt;br&gt;'7332150B-69AD-446A-A946-C08DFC57D3D9')  &lt;p&gt;--delete the records from SR_REQUESTS&lt;br&gt;delete from dbo.MSP_SR_REQUESTS where SR_UID in &lt;br&gt;('EEBF89E1-6E74-4B88-9CE6-3B7F93EEAC62' , &lt;br&gt;'379BA18E-E98E-4FD8-AC83-5D8BF8ABF04A' , &lt;br&gt;'87BF5F35-843E-43FC-9EF6-9BB542E8677A' , &lt;br&gt;'7332150B-69AD-446A-A946-C08DFC57D3D9')  &lt;p&gt;--delete the records from SR_FREQUENCIES&lt;br&gt;delete from dbo.MSP_SR_FREQUENCIES where SR_UID in &lt;br&gt;('EEBF89E1-6E74-4B88-9CE6-3B7F93EEAC62' , &lt;br&gt;'379BA18E-E98E-4FD8-AC83-5D8BF8ABF04A' , &lt;br&gt;'87BF5F35-843E-43FC-9EF6-9BB542E8677A' , &lt;br&gt;'7332150B-69AD-446A-A946-C08DFC57D3D9')  &lt;p&gt;--delete the records from SR_REPORTS&lt;br&gt;delete from dbo.MSP_SR_REPORTS where SR_UID in &lt;br&gt;('EEBF89E1-6E74-4B88-9CE6-3B7F93EEAC62' , &lt;br&gt;'379BA18E-E98E-4FD8-AC83-5D8BF8ABF04A' , &lt;br&gt;'87BF5F35-843E-43FC-9EF6-9BB542E8677A' , &lt;br&gt;'7332150B-69AD-446A-A946-C08DFC57D3D9') &lt;p&gt;That worked nicely for me; however, we've just had a change of project managers so we might have to go through the whole process again! &lt;p&gt;Good luck!&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Problems+with+Status+Reports&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!471.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!471.entry</guid><pubDate>Wed, 11 Jun 2008 23:37:12 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!471/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!471.entry#comment</wfw:comment><dcterms:modified>2008-06-11T23:37:12Z</dcterms:modified></item><item><title>How to set up permissions so that Project Managers can Save their own projects, and open all others in Read Only mode</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!462.entry</link><description>&lt;p&gt;  &lt;p&gt;This question comes up again and again, and I can't remember where I found this information from all those years ago (it applied to Project 2003), but I wrote it down and seem to use it for most clients.  It's easily adaptable for Project Server 2007 - one day I'll write it properly and update it for 2007! &lt;p&gt;&lt;b&gt;Project Server Security (P2003)&lt;/b&gt; &lt;p&gt;&lt;b&gt;Overview&lt;/b&gt; &lt;p&gt;Project Server Security is complex. There are two types of permissions, five places to set them, and three conditions for each permission (allow/deny/soft deny). Appendix C &amp;amp; D of the Project Server Administrators Guide should be used for further reference.  &lt;p&gt;&lt;b&gt;Permissions&lt;/b&gt; &lt;p&gt;There are two types of permissions, data permissions (what data the user can see) and use permissions (what features the user can use). Each permission is not readily identified as to its type. Microsoft use the terms &lt;b&gt;global&lt;/b&gt; for use permissions and &lt;b&gt;category&lt;/b&gt; for data permissions. Additionally, they use the term Organisational Permissions, which are a set of permissions set for the whole organisation, and encompasses all of the use (global) permissions plus the 14 data (category) permissions. &lt;p&gt;&lt;b&gt;The Roles of Security Templates, Groups &amp;amp; Categories&lt;/b&gt; &lt;p&gt;A security template is a predefined list of all the permissions (data &amp;amp; use). This list is ordered by permission area (admin, collaboration etc). Templates should ideally be named the same as groups. &lt;p&gt;A Group is a collection of users. A single user can belong to multiple groups. The use permissions are determined at the group level, and therefore group membership is the primary factor is determining the functionality that a user has within the system. &lt;p&gt;A Category is used to define the data permissions (hence Microsoft’s term, Category Permissions), i.e. what data can a user see, what actions can they perform on that data, and which views can they use to see the data. Categories are applied to groups, a single group can have multiple categories applied to it, and a category can be applied to multiple groups. &lt;p&gt;The permissions applied to each user is therefore a combination of the categories and the group membership. &lt;p&gt;&lt;b&gt;Alloy/Deny&lt;/b&gt; &lt;p&gt;Three permissions are allowed for any permission. They are ALLOW, DENY, and soft deny. Soft deny (blank) is implicit if neither allow nor deny are selected. If a permission is set to deny in one place the system, then that becomes an absolute deny everywhere in the system, even if the permission has been set to allow elsewhere. If the permission is blank then the decision as to whether to allow or deny the permission is made elsewhere in the system. &lt;p&gt;&lt;b&gt;Server Configuration Features&lt;/b&gt; &lt;p&gt;This is available in the PWA Admin tab, under server configuration, in the Select the Features That You Want to make Available to Users in Project Web Access section. Either set these use permissions to ALLOW or DENY. It is inappropriate to have blank here. The permissions lists here are the use permissions. &lt;p&gt;&lt;b&gt;Templates&lt;/b&gt; &lt;p&gt;Use the templates to define a set of permissions for a particular role. The templates contain data and use permissions. Only change a use permission here to DENY if you want to deny a permission for a particular group, that has been globally allowed (via the Server Configuration Features) above. This is the 1&lt;sup&gt;st&lt;/sup&gt; opportunity to set permissions, so these should be set here to allow/deny as appropriate. &lt;p&gt;&lt;b&gt;Categories&lt;/b&gt; &lt;p&gt;Categories define data permissions, and are further enhanced by data restrictors. Categories are assigned to groups, and a group may have more than one categories assigned to it. &lt;p&gt;&lt;b&gt;Groups&lt;/b&gt; &lt;p&gt;The use permissions are set by the group. Assign the use permissions by applying the relevant template. &lt;p&gt;&lt;b&gt;Users&lt;/b&gt; &lt;p&gt;Users are placed in groups. Never assign permissions to a user, troubleshooting the security will become too complex. &lt;p&gt;&lt;b&gt;Recommendations&lt;/b&gt; &lt;p&gt;Security should be established in the following order &lt;ul&gt; &lt;li&gt;Set universal allow/deny in server configuration &lt;li&gt;Define the roles within the organisation, and create a security template for each role &lt;li&gt;Define groups and assign data permissions using the template &lt;li&gt;Define the categories, and assign them to the groups &lt;li&gt;Assign resources to groups&lt;/ul&gt; &lt;p&gt;See figure1. below for a graphical view of this. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4H1xGadBuEYdgoLNgg3B8psX21zmh2H1zbMSb_7yJbxYa7SvVVwurnwswgMmiGXfE?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=772 alt="clip_image002" src="http://qevrkw.blu.livefilestore.com/y1pzOm1KYpgc21-yXMg0dxOSDVmAQr99KX66Mv7KXeZ5XPqFhB57Ku1D9JCrn_pIzlWw5y2AG47ESSoppovPbWliQ?PARTNER=WRITER" width=797 border=0&gt;&lt;/a&gt; &lt;p&gt;&lt;b&gt;Initial setup for Acme PLC&lt;/b&gt; &lt;p&gt;The following was set up on the live system for Acme PLC and used as a basis for security.   What I've done here is create categories called GROUP_NAME - See Everything.  Within the category set up you need to select the button that says - See all future Projects/Resources in the Database. &lt;p&gt;  &lt;p&gt;&lt;b&gt;Templates&lt;/b&gt; &lt;p&gt;Resource managers - see everything &lt;p&gt;Execs - see everything &lt;p&gt;Portfolio managers - mod all (no admin) &lt;p&gt;Project managers - see everything &lt;p&gt;Team members - see everything except money &lt;p&gt;&lt;b&gt;Categories&lt;/b&gt; &lt;p&gt;Resource managers - see everything &lt;p&gt;Execs - see everything &lt;p&gt;Portfolio managers - mod all (no admin) &lt;p&gt;Project managers - see everything &lt;p&gt;Team members - see everything except money &lt;p&gt;&lt;b&gt;Groups&lt;/b&gt; &lt;p&gt;Resource managers -&amp;gt; CATEGORY = Resource managers - see everything &lt;p&gt;Executives -&amp;gt; CATEGORY = Executives - see everything -  &lt;p&gt;Portfolio managers -&amp;gt; CATEGORY = Portfolio managers - mod all (no admin) &lt;p&gt;Project managers -&amp;gt; CATEGORY = Project managers - see everything - *When you make this assignment for the  category you need to enable the category permission to open all projects in the database, but not to save them* &lt;p&gt;-&amp;gt; CATEGORY = Project managers  &lt;p&gt;Team members -&amp;gt; CATEGORY = Team members - see everything except money &lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+How+to+set+up+permissions+so+that+Project+Managers+can+Save+their+own+projects%2c+and+open+all+others+in+Read+Only+mode&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!462.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!462.entry</guid><pubDate>Thu, 01 May 2008 20:36:03 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!462/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!462.entry#comment</wfw:comment><dcterms:modified>2008-05-01T20:36:03Z</dcterms:modified></item><item><title>Changing the Project Manager</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!459.entry</link><description>&lt;p&gt;  &lt;p&gt;During the lifetime of a project it is sometimes necessary to change the Project Manager (due to a leave of absence).  The process to do this has changed between 2003 and 2007.   &lt;p&gt;There are three areas to be concerned with &lt;p&gt;1.  Changing the Project Manager; Changing the status manager; replacing any PM resources. &lt;p&gt;Before you start on any of the above, make sure any updates to the project have been accepted, and that any changes have been fully published.  This results in lots of emails too, so worth making team members aware of what is happening. &lt;p&gt;1.  Change the Project Manager &lt;p&gt;This is done in PWA.  Select the project and Edit the Project Properties, and change the Owner to reflect the new Project Manager. &lt;p&gt;&lt;a href="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtFxDCkBq8r6m9_AF4sfzIrWecsCVq6XBKiKBos1DFCUth26ZKBn_39-R2t-bNxdKozMYulk-la4VgvJvZ7O6wuC?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=662 alt=image src="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtF8MbdZYq59LQTU2Dadbl1OW5j2JlPvlZwDxTCI-8fHQ-xdQqKep0toELsS2uKFXYbpP3Xj5kG8J2W084LZ6l8m?PARTNER=WRITER" width=1028 border=0&gt;&lt;/a&gt;  &lt;p&gt;2.  If necessary, change the Status Manager. &lt;p&gt;As the new project manager, open the project in Project Professional.  Insert the Status Manager Column, and change the status manager for each task to be the new project manager.   &lt;p&gt;&lt;a href="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtFufTuMDQjoaCnDtRN-sWtdasPrOVYPJS7L-OWZuvyXmi86cOcqmfQe-yc-_EeNc6yg8kWXYtc52BNjmzp4IZwU?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=316 alt=image src="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtHWc-r_sRb8irmOkJiyiQBsE3LIiWLdBzpL9fVguAG9HbeV-Clv8krCRgvKIAF4P2yEESEZnY_8tNceX1G6ej9a?PARTNER=WRITER" width=1028 border=0&gt;&lt;/a&gt;  &lt;p&gt;Note that it is not possible to change all the tasks at once, but it is possible to use CTRL-D to copy the changed status manager field down. &lt;p&gt;&lt;a href="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtGVXXEBkYDUtRD8RHCkmjxv6m5ARy6YVygfCdP0bLeWHrHhgRQJLka32LgITOSEnSRJSXzjMb89Vtr-qMqFZpEK?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=316 alt=image src="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtGtAKeo8_0urPnQN5Fdi1GnLZLn2JbRKibP5RMuhxllimBUVV_T2y_XADsxnBQWsA1uaePUB1JnmeldTSE4IMda?PARTNER=WRITER" width=1028 border=0&gt;&lt;/a&gt;  &lt;p&gt;3.  If the old PM has assignments on the task, then these need to be changed too.  There are 3 scenarios for the task &lt;blockquote&gt; &lt;p&gt;a.  The task is completed and has zero remaining work - these tasks will not be effected.&lt;/blockquote&gt; &lt;blockquote&gt; &lt;p&gt;b.  The task is partially completed, therefore has Actual Work and Remaining work values associated with it.  &lt;/blockquote&gt; &lt;blockquote&gt; &lt;p&gt;c.  The task is not yet started.&lt;/blockquote&gt; &lt;p&gt;&lt;a href="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtHDW1SbxsSQZGJgsG98Z-KaSe5vXUTtuz1IZSFLKLe2-NtZSLg4Md85Y-Nb5IoCpwPM9A4cguMbEn-GDo6WlwrD?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=272 alt=image src="http://qevrkw.blu.livefilestore.com/y1pzOm1KYpgc20453w69UriGAiG0jjUH7SsceQPrzlDw8Gp6eQggRu84d2Th9DabnivQuC1CNk_wayltCniQ2MxLg?PARTNER=WRITER" width=1028 border=0&gt;&lt;/a&gt;  &lt;p&gt;The approach to replacing resources for all three scenarios is the same, and this should be done by using the Replace function within the Build Team from Enterprise Tool. &lt;p&gt;&lt;a href="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtERAuGGkYwwsmFYiLGp_KsskKoi3shnBsPJ_KL4X0iSVft5_HfteBSYtdCLgX0t2L3js3_OkdGyyOsY4uFw_aFE?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=625 alt=image src="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtHuTsCXT3vvBb72UXhwi7bxu9P23ldJnNqyfho8JtBJ35jM15-c5FjL-gOIpnEFz2h0bXtyeAOBawi46bkNZXGp?PARTNER=WRITER" width=1028 border=0&gt;&lt;/a&gt;  &lt;p&gt;Here we are going to replace Ralls Kim with Allen Tony, by highlighting them both and clicking on the Replace button.  If Ralls Kim already has actual work associated with a task, then the following information box appears. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pwDb1VXIYNFYQnRBt7iTRttlkBTosj9TihtvWl9-J9QEpojqZvOf-l_htCYzvwo1WR-RZE3B6G7Xd8eOIb-jZlqL6N9_7lVwo?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=235 alt=image src="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtFg921zz5lk0JL_Yq0WCO9z6U9CJC4mRX1jtJ7M9MNLSLnDyvR-SSrq9NfVK3xycM2dTokKIOz_vVrx5Dn7xZlA?PARTNER=WRITER" width=1028 border=0&gt;&lt;/a&gt;  &lt;p&gt;If a task is 100% complete, Project asks if you want to move the work to the new resource.  Note it doesn't tell you which task, and the correct answer is Cancel. &lt;p&gt;  &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pwDb1VXIYNFZrigvmE_iGn0b91FfAKbeL41NQE5IINrkwWccYQkaf2sNeAH-WHuPXGe0exeNvUzgXa_cGf_MdKQaYDgjGjUHt?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=368 alt=image src="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtFtKV-pWzbBhjxJ18KGEp2mLUhhlfMGLQlbwvoazmIySJ13ey0Y84kldnT_dBg6QYA8QqnEUdx8vhDX29MnXZeR?PARTNER=WRITER" width=1028 border=0&gt;&lt;/a&gt;  &lt;p&gt;For Task 1 which already had actual work on it, Project assigns the remaining work to the new resource.  This is shown in the split lower split window for the Task 1.  (in our system here Allen Tony has limited availability so the task has been been split and automatically rescheduled).  The actual work completed by Ralls Kim has remained in place. &lt;p&gt;&lt;a href="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtHYh849YYFslKgOZbhgsI6bUIDaODpFHrf3oCCtyhjraQl6KNpWyET-b2IEEgqYVBmsnhG5JrAWol6GUCTAK4mQ?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=351 alt=image src="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtGtFMo5QyF2tmqtqyxhWK1kNMRVB0SKZjxekqx0gtbiy8MX4r9mlwKMO78pyFKBzDmfSO8Tl5I60VbowVdzI5Py?PARTNER=WRITER" width=1028 border=0&gt;&lt;/a&gt;  &lt;p&gt;Finally, Save and Publish the project to make Team Members aware of their new responsibilities.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Changing+the+Project+Manager&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!459.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!459.entry</guid><pubDate>Thu, 24 Apr 2008 20:48:42 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!459/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!459.entry#comment</wfw:comment><dcterms:modified>2008-04-24T21:39:15Z</dcterms:modified></item><item><title>How to move a sub Project Workspace to another programme site.</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!430.entry</link><description>&lt;h3&gt;&lt;a&gt;Introduction&lt;/a&gt;&lt;/h3&gt; &lt;p&gt;This blog details how to move the WSS workspace between sub-sites. This may occur if a project is moved between programmes (setting up a programme is discussed in this  blog here &lt;a title="http://appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!307.entry" href="http://appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!307.entry"&gt;http://appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!307.entry&lt;/a&gt;  &lt;h3&gt;Process Overview&lt;/h3&gt; &lt;p&gt;By default, Microsoft Office Project Professional 2007 creates a project workspace site on Windows SharePoint Services 3.0 when it publishes a project. When a sub-project creates a workspace, the user has the option of also creating the project workspace as a sub-site of the programme. This creates a hierarchy of sites as shown in Figure 1, where Programme1 has two sub projects (A &amp;amp; B), and Programme2 has two sub projects (C &amp;amp; D). &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5erBVUrvNMpGlIhTUb4qKEFcKZxvha1rPqsju7e1B9sdJjnPiSEHL91zjavQczExE?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=244 alt="clip_image002" src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk76scBs5BrSK4T6ZVYQW6rFSj_U1UGMurJnHuTazrCjuqt2yHty_OGntHuu9zKQASU?PARTNER=WRITER" width=160 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 1 - Programme and PRoject Workspace relationships &lt;p&gt;If Project C is moved between programmes (due to reorganisation or setup issues) then the WSS site by default  not moved. The following steps show how to move the WSS site. The example will show Project C moving to be part of Programme1 (Figure 2). &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5PnR5M9wR52IsX3T6ZT8JMq4dZqLncIXTlHTz6Gs_WyZEZIig0P7laH-0WTfo0R1c?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=240 alt="clip_image005" src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk6wtTCxpAqHB7p9HNZYALfUHqi-RHvh_25uanxlrOcqWnGQfTr6Y5CR_9RH3dD6w7E?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 2 - Project C has become part of Programme1 &lt;p&gt;In order to move the Project C sub-site to sit beside Projects A &amp;amp; B it is necessary to perform the following steps. &lt;p&gt;1. Export the original site to a file &lt;p&gt;2. Create a new site as a placeholder for the migrated site &lt;p&gt;3. Import the original site to the new placeholder site &lt;p&gt;4. Change the site address to reflect the new site in the Manage SharePoint Sites page &lt;p&gt;5. Delete the original site &lt;h3&gt;Export the original site to a file&lt;/h3&gt; &lt;p&gt;On the Project server, open a command window and navigate to the following location &lt;p&gt;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN &lt;p&gt;Type in the following command &lt;p&gt;stsadm –o export –url &amp;lt;url&amp;gt; -filename &amp;lt;filename&amp;gt; &lt;p&gt;The &amp;lt;url&amp;gt; is the url of the site that you wish to export and the filename is the output file. &lt;p&gt;When the command has finished there should be a file called &amp;lt;filename&amp;gt;.cmp in the directory. &lt;h3&gt;Create a new site as a placeholder&lt;/h3&gt; &lt;p&gt;Navigate to the programme workspace where the new project is to be located, and create a new sub-site from the site actions tab. The site that you create must be a Project Workspace, and for ease, the URL name should match the original URL. Finally check the radio button so that the site is not displayed in the quick launch area. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk6fbtVFnFVehV3LghZOp4yPBs31s-X-8K9wbCr1KhoBAjX8b87ZZVMHTWxJtNGYsYY?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=158 alt="clip_image008" src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7hg0pdylWdHouE04EpDT3yNX-6rfeZLz6Rj-VoUs4nCd1FvNiXvTpB_AwiI3x-TZA?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 3 - Create the new placeholder site &lt;p&gt;Verify that the new site has been successfully created by accessing it. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5IO-oEdXeVyY0KRCCgAOgm-x6nekEJ3pFCoa2qjoYBWiLuDwHgGrrTEmiaOtwBug0?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=158 alt="clip_image011" src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7UMkTgv-7JxcnVOG3GEvhurTuQLcouqMLOvfCywI2A_LL3bK9kSBGQB02LGDLtCfs?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 4 - Verify The new site is created – Note the Breadcrumb showing Programme1 &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5tyhIkgoKCzM8ifHaTjrrsqS0S9dyVxh-Uo7BAVZ5QKfcUQkf6xGX6BsJXq9DzKbQ?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=244 alt="clip_image014" src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4wagukxnaE6cIROEnCfJwoIKQ0AazmUrVPqWzO5by9VHCWtChQ3-q-C19LxRS35No?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 5 - The three subsites now show under the Programme1 workspace &lt;h3&gt;Import the original site into the new site&lt;/h3&gt; &lt;p&gt;Once the new site has been created, it is time to import the exported data from the original site. This is a similar process to the original export. &lt;p&gt;On the Project server open a command window and navigate to the following location &lt;p&gt;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN &lt;p&gt;Type in the following command &lt;p&gt;stsadm –o import –url &amp;lt;url&amp;gt; -filename &amp;lt;filename&amp;gt; &lt;p&gt;The &amp;lt;url&amp;gt; is the url of the site that you wish to import and the filename is the input file. &lt;p&gt;When the command has finished, refresh the new project workspace site and check that the new content exists. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk6kdWtWC47chlyWUHRDguHP7LML6-Uf4Y5sddLnRON-zhIZfxA07gucXsB9t2BBmWE?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=158 alt="clip_image018" src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5q_pYEf8xcbVbdpbZBVLCIHKbypv3qAC_ssakABVgW0jDTylLvKA-HoOImnzv1Cgo?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 6 - Note the imported content on the new site &lt;h3&gt;Change the site address to reflect the new site in the Manage SharePoint Sites page&lt;/h3&gt; &lt;p&gt;In order to link the new site to the project, it is necessary to change the site address. In PWA, navigate to Server Settings | Project Workspaces. Select the relevant workspace and click on Edit Site Address. Modify the address so that it points to the new Project Workspace within the correct programme. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7etYiP0j0wKq95TnEx6umcP-FilS6Ss4wNSIOJAtVyyeYdaQh3mqiWDED7yv17lPQ?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=162 alt="clip_image020" src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5SrXRcCVxSi1qBHUU5apJywbEVuHMyEZZTq36MuVv0wwFy6vt4MKJzn3yxOEybk9k?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 7 - Modify the site address to reflect the new site &lt;p&gt;Once the site address has been modified, click on &lt;b&gt;Synchronise&lt;/b&gt; to update the permissions on the new site. &lt;h3&gt;Delete the original site&lt;/h3&gt; &lt;p&gt;The original site still exists and so it needs to be deleted in order to remove it from the original programme. Navigate to the site, and within Site Actions | Site Settings and then Delete this site. Caution, ensure that you are deleting the right sub-site, and not the programme site.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+How+to+move+a+sub+Project+Workspace+to+another+programme+site.&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!430.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!430.entry</guid><pubDate>Fri, 01 Feb 2008 22:03:10 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!430/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!430.entry#comment</wfw:comment><dcterms:modified>2008-02-01T22:03:10Z</dcterms:modified></item><item><title>Creating the Perfect Plan</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!366.entry</link><description>&lt;h3&gt;&lt;/h3&gt; &lt;h3&gt;Introduction&lt;/h3&gt; &lt;p&gt;Okay, so there is no such thing as the perfect schedule, but there are good and bad practices for creating a schedule using Microsoft Project. Some other tools don’t allow some of these bad practices, but Project just goes ahead and lets you do it – this allows lots of flexibility but if you’re not exactly sure what you are doing then it can lead to some “interesting” results. So here’s my list of best practices for using Project, and this might get you a little closer to the perfect schedule. There are a couple of tools which will help with some integrity checking of project plans, either for Project Server or for the client, post a comment or email me if you want further details and prices. &lt;h3&gt;Learn the formula that Project uses to schedule &lt;/h3&gt; &lt;p&gt;Project uses the following formula for calculating the schedule; &lt;b&gt;Work = duration * units&lt;/b&gt;. Learn it, understand it, do the algebra and enjoy it! Without this understanding you will always be frustrated with Project. &lt;h3&gt;Set the Project Start or Finish date&lt;/h3&gt; &lt;p&gt;Instead of placing a constraint date on the 1&lt;sup&gt;st&lt;/sup&gt; task in a project to define when the project starts, set the Project Start date or Finish Date as required. &lt;p&gt;&lt;a href="http://qevrkw.blu.livefilestore.com/y1pzOm1KYpgc22AZ5LIJXqepNwMbuozuaD1QoLFAQ_P5D1PsUnWrLikLmIRu2PLhM7ZwaeZQq84Al89yk6y1ZZfWw?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=157 alt="clip_image002" src="http://blu1.storage.msn.com/y1pwDb1VXIYNFZwL8-gV8D3Jr3tP7A_W-KvrpLJpLLEH_5oC3ZCjVAoYIR7Lo0u810I9yJYa1HK4h6DUun2GObTXMjZVsTyjR3V?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 1 - Set the Start or Finish date of the project &lt;h3&gt;All tasks should be linked&lt;/h3&gt; &lt;p&gt;Following on not linking summary tasks, every task such have both a successor and predecessor, except of course the last task and first task. Thinking about these relationships help you identify the relationships between the tasks. &lt;h3&gt;Minimise the use of constraint dates&lt;/h3&gt; &lt;p&gt;Using constraint dates stops Project from dynamically scheduling the project schedule. Instead, learn to use the different task types and scheduling options, including FS, SS, FF and SF types, plus lags times (in terms of days, % of the task durations and –ve / +ve lags). Sometimes it really is necessary to use constraint dates, (e.g. Must Start On), but learn how and when to use them, and read and understand the scheduling messages that Project gives you. &lt;p&gt;Note that if you manually type in a Start date, or drag a task on the Gantt Chart, then a constraint type of Start No Earlier Than is applied to the task. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pwDb1VXIYNFZdeEnugL1QEizvp52GIyLifbpx7n79Ke3EjktNTvh8sxceW2QA3V7WRH0BKSHHvxD_7Xh5mB9JxDhRFRzjnvIA?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=106 alt="clip_image004" src="http://blu1.storage.msn.com/y1pwDb1VXIYNFbJkTwcNls_oIKqrV6nVEqPzPUj-chPFZkPJ1X4DL8x4cyMtYd9rcIqlNhD7yHofWh1wOCR9blKuPSmn0rhv6Hu?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 2 - Define the Task Dependency and lag &lt;h3&gt;Instead use deadline dates&lt;/h3&gt; &lt;p&gt;Deadlines are very useful, but not often used – so instead of setting a constraint, set a deadline instead, and project will warn you if you’re going to miss the deadline. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pwDb1VXIYNFY4n5CWr2QM9ADh3PdeTUs_KtWM82ocQuPfpMndlbyuuUI8ev2ywY1n4Zwf79kusKfKcTfPcoHIIJtckDKGZil3?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=97 alt="clip_image006" src="http://blu1.storage.msn.com/y1pwDb1VXIYNFYpSWmJI-2b7UaEWR21V0lVRL8mBXcLPkDKTWm233no49GNAT1cLvhSm6AZZ1qCq69JUypsk9YbSmykW_F3sWQR?PARTNER=WRITER" width=228 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 3 - Set the deadline and project will tell you if it won't meet it! &lt;h3&gt;Learn about task types&lt;/h3&gt; &lt;p&gt;There are three task types, fixed effort (the default), fixed work and fixed duration. If you don’t understand what they mean, then I suspect you don’t understand the scheduling formula of Work = duration * units either. &lt;h3&gt;Milestones tasks should not have resources assigned to them&lt;/h3&gt; &lt;p&gt;Again, I see this with customers and it really is bad form. Milestones should identify a point in a project (often a deliverable, e.g. “code complete”), and hence don’t need resources assigned to them. &lt;h3&gt;Don’t assign resources to summary tasks&lt;/h3&gt; &lt;p&gt;In fact, don’t assign anything (costs, resources, % complete etc) to summary tasks. Summary tasks are just that, summaries of the tasks below, so if you manually change any of the values then the values of the summary tasks won’t make sense, so don’t change them! &lt;h3&gt;Don’t link summary tasks&lt;/h3&gt; &lt;p&gt;How many times do I see customer’s doing this? It won’t cause corruption if you do, it’s just that really you should only link actual tasks, rather than summary tasks. So instead of linking summary tasks (which are often phases in a project) consider creating a milestone exit task and a start task for each phase. &lt;h3&gt;Project Auditing tools&lt;/h3&gt; &lt;p&gt;There are various commercial auditing tools available. The following screen shots give you an idea of their potential. &lt;p&gt;&lt;a href="http://qevrkw.blu.livefilestore.com/y1puCOdCyzDKtFRCOCGY6CQR6WZYCssfkBvmxN-JZWFxzOzytpa4D68GFE3d1-7QkkMsT6_Y9XfQdJMpct561s0DgJV6D6dc1bJ?PARTNER=WRITER"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=66 alt="clip_image008" src="http://blu1.storage.msn.com/y1pwDb1VXIYNFbJXx5jupQDV7Q3Rl7KS96S4gpCjqwNSJpIxgNs_kFDWbCt5nR9jpP9r2hONYVyg9w7tKeMpF1uNVbVyVwVgfHC?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt; &lt;p&gt;Figure 4 - Server based auditing tool&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Creating+the+Perfect+Plan&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!366.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!366.entry</guid><pubDate>Thu, 27 Dec 2007 20:50:35 GMT</pubDate><slash:comments>7</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!366/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!366.entry#comment</wfw:comment><dcterms:modified>2007-12-27T20:50:35Z</dcterms:modified></item><item><title>Fun with Analysis Services!</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!322.entry</link><description>&lt;p&gt;&amp;lt;dry - again!&amp;gt; &lt;p&gt;Gee'd on by too many nights in hotels, I started briefly messing around with Analysis Services, and I started thinking that there must be so much you can do with this tool than the basics that you get out of the box.   &lt;p&gt;My main reason for this was that I wanted to get a view of availability in terms of days (rather than the default hours) for specific resources, and in particular, I was interested in people who are over allocated, i.e., have a negative availability.  So I'll show you how to build this type of view, though once you get into it, you'll learn a whole lot more, just as I have. &lt;p&gt;So, start off with a blank view using the MSP_Portfolio_Analyzer cube. &lt;p&gt;Then, making sure you have the tool bar showing, select the Calculation button and create a new calculated field. &lt;p&gt;&lt;a&gt;&lt;img height=275 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4sFjtA7xNvdmLvEx_-Jq7afMspA-yqBClI8asMAUaGhr2as0-5RVVi9AZXIUvqyUg" width=574 border=0&gt;&lt;/a&gt; &lt;p&gt;The following formula calculates availability (you can put this as a calculated field in the cube too) and then divides it by 7 (the number of hours in each day as defined in our Enterprise calendars)   &lt;p&gt;([measures].[capacity] - [measures].[work])/7  &lt;p&gt;&lt;a&gt;&lt;img height=320 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4KdGzxk9MRRKpf3T1wDLGkne_F-q7J6hkfvyLAHI1ypnQOeqkvl-oZpflONyALuBM" width=377 border=0&gt;&lt;/a&gt; &lt;p&gt;Click Change and the value will appear in the data section of the Pivot Table. &lt;p&gt;&lt;a&gt;&lt;img height=413 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5KU-jGeRGdGWi0Li8H8tqesQNDzwqMdZ8ljRcjVBewn_rb6U9cTmpPg-IKQV6SHaI" width=574 border=0&gt;&lt;/a&gt; &lt;p&gt;To clear up the decimal points, click on the format tab and type in #,# in the Number field, this rounds the days to the nearest whole day. &lt;p&gt;&lt;a&gt;&lt;img height=320 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7nw8ro3MXoYlYjNw-lYZ1purdegaQen2LIZpNqQFLu15xd-8lD7MvlNus5NiqCWWQ" width=377 border=0&gt;&lt;/a&gt; &lt;p&gt;and puts in the separator for the thousands... &lt;p&gt;&lt;a&gt;&lt;img height=388 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7B1S8T6NiF41t0x2gnNmFnxtCOAaBRbUBjwj0jBCZJxqyex50SIW-YoNjrgrOSPXA" width=574 border=0&gt;&lt;/a&gt; &lt;p&gt;Now, add the resources as row fields.  Obviously you may want to apply a filter, probably by RBS, or, if you've set one up, OBS or similar. &lt;p&gt;Adding a time dimension is required so that we can view over allocations over the coming weeks/months. &lt;p&gt;&lt;a&gt;&lt;img height=392 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5FiKsfci7yHVjAwWCfrRW3f0DnNs0XICz4akAoB5q9VTAdsg2jrWtDmtWgcFkiJb8" width=568 border=0&gt;&lt;/a&gt; &lt;p&gt;To highlight the resources with negative capacity, we can format the cells and also group them by sorting them in either ascending or descending order. &lt;p&gt;&lt;a&gt;&lt;img height=400 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk6uSuSeXcjx-JtpjERcB8g5IGbrUQ7cg3cpY8djQ5_Qq2jPJZmjxcNo7CaDTN5l2tU" width=391 border=0&gt;&lt;/a&gt; &lt;p&gt;&lt;a&gt;&lt;img height=324 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7cOAQxibg8UQqfbezgslJIgtNXm9twaL2msjdR-BLp6W1q3N9H_IKKISokhB4RVuE" width=381 border=0&gt;&lt;/a&gt; &lt;p&gt;All over allocated resources are grouped on the pivot table (and consequently any pivot chart). &lt;p&gt;Further more, we can drill into the month and get weekly details, which can be graphed too, so we begin to see by how many days each resource is over allocated in each week. &lt;p&gt;&lt;a&gt;&lt;img height=372 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4x2rAc7BDRCfRE7Hu1gJlNyWwpqwaLzXiZDJpwfjIwIBCWV5dZIXXtjLTYk6FX9ik" width=582 border=0&gt;&lt;/a&gt; &lt;p&gt;&lt;a&gt;&lt;img height=253 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7XY6Fqzg0xJNQ5XpLPBvl42ouo5AWKqJKqlFPr9S8Lk-LdcE9ColILr5KmYLF4Z6A" width=582 border=0&gt;&lt;/a&gt; &lt;p&gt;Enjoy,  Ben.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Fun+with+Analysis+Services!&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!322.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!322.entry</guid><pubDate>Sat, 13 Oct 2007 19:29:10 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!322/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!322.entry#comment</wfw:comment><dcterms:modified>2007-10-13T19:29:10Z</dcterms:modified></item><item><title>Master Projects</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!307.entry</link><description>&lt;p&gt;&amp;lt;red plonk&amp;gt; &lt;p&gt;I have to admit, I do like Master Projects, Microsoft appear to have got these right in this edition of Project Server and overcome the limitations of double resourcing that existing in 2003.  &lt;h1&gt;History&lt;/h1&gt; &lt;p&gt;Master Projects have been around for ages, and have generally been used to get a programme type view of all the work across multiple projects.  This was great for a single user, but broke in the 2003 server module.  Master Projects are created by inserting (Insert | Project) existing projects into a new project plan, and thus allow the viewing of multiple projects at once, and hence brings the power of the project client to bear on a programme (filters, views etc). &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4CTxDrMci7MzdvWC7KSsd5r0nAjYcbjoCzlpn_bE-Q6kf86JEO11Nqie5VNfNCeVI"&gt;&lt;img height=240 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7KzcbXvKTS2WBxr_Daz_oc52cqAjkf6NhxAeZFPO5VcluowsV14PS6HfZNsljstZ8" width=165&gt;&lt;/a&gt;  &lt;p&gt;  &lt;h1&gt;PS2007&lt;/h1&gt; &lt;p&gt;With EPM2007, Microsoft still use the Master Project concept, no-where do they call them programmes and hence Microsoft don't have a separate concept for a Programme Manager.  However, Master Projects can be used for programme management, but as with all things EPM, the programme needs to be set up correctly in the 1st instance.  I'll run you through that setup for a fictional piece of work. &lt;h2&gt;Set up the Programme Outline...&lt;/h2&gt; &lt;p&gt;The &amp;quot;programme manager&amp;quot; is basically a project manager, they have the same permissions etc.  You might want to create a separate Programme Manager group within PS2007 to identify the programme managers, but this is not necessary.  So, in order to create the programme, the programme manager creates the programme (or master project) and then inserts the projects into the programme and creates the necessary WSS sites.   &lt;h3&gt;Create the Programme.&lt;/h3&gt; &lt;p&gt;I would start by defining the programme tasks.  For this fictional programme (called Heathrow Programme), I've created a single fixed duration task called Programme Management which has the programme manager allocated 100%.  I've then created a weekly meeting which has the other resources (project managers in this case assigned to it).  The screen shot below shows this. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4lJEB610-gOZ_HU8WLKQPACkgzVFwlI3r8q9IihL3ose8gC-IS89xSmuO0uRJGcrs"&gt;&lt;img height=366 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7zn506Pdlx0UtS5Biowqr3xUVjvoRzyglWTrwN9Yv9sZ3JKcorWA53Yl8_8E3L2V4" width=640&gt;&lt;/a&gt;  &lt;p&gt;The next task is to Save and then Publish the programme.  Publishing the programme and then the projects in the right order is paramount so that the project WSS sites can be created as WSS subsites.  Note at this stage I've not yet set up any sub projects, but that's okay. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7XgAdxxjOZOReOFQRrAtQNoCWtaHgpAHz9O94zpFYMXE0fOIMsllwvmd9R58F4dgc"&gt;&lt;img height=227 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7Qb-rG3hnJ1sl4In8aMwFF4dcQoQyGmwfC-M0hX2LEltzdKlTkzPehGIRVOxHKxiQ" width=640&gt;&lt;/a&gt;  &lt;p&gt;If you use WSS, then create the WSS site when you publish the programme. &lt;p&gt;Once the programme is published, it's time to create the projects.  Do so within Project by clicking on CTRL-N for a new project.  Create the project tasks in the usual way.  Here's one of the projects that will be part of the programme. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5tJV3cj1hJd-nrw83ApGybfIncsZgubInQ3i2PJUQXhbDrzTV3iXc0fHnOjeFL6qE"&gt;&lt;img height=366 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7ofV_qE7-TiUjXaKVK75H1yz6d_cMAj8xZ1rM8Em46qHE-3gl940VuZZfDNJRUWTQ" width=640&gt;&lt;/a&gt;  &lt;p&gt;Then save and publish the project.  When it's published, be sure to select to provision the workspace as a sub workspace of the Heathrow Programme. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4TKZ9zAf-saIhj9HbCDPW6OERHxNpLOwfbBpbxcUbjF_TLiaxdV6gJTKk5cq36XvM"&gt;&lt;img height=227 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5g-jl1U32-TNy5msxLLIrYSxpyGCPPnWllEO-AY9G0z_Me3-RbI7IjgCoqBaYaLYw" width=640&gt;&lt;/a&gt;  &lt;p&gt;Repeat this for any other projects that are part of the programme. &lt;p&gt;Once all the projects are published, close them and return to the master project. &lt;p&gt;In the master project, click Insert | Project, and select the projects to insert, one at a time.   &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk4EcT8pY1JmxAZ86Tbh7LhNIsmgEm5af82wGtNnZPyLLQlpGk3rZ7wQpi8VJNxf3Ro"&gt;&lt;img height=400 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5M5a4_JS6ugWvJx3Lup6k48Nyra6xcuYkF1Pscg769ZRpXNu4drTfnkCNkOROTFHI" width=640&gt;&lt;/a&gt;  &lt;p&gt;Once the projects are inserted, they can be expanded and viewed as below. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk776VDsYZcWQG1XQOO0Iklc2scQpLyb7emZ0aAUCij5W65LnYdxqBysAaPfOJO7SAY"&gt;&lt;img height=366 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk67NLjr0t9sXGk8RGOfTHFJmSzTUVa6_bbg40vfE9Bh5SwxOHtKLW_M9VF4HIdQRvo" width=640&gt;&lt;/a&gt;  &lt;p&gt;The next part of the process is to save and publish the Master Project again. &lt;p&gt;That's the set up of the master project completed. &lt;h2&gt;WSS sites&lt;/h2&gt; &lt;p&gt;When we published the sub projects, the WSS site was provisioned as a sub set of the Heathrow Programme.  These can be viewed as sub sites within the Heathrow programme.  This allows for all information in the programme to be kept in a single place. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7h2gZKstdl3mtHBrBJQbcw7DsXL9_AuaL_CzMUhS6ytXS7LldA1hCfjMVoVYTI9HA"&gt;&lt;img height=366 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk6BhwfSl8hz2zIQKIKX3bJrhtdawjeZbrPsSdalkO9AltePpP66JJ_jz8jmXElpsCE" width=640&gt;&lt;/a&gt;  &lt;h2&gt;Project Centre Views&lt;/h2&gt; &lt;p&gt;Within the Project Centre, it is possible to view the master project.  Drilling into the Heathrow Programme allows us to see both the tasks for the programme and the tasks within each sub project.   &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk7Zzn7hxQRj3x2T4NR_6r7EFrFpJLH7NRkiKUbTIs8Xjreqi1LACi59qbBieV6pY2Y"&gt;&lt;img height=366 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk6cX7mLA46m8ulsEJp_zJv2MC398vRGHnR53zM-ShzKK2goH8tUcWnVQdCfuRWzbmU" width=640&gt;&lt;/a&gt;  &lt;p&gt;There is also the option to show or hide the inserted projects from within the project centre view. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk5mz-3ck-RE4oM3IO2jvtpDIDjqetuNaU8gZEpRc8SLVljWnCQHI0mOsu5jTip402Q"&gt;&lt;img height=152 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk6m_eCFCyC7me2__9CGz1NZz4BQL3mp4FXxsCmUlYCHkz7cck0i8LJvxumsPqPQ2lo" width=212&gt;&lt;/a&gt;  &lt;h2&gt;OLAP cube details.&lt;/h2&gt; &lt;p&gt;When the OLAP cube is built, the Programme is handled correctly as can been seen from the following screen shot.  The Heathrow Programme expands to show the work in the sub projects for each resource. &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1p1cXKVNVOyk44xBWIB-OrR9BFMgx3z5xjapzqKqVj-pb3bx5O-lnIrUGgltWaIvNAg7BuEOyFr8U"&gt;&lt;img height=366 alt=image src="http://blufiles.storage.msn.com/y1p1cXKVNVOyk6o-ujQpQHmWVe_TLwskPYKMxzpQUNRYiZbnnT1juqIJ9eSgrlruOgW25hgQfdHxpg" width=640&gt;&lt;/a&gt;  &lt;h2&gt;Deliverables.&lt;/h2&gt; &lt;p&gt;As discussed in a previous article, deliverables and dependencies can be created between projects.  This links nicely into the programme concept. &lt;h2&gt;Summary&lt;/h2&gt; &lt;p&gt;If you plan and take time to set up master projects correctly, they'll provide another level to your project management capabilities.  As usual with Project and EPM, a little bit of planning and forethought will go a long way. &lt;p&gt;Enjoy,   Ben.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Master+Projects&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!307.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!307.entry</guid><pubDate>Fri, 31 Aug 2007 21:45:15 GMT</pubDate><slash:comments>6</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!307/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!307.entry#comment</wfw:comment><dcterms:modified>2007-08-31T21:45:15Z</dcterms:modified></item><item><title>Deliverables</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!276.entry</link><description>&lt;p&gt;&amp;lt;budvar&amp;gt; &lt;p&gt;Moving back to the scenarios, I wanted to give a rounded overview of Deliverables. &lt;h1&gt;Historical implementation of deliverables. &lt;/h1&gt; &lt;p&gt;A deliverable is a tangible and measurable result, outcome, or item that must be produced to complete a project or part of a project. Typically, the project team and project stakeholders agree on project deliverables before the project begins  Examples of deliverables would be &lt;ul&gt; &lt;li&gt;A set of training materials  &lt;li&gt;A prototype product  &lt;li&gt;An agreed statement of work&lt;/ul&gt; &lt;p&gt;Quite often, a deliverable or set of deliverables are tied into specific project phases, and logically that is a sensible thing to do; however, there is no technical requirement for this. &lt;p&gt;Historically, we could always define deliverables within our project plan, we'd just call them milestones.  So for example, I could create a project plan to produce trainining materials, the last task of which is &lt;strong&gt;Training material Produced&lt;/strong&gt;, which is a miletone.  Effectively this is our deliverable.   &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1pyZeTKXGL3Gp6GB45c3r-AuN4IAjFA6XtD35AWW0JgDYk066Ve23OBtfp8HHBPv2cWeTCTAMMJ78"&gt;&lt;img height=190 alt="Project Plan to create training materials" src="http://tkfiles.storage.msn.com/y1pyZeTKXGL3GoQfIlic8HlfSslbLmavA8bl9SM20cVg7fovzCB_KqEDfW0f3cgB_c9H9GrzCQBMgc" width=640&gt;&lt;/a&gt;  &lt;p&gt;There are at least three limitations to the above (historical) method of defining outputs.   &lt;ol&gt; &lt;li&gt;It is not very easy to see just the deliverables.  You need to create a custom task field and then create a filtered view.   &lt;li&gt;You need to have access to the project plan in order to view deliverables, so sharing the goals and status of the deliverables with team members, stakeholders etc isn't that easy.   &lt;li&gt;If you are trying to manage inter-project dependencies based upon deliverables, then a change in the schedule of one project plan will cause a scheduling shifts in other project plans - this is confusing to many project managers and it is time consuming to investigate.&lt;/ol&gt; &lt;h1&gt;Microsoft's implementation of deliverables.&lt;/h1&gt; &lt;p&gt;Now, lets consider Microsoft's implementation of deliverables.   Microsoft have utilised the WSS 3.0 infrastructure to hold the deliverables, and as such deliverables are published as a SharePoint list of committed dates.  So, you cannot create deliverables until the project is published, because it's at the publishing stage that the option to create the WSS site appears.   &lt;p&gt;If we look at the three limitations defined above, we can see if they've managed to solve the historical limitations &lt;ol&gt; &lt;li&gt;A deliverable name field (and various other fields) are available in the table section of Project, so it's very easy to create a view that shows any deliverables.  Also, though Microsoft don't ship a pre-configured filter, it is very easy to create a filter called &lt;strong&gt;Tasks with deliverables&lt;/strong&gt; that just shows those tasks that have a deliverable attached to them (I'll show you how to do this later)  &lt;li&gt;Deliverables are published as a SharePoint list of committed dates, so anyone with access to the Project Workspace can see the deliverables and dates.  They are displayed in the SharePoint Gantt view, so they appear in a familiar format  &lt;li&gt;Other project managers can create a link to your deliverable, thereby modelling the inter-project dependencies, without causing any scheduling shifts between the project plans&lt;/ol&gt; &lt;p&gt;So, given the above, deliverables appear to be a very useful little peice of functionality. &lt;h1&gt;Creating a deliverable from within Project Professional&lt;/h1&gt; &lt;p&gt;There are two ways to create a deliverable for a project, the first is to do this from within Project itself, the second is from the Project Workspace.  I'll concentrate on doing this from Project. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P49URkyCj0SwOkqYjZyb0jwf26LyrO2jMLt9GfcBXZdRXPdghhO8W6a6RAxEsYmAxWNLAWw4b2z_0ZZG9MSsbbgE"&gt;&lt;img height=240 src="http://blu1.storage.msn.com/y1pHy9LEHA6P4-mUD4S9L-VDMYGtAYKT-LM2KaK3SWSxbedN5FqudWfxi0u5lyppj73o05KC6vS4kADDgKenpd-lw" width=210&gt;&lt;/a&gt;  &lt;p&gt;Once a project is published click on the Collaborate | Manage Deliverables menu.  This opens a new Deliverables task bar... &lt;p&gt;&lt;a href="http://tkfiles.storage.msn.com/y1pyZeTKXGL3GoNrY2arwqxnFWeO70wKRO075yPRjx-e1acOOGv_BdeipBBNHV54F3v7AydjS1KZWY"&gt;&lt;img height=222 src="http://blu1.storage.msn.com/y1pHy9LEHA6P48ZUjO_WRH_2ukj_SUUAMdntwX7PdcIzCPHcd7Ujzu3bS4SFGdZ74ycCzj0-FQkYH3Dr1euz1hKKThFzAA4vTfE" width=240&gt;&lt;/a&gt;  &lt;p&gt;From here, it is straight forward to create the deliverables for your project.   &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P4_hJd5lxutfOUk5c-Sj-vDsQMK-mCnKI2yMyR9ya6R587EpIETDrEaiMx7JaZnbjYiLRvXnCOB66g43-Br9gbsN"&gt;&lt;/a&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P4_n_sWTp1X86zYOo7L4yjYa7M3DQBePNOljLLeu8PmL3mAMSQ05zeIP9NWVNWVhCeNQ077tTl5vlt-eUNg07O_d"&gt;&lt;/a&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P49WH5AwLKN5jV1obx0tCg6FhZeftURtb7Wmu_RQp37JhEa4YdeKrEVj4dZe48RG93dQdKt1jl82AA"&gt;&lt;img height=289 src="http://blu1.storage.msn.com/y1pHy9LEHA6P4_vLNKNTdFQCPs-XWAu31gMCAlT0VCNO7KWco01TIhui36mud41kLVuvY-DCAKimrAPIU68CUFOwgRj-l2sD2TW" width=640&gt;&lt;/a&gt;  &lt;p&gt;If you link a deliverable to a task, then the deliverable inherits the task name, start and finish dates.  You can change these dates to reflect the committed deliverable dates (as opposed to the task dates).  This allows you to build some &amp;quot;slack&amp;quot; between your published deliverable dates and your internal scheduled dates for doing the work.  The deliverable is shown on the Gantt chart view, and an icon is displayed in the indicators column. &lt;p&gt;In the above screen shot, a deliverable has been created called &lt;strong&gt;Deliver training material to customer&lt;/strong&gt;, with a deliverable start and finish date of 10/25/07.  The deliverable has been linked to the milestone task of &lt;strong&gt;Training material Produced&lt;/strong&gt;.  Note that if the schedule slips, then the deliverable dates &lt;strong&gt;will not&lt;/strong&gt; be effected. &lt;p&gt;From within the Project Workspace, the deliverables are displayed as a Gannt chart.  This view of the project deliverables would be the view that stakeholders, team members and other interested parties would see.  Note that in the screen shot below, the &lt;strong&gt;Deliver training material to customer&lt;/strong&gt; deliverable is shown as a milestone, as it starts and finishes on the same day. &lt;p&gt;  &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P49pP7HqbGryiP4excPrhn_y2etyJ4tPkI1541Sp9q6r8rAtqq7ntVzdNOPlrRtxHjcbfTUTrVGzP16I4S9gC9KJ"&gt;&lt;img height=294 src="http://blu1.storage.msn.com/y1pHy9LEHA6P49tggrJou9EB4zxms1KzEy-S4VusqbIF6U-Iq68LBVFCzPgBLFkfogYwOWYoLKDDoGGt33crqa-oOTqMageiMCD" width=640&gt;&lt;/a&gt;  &lt;p&gt;  &lt;h1&gt;Creating and amending deliverables from within the PWA browser&lt;/h1&gt; &lt;p&gt;As previously mentioned, it is possible to create a deliverable from within PWA.  This is useful if you have a role such as a client manager, or programme manager who is responsible to determining the deliverables that the project has to deliver, and wants to detail these on a Gantt type interface.  The project manager is then able to synchronise these deliverables with the project plan.  It's an easy way for the programme manager to collect and detail the deliverables, but I think from a process perspective I wouldn't want to rely soley on this. &lt;p&gt;To create a new deliverable, click on the New button and fill in the relevent information.  Within this UI the you can add a fuller description and, more importantly, attach a file to the deliverable.  The file could be an artifact such as a customer sign off or similiar.  Once created, deliverables can be amended using same UI.   &lt;p&gt;All the deliverables are displayed in the Gantt type view, but note, this is not a dynamic schedule, the Gantt view just happens to be one of the views available within WSS3.0, so EPM takes full advantage of it. &lt;h1&gt;Red exclamation mark...&lt;/h1&gt; &lt;p&gt;Deliverables are held both in WSS and in the project plan.  Project Professional checks for discrepencies between the project plan and WSS, and if it finds any, it flags these up, and begins to guide the user as to what to do.   &lt;p&gt;  &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P4-XUdsvvB0A2uYJsN1iBH-fwMdaWff_5PcnEVY4fQiUUiIHcw4aoV3UBmNh4AlqEP8nlbNGD66iZAxzzROrU2EL"&gt;&lt;img height=432 src="http://blu1.storage.msn.com/y1pHy9LEHA6P4-vhXc_mjYTUmIgjjs9J4P10ISDfXJW9j0HuobEjWtDM7JLkqBJfxd3WkuydHRxjh3ESORvDMInDjHl_mU43AaT" width=640&gt;&lt;/a&gt;  &lt;p&gt;Essentially, it makes sense to have both the WSS and project plan deliverables synchronised, so after reviewing the differences between the WSS site and the project plan and making relevant adjustments, the project manager can select to accept all server changes. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P48VMHxoaJ92q7_i6VnbZnjL4Fx1xZTyvMzhazjsBruie6X7mcqHa4BDYl0wWxPk1MpT5Kun0miSow"&gt;&lt;img height=157 src="http://blu1.storage.msn.com/y1pHy9LEHA6P48MTrMUoVvCjzO_cHTcbAMlIhk1-r_xpssN6rkiYRVUVGxazSa6HL5XZYlYVrTTk-Wm75S8Ji3Dtg" width=240&gt;&lt;/a&gt;  &lt;p&gt;Once this has been done, the deliverable is held within the project plan, but it is not linked to any tasks, and is not graphically displayed within the Gantt chart.  Editing the deliverable allows it to be linked to a task,  and once this is done, it is displayed in the Gantt chart.   &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P4_4j_sntujAOxXScmpejnuvKMTtRQirdMjdm2mbH3XxvEbZhlOZhpslrGGnVPHQxd_R_hDQbGIQdo8QGnZH51oJ"&gt;&lt;img height=366 src="http://blu1.storage.msn.com/y1pHy9LEHA6P48JgvOv7139WFOnMyFwt5unkDIbmW-nnsvdYp1rQBlfpXY4uBKL1w1hWjkj_7GGS7BWVJaDe6mdGQ" width=640&gt;&lt;/a&gt;  &lt;h1&gt;Deliverable fields &amp;amp; Filters&lt;/h1&gt; &lt;p&gt;Each deliverable has the following fields associated with it, and they can be displayed in the table section of Project Professional. &lt;ul&gt; &lt;li&gt;Deliverable Finish  &lt;li&gt;Deliverable GUID  &lt;li&gt;Deliverable Name  &lt;li&gt;Deliverable Start  &lt;li&gt;Deliverable Type - indicates whether a task is a deliverable (1), is a dependency on a deliverable task (2), or is neither (0).&lt;/ul&gt; &lt;p&gt;The Deliverable Type field is useful because you can create filters and groups on the deliverable type.   To create a filter to see what deliverables the project is going to deliver, create a filter with the following values. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P49JmXWDygIdbCp7mkBEf_2r7uQyg2UW0FpXwWPyGjqbfq0Iamgc02A_EUib6F9uEV5TqM8rdk8FNa84AoLDZ39F"&gt;&lt;img height=180 src="http://blu1.storage.msn.com/y1pHy9LEHA6P48DSk66N1F7xe6s4D_z985GS9Og8Xt8z8065nhjIlUAYm2CRsgIrfZmKesqHuZmKJb8U6r1Fys2A3-KW0ow10C1" width=640&gt;&lt;/a&gt;  &lt;p&gt;Applying the filter quickly shows us the tasks that had deliverables associated with them. &lt;p&gt;We can modify the filter to quickly identify those tasks that are due to finish after the deliverable is due to start, ie we are going to fail to deliver these committed deliverables.  Create a filter as per below. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P48JwBeipjlHvAb1cRweMqjxc64f4fgqN3dvh18cbKO-ro29P5OsE8_R2j-s5ySJwjDB7fdwwJF7Emzkh9vZ7GhN"&gt;&lt;img src="http://blu1.storage.msn.com/y1pHy9LEHA6P4_Lii3OsUEvL7Q3ylWZS9X4uvw7PRgOrEuy6DFZyMZfFA5MMt9VqvlnrB2xEsiXP9oC2aGfiLCqJpfDCpd-jKhL"&gt;&lt;/a&gt;  &lt;p&gt;Assuming our project plan changed, and re-working the CBT content took 3 weeks, the relevant area of the project plan would look as per below (note task  &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P4-oXTXAjMPpoJizA9QAMs8jm4yNzVyeKLC9P7QgKU5Ff-goQ_A3CrE3qST40R34B3ocC2H_zg_vfg"&gt;&lt;img height=127 src="http://blu1.storage.msn.com/y1pHy9LEHA6P48pnFZ1fq_acGkBUK73MabFzfD_pxHjvwFZOqqb27KoS9FmjmBaLLDl9pG34QdUZOjmJGi0d4vQxdUd2Wiw7bve" width=640&gt;&lt;/a&gt;  &lt;p&gt;If we apply the &amp;quot;Tasks with late deliverables&amp;quot; filter, only task 10 (plus the summary task 1) will show.  This gives us the opportunity to focus quickly on those tasks that we have committed deliverables to but that we are going to be late on. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P49sYR5pMuSyNtEq_CUszjIt90s3ZmbCXCLrDlIHMmhyiyiQTqjWO14sOgqr2jZ-8VQec4vWhfODURRE0h_X6f8U"&gt;&lt;img height=88 src="http://blu1.storage.msn.com/y1pHy9LEHA6P48zBZnVDBv-IGbi3eJ4_F31hoG3AwLo0CNtuHaSxbJhP9t7yTDQNcIjI_Dvsenwhdi0hFpA5P-3QF3dMDk1hjoT" width=640&gt;&lt;/a&gt;  &lt;p&gt;  &lt;h1&gt;Dependencies on deliverables&lt;/h1&gt; &lt;p&gt;So far we have concentrated on pure deliverables, but we can extend this, but creating a dependency on a deliverable, in short, this is a way to manage cross project links, and therefore to manage programmes.  A dependency creates a link from one project, to a deliverable to another project.  In our above example, I've got a project that registers delegates for our CBT, however, I cannot register them until I have uploaded the course material for our delegates perusal.  So, I create another project plan called Register candidates, and then create a dependency from that plan to the deliverable Training Material uploaded to website.   After I have saved the plan, I can select the option to Manage Dependencies on Deliverables &lt;p&gt;  &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P4-lmtH338km3vmjThiT6hbvApNwyUL_4lSSstYJivGkWBQ7QWSXbTMzD7tKfr0PL7OLOO0s9kM4nZol5EKcLOR1"&gt;&lt;img height=228 src="http://blu1.storage.msn.com/y1pHy9LEHA6P4-x70TVR4c98v6Vp0wlv-hR9iq1rawhVpz2aXxb2ZifPoq8kWQymA54rTamheQB9u5fcL9QK9B09xMo2Gdn2hZv" width=172&gt;&lt;/a&gt;  &lt;p&gt;And then Add a new dependency &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P48PsS5Hdw0tLh994bvI6x8ZMB4CfnvTH-BIUXRNj666mmEV70cqlkLagV-1stE_rLkYWRFXP8hP3FrK34x3aTNu"&gt;&lt;img height=240 src="http://blu1.storage.msn.com/y1pHy9LEHA6P481odTATI0zNqtNJhZ1m0LnLFnapwhVpRfpiUwIISgcwDhVIZ67NfTx14-OvgtRFxBYqyC8W3DS-hllku1bVJGl" width=162&gt;&lt;/a&gt;  &lt;p&gt;And link it to the relevant task &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P48JN0xaIuEDPW5phfM0zWCs2Fh-rPjjKkurU7bJvVrnfMsZmfNWl2M8Ff-HLyv64N-W9v7i6c8RA45NT0JswUZi"&gt;&lt;/a&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P4_eZajHETGK12wvNbL4AdmhoDLwcBPEuMe6NZCUPPnWTEE_hUHnmpVNre4Missm-zaNEkAyFz1Wwg89xrGDYdGx"&gt;&lt;/a&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P49z4-iEmHqWwivqa6JA0Po6rPqRcka3HOkXR-Mf7KZyf6fZ72s4pdZ0exass4C2gPSRKAwYwkVi7dwyIPGcj29y"&gt;&lt;img height=480 src="http://blu1.storage.msn.com/y1pHy9LEHA6P48o4AUl6Y8TSRPqVcNLm3OknXNOj5_2Y2EQBbOcW-awufGzhSfmPGG0zyvY_86kCwtIfvbKF9ffkH-qFIuiSV-P" width=367&gt;&lt;/a&gt;  &lt;p&gt;This External dependency is a type 2 dependency (see dependency type above), and is represented in the Gantt chart as differently to the internal (type 1) dependency.  The default colour is yellow as shown below. &lt;p&gt;&lt;a href="http://blu1.storage.msn.com/y1pHy9LEHA6P48RVT3kxn7kFQ5PD52hrUMtxVuYOyOmUrVTObS0B7ha6NCZBdBVtH1dC9otXbYqY8mW6Hm5mPvgUY8aJ1yNy5r4"&gt;&lt;img height=93 src="http://blu1.storage.msn.com/y1pHy9LEHA6P4_Dhos_70DF0oQWbTzws1oprLy8IzRJOIHYvEJP2pGCcwiTW8EUuqtlE-KWWlgV0bm1LOLmuWDT5L9AoIIACPh0" width=640&gt;&lt;/a&gt;  &lt;p&gt;Again, we could create a filter that shows which dependencies are going to cause us issues within the project plan. &lt;h1&gt;Reporting&lt;/h1&gt; &lt;p&gt;Deliverables are available within the OLAP cube, so for each Project/Programme etc you can see the number of deliverables.  It is all relatively easy to see so I'm not going to attach any screen shots from the OLAP cube.   This is good from an analytical point of view, but it's not much good if you actually want to see a description of the dependency etc.  Unfortunately, there is nothing out of the box that gives this descriptive information, so SQL Reporting Services becomes your friend here.  Fortunatley, the Project Server SRS Reporting Pack gives a solid example of deliverables reporting (project give and get) so it is worth downloading it from &lt;a title="http://blogs.msdn.com/project/archive/2007/01/30/sql-server-reporting-services-report-pack-for-project-server-2007.aspx" href="http://blogs.msdn.com/project/archive/2007/01/30/sql-server-reporting-services-report-pack-for-project-server-2007.aspx"&gt;http://blogs.msdn.com/project/archive/2007/01/30/sql-server-reporting-services-report-pack-for-project-server-2007.aspx&lt;/a&gt;.  Again, it's relatively simple once the reports are up and running, so I'm not going to attach any screen shots here (they are available as part of the Reporting Pack anyway). &lt;p&gt;  &lt;h1&gt;Limitations&lt;/h1&gt; &lt;p&gt;There are pobably a few more limitations in addition to the ones below, if you can think of any, let me know. &lt;ul&gt; &lt;li&gt;If you link deliverables to a task (and I think this is a good idea), then you are limited to one deliverable per task  &lt;li&gt;Deliverables are stored as a WSS3.0 list and therefore can only be created once a project is published  &lt;li&gt;You cannot create dependencies on a deliverable between tasks within a master project, so in order to use dependencies on a deliverable within a programme, open the individual project file, rather than trying to do it within a master project.&lt;/ul&gt; &lt;h1&gt;Links&lt;/h1&gt; &lt;p&gt;Chris Boyd's Project Programmability blog on deliverables - &lt;a title="http://blogs.msdn.com/project_programmability/archive/2007/02/19/working-with-deliverables.aspx" href="http://blogs.msdn.com/project_programmability/archive/2007/02/19/working-with-deliverables.aspx"&gt;http://blogs.msdn.com/project_programmability/archive/2007/02/19/working-with-deliverables.aspx&lt;/a&gt; &lt;h1&gt;Credits &lt;/h1&gt; &lt;p&gt;Trebb Gate &amp;amp; Chris Boyd; plus others I will have forgotten so please accept my apologies. &lt;h1&gt;Thanks - &lt;/h1&gt; &lt;p&gt;any enjoy....  Ben.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Deliverables&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!276.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!276.entry</guid><pubDate>Tue, 31 Jul 2007 22:38:31 GMT</pubDate><slash:comments>2</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!276/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!276.entry#comment</wfw:comment><dcterms:modified>2007-07-31T22:38:31Z</dcterms:modified></item><item><title>Migrating from MSDE to SQL2005</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!243.entry</link><description>&lt;p&gt;&amp;lt;black sheep&amp;gt; &lt;p&gt;This blog is a move away from the scenario based blogs on PS2007 that I've been writing, instead it's an overview of a situation that I think will become more common as organisations upgrade their project server databases (and WSS2.0) to SQL2005 (either from SQL2000, or in some cases there is a requirment to do it from MSDE).  Normally this is done by the IT guys, but of course it's not as straight forward as they first think. &lt;p&gt;This blog comes about from direct customer experience, and I don't necessarily have all the answers to hand, but it describes the approach I took and the pitfalls along the way.  Also, most of it is written from memory so use this as a guide only! &lt;p&gt;&lt;strong&gt;Existing environment&lt;/strong&gt; - the customer had a single server installation of PS2003 SP2a which had been running for about a year.  The installation used MSDE and WMSDE on the production box, both installed by during the initial installation.  MSDE is used for the Project Server databases, and WMSDE is used by WSS2.0 (the main differences between the two databases is that WMSDE removes the 4GB size restriction) &lt;p&gt;&lt;strong&gt;Desired environment &lt;/strong&gt;- a two server installation, leaving the existing application server alone, but moving the databases to a dedicated SQL2005 database server. &lt;p&gt;&lt;strong&gt;&lt;font size=5&gt;Installation steps&lt;/font&gt;&lt;/strong&gt; &lt;p&gt;&lt;strong&gt;Step 1 - install SQL on the database server&lt;/strong&gt; &lt;p&gt;The first job was to install SQL2005 SP1 on the new server.  This was just a quesiton of following the instructions.  The SQL2005 setup is  different from SQL2000 so if you are not used to it then try it first.  SP2 had just been released, but we decided it was too risky to include this in the equation, so we stuck with SP1.   The SQL2005 install includes Analysis Services, so everything is nicely tied up in one installation and one SP install.  There aren't any instructions for installing SQL2005 for use with ProjectServer 2003, so I've given you a few screen shots to help. &lt;p&gt;&lt;img height=356 src="http://blufiles.storage.msn.com/y1pg-OPVReZNhbpPKk-cQnoUhgOjK_7Ds5jcRNZWJ659CSwm8ut9F3c-9MazvedgevcK9eKVcVRL1o" width=390&gt; &lt;p&gt;  &lt;p&gt;&lt;img height=368 src="http://blu1.storage.msn.com/y1pepIGT5CmYYf2_esKIOYCqbqcqvhIta1irVInmJQ0h-OV88oZcuaeGyP3A5vUq44M2cVV-PWkqiOhhAbsABy6gA" width=410&gt; &lt;p&gt;At the end of setup UI, SQL is ready to install and it gives a brief summary. &lt;p&gt;&lt;img height=369 src="http://blu1.storage.msn.com/y1pepIGT5CmYYfO_RoASDmuy-hq3FBL8n4x9AwFm8nDsKAOuUuf3IBHLem0TvRBxKnOeqVhjqusdWW8o5Q5mZCm4Q" width=404&gt; &lt;p&gt;Once the database is installed, it needs to be managed.  You need to install the workstation components in order to install the SQL Server Management Studio. &lt;p&gt;&lt;img height=376 src="http://blu1.storage.msn.com/y1pepIGT5CmYYcyY9DrQM5DddUDea6J10WVTVmkZAk68MTAUTachw2iGrewsF44wST74n5dqAU-EI_YDhtUQXx5mg" width=411&gt; &lt;p&gt;Once everything is installed, it's time to install SP1. &lt;p&gt;&lt;img height=411 src="http://blu1.storage.msn.com/y1pepIGT5CmYYcyS48CXgXTNRVs8eHRCFTkCdMxRNGrso5ffJlRCceoRYSffVVg__RH2SwBJNlmBgJmmWHtNdQkug" width=410&gt; &lt;p&gt;&lt;strong&gt;Step 2 - create a new PS database.&lt;/strong&gt; &lt;p&gt;My customer wanted a test environment creating in addition to the live environment, so I created a new DB and then ran the setupdb.cmd command to create the PS tables etc.  This has the added advantage of create the correct roles for ProjectServer.  The standard websps.sql script that setupdb calls need to be modified as the SQL statements between 2000 and 2005 are different, and websps.sql needs to be modified as below.   &lt;ul&gt; &lt;ul&gt; &lt;li&gt;Line 8781: select WASSN_ID from MSP_WEB_ASSIGNMENTS WAT2 &lt;b&gt;WITH &lt;/b&gt;(index... &lt;li&gt;Line 19456: select WASSN_ID from MSP_WEB_ASSIGNMENTS WA &lt;b&gt;WITH &lt;/b&gt;(index ... &lt;li&gt;Line 26315: select WASSN_ID from MSP_WEB_ASSIGNMENTS WAT2 &lt;b&gt;WITH &lt;/b&gt;(index...&lt;/ul&gt;&lt;/ul&gt; &lt;p&gt;The full details of these modifications can be found in the references section &lt;p&gt;Once the database is created, you'll need to upgrade it to SP2a.  Again, you'll need to modify websps.sql in the SP2a installation directory as above. &lt;p&gt;This should give a configured database, and allows us to test the connectivity from our application server to the db server. &lt;p&gt;If your existing system isn't on SP2a, then I would perform an SP2a upgrade prior to moving any databases. &lt;p&gt;&lt;strong&gt;Step 3 - restore the existing MSDE database&lt;/strong&gt; &lt;p&gt;Take the existing database from MSDE and restore it onto the db server.  For this I simply stopped the MSDE service, copied over the database files, and attached them an empty database on the db server.  Very simple indeed.  I've seen posts that say that the database needs to be run in SQL2000 compatibility mode, but this wasn't an issue for me. &lt;p&gt;&lt;strong&gt;Step 4 - use Editsite to configure the ProjectServer database info.&lt;/strong&gt; &lt;p&gt;I restarted MSDE on the app server, and then ran editsite.  Just to be sure, I always run editsite to check everything is okay.  It's also a good way to verify database names and role names etc.  I made sure using Editsite and SQL Management Studio that the roles were correct etc, and then edited the existing ProjectServer instance in Editsite to reflect the new db server.  This part of the installation involved lots of checking and tweaking of the roles etc before getting it working. &lt;p&gt;&lt;strong&gt;Step 5 - migration of WSS databases&lt;/strong&gt; &lt;p&gt;This should have been simple, as there are various KB articles (referenced) on how to move WSS2.0 databases.  However, I was unsuccesful in being able to move the databases and retain the integrity of the system, I think in part because when you do a WSS2.0 install onto WMSDE lots of decisons are taken for you, and I couldn't access the configuration database once I'd moved it.  So the upshot was to export the WSS data, run wsswiz to remove the ProjectServer templates (I'm not sure if this is exactly necessary but I did it anyway) then remove WSS2.0 from the app server, remove WMSDE, reinstall WSS2.0 and point the installation to the new db server, run wsswiz to reconfigure WSS and PS to talk to each other, install the WSS SP2a upgrade (from ProjectServer SP2a), run PSCOMplus to set the identity for WSS, link PS to the new WSS instance (via the ProjectServer Admin page), and import the WSS data (sites, docus etc) and then link the WSS sites back to the projects.  All in all there is a lot to remember here, and not too much is documented.   How I love WSS! &lt;p&gt;This gives us a system that is now does exactly what we had before, but on a new database server. &lt;p&gt;&lt;strong&gt;Step 6 - Analysis Services&lt;/strong&gt; &lt;p&gt;ProjectServer 2003 needs the following hotfix applied before it will connect to analysis services - KB 905386.  Note the scripts detailed will need to be run on each projectserver database.  There is much to download and update here, so expect it to take a while.  Plus MS can take 4+ hours to get the hotfix to you, so get it a few days beforehand. &lt;p&gt;&lt;strong&gt;Step 7 - Test environment&lt;/strong&gt; &lt;p&gt;Using editsite, a test environment was created that used the original database I created using the setupdb.cmd command.  Remember that this database needs updating to SP2a, plus have the analysis services hotfix scripts run against it.  I had big issues here, the existing migrated database would connect, but not the new one, and I kept getting the following error &amp;quot;&lt;strong&gt;Cannot connect to &amp;lt;database&amp;gt; on &amp;lt;server&amp;gt; server&amp;quot; &lt;/strong&gt;.  It came down to resetting the passwords for the SQL users (MSProjectServerRole etc).  Once this was fixed everything worked okay, but it stumped me for a while as I checked and rechecked everything.  Plus the error came back immediatley, and I didn't at first think it was a permissions problem.   &lt;p&gt;&lt;strong&gt;References&lt;/strong&gt; &lt;p&gt;SQL statement modifications - &lt;a href="http://blogs.lv0.net/mpatest/archive/2005/11/18/182.aspx"&gt;http://blogs.lv0.net/mpatest/archive/2005/11/18/182.aspx&lt;/a&gt;  &lt;p&gt;Moving WSS databases - &lt;a title="http://www.microsoft.com/technet/windowsserver/sharepoint/v2/movewsdb.mspx" href="http://www.microsoft.com/technet/windowsserver/sharepoint/v2/movewsdb.mspx"&gt;http://www.microsoft.com/technet/windowsserver/sharepoint/v2/movewsdb.mspx&lt;/a&gt;; KB 905386   &lt;p&gt;Analysis Services hotfix - KB 905386; &lt;a href="http://support.microsoft.com/default.aspx/kb/921116/"&gt;http://support.microsoft.com/default.aspx/kb/921116/&lt;/a&gt; &lt;p&gt;SQL2005 and ProjectServer 2003 issue - kb917401  &lt;p&gt;&lt;strong&gt;Credits - &lt;/strong&gt;thanks to Brian Smith, Bill Raymond and Kate Simpson and my customer - they are all unwitting collaborators. &lt;p&gt;&lt;strong&gt;The end&lt;/strong&gt; &lt;p&gt;As is usual, 5% of the work above took 90% of the effort, it's always just one or two snags that take the time! &lt;p&gt;enjoy....  Ben.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Migrating+from+MSDE+to+SQL2005&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!243.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!243.entry</guid><pubDate>Mon, 25 Jun 2007 12:07:17 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!243/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!243.entry#comment</wfw:comment><dcterms:modified>2007-06-25T12:11:10Z</dcterms:modified></item><item><title>Timesheets - What are they, what do they do?</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!234.entry</link><description>&lt;p&gt;&amp;lt;Oyster Bay Merlot, NZ&amp;gt; &lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt; &lt;p&gt;Timesheets are a completely new area for PS2007.  Okay, so PS2002/3 had a button labelled &amp;quot;Timehseets&amp;quot;, but the main function was task statusing, rather than a true timesheet system.  So, Microsoft have invested a whole lot of time in this functionality, but the Timesheet functionality is therefore a v1.0 release, so expect lots of learning, some issues and some features that are lacking.  There's a lot to timesheets that could fill a book, so I'm just going to try and give an overview here.  Also, lets just be realistic about timesheets, the technical peice is the easy bit, embedding a timesheet process into any organisation is more difficult. &lt;p&gt;&lt;strong&gt;Timesheets vs Tasks&lt;/strong&gt; &lt;p&gt;The 1st thing to understand is that Timesheets are a completely separate process to task updates.  Task updates (or task statusing) updates the task assignment with the relevant details as per the tracking method defined for the project or on the server (% complete, work done and work remaining or hours of work done per period).  Timesheets information is collected so that line managers can verify the hours worked per period, and can include both project work and non project (unverified) work. &lt;p&gt;&lt;strong&gt;Timesheet process&lt;/strong&gt; &lt;p&gt;Nobody really likes completing a timesheet (having to complete a timesheet was a contributing factor for me leaving an employer once, long long ago...) so one of the design goals of timesheets is to have the ability to create a timesheet and prepopluate it with a single click.  Imagine it's Friday afternoon, and you have already completed your task updates (as these have been the drivers for your work during the week), then creating a timesheet pre-populates it with the tasks that you have have either actual work or planned work on this week. &lt;p&gt;&lt;strong&gt;Prerequisites&lt;/strong&gt; &lt;p&gt;There are several things that need to be set up before you implement timesheets.  These are all available under Server Settings | Time &amp;amp; Task Management. &lt;p&gt;&lt;strong&gt;Timesheet Periods&lt;/strong&gt; &lt;p&gt;Timesheet periods require defining before timesheets can be created - these are created in Server Settings | Time &amp;amp; Task Management | Timesheet Periods.  It's easy to create a bulk set of periods, but remember to use a prefix or suffix in order to make the timesheet period unique, eg TSCY07 for timesheets in calendar year 07.  Once the timesheet periods are defined then you are able to create timesheets. &lt;p&gt;It is possible to set timesheet periods to closed, when this is done users can no longer enter time for that period. &lt;p&gt;&lt;strong&gt;Administrative Time&lt;/strong&gt; &lt;p&gt;Non-working time or adminstrative tasks (holidays, training, admin time etc) are now part of the timesheet function, administrative projects (as existed in PS2003) no longer exist (unless they are imported as part of a migration).  Administrative time is entered as part of the timesheet, and can be set up to require approval from the line manger as required (eg vacation).  Administrative time, when created, can have a category of working or non working.  If the work type of the administrative time category is non working, then a calendar execption is created for the resource, thereby affecting the capacity of the resource.  This is a very neat feature which doesn't appear to be documented anywhere! (no doubt someone will point me to some documentation on the web somewhere). &lt;p&gt;&lt;strong&gt;Creating a timesheet&lt;/strong&gt; &lt;p&gt;To create a timesheet, select the correct timesheet period (this will normally be the current period).  Clicking on Create Timesheet will create the timesheet with the default settings.  This setting is within the server settings and is either one of the one of  &lt;ul&gt; &lt;li&gt;Create with default settings - the timesheet will display the Administrative Time categories marked with Always Display and the option selected for Default Timesheet Creation Mode.  &lt;li&gt;Create with tasks - the timesheet will display the resource's current assignments.   &lt;li&gt;Create with projects - the timesheet will display the projects on which the resource has assignments.  No tasks are displayed.  &lt;li&gt;Do not autopopulate - the timesheet is blank.&lt;/ul&gt; &lt;p&gt;Clicking directly on the Create Timesheet link with create it with the default settings, but it is also possible to select a drop down list to select one of the four options abolve. &lt;p&gt;I suspect most organisations will set the default setting to be Create with Tasks, and once created the user will be able to modify it to reflect the work they did during the week.  The beauty with Create with Tasks is that it will take the task assignments that you and bring in the actual work, or planned work, and place that work in the relevant day in your timesheet.  Thus, for the majority of cases, a user should only have to add in non-project work (eg administrative time) or unscheduled (or unverified line items) in order to complete the timesheet. &lt;p&gt;When you have created the timesheet, the user begins to complete the information as required.  Again, organisation processes will determine exactly what is needed.  The important thing to remember here is that users are looking to account for their time in the working week, so we're looking here to fill in 40 hours (or whatever your standard is). &lt;p&gt;&lt;a href="http://blufiles.storage.msn.com/y1pg-OPVReZNhb2z6XKUibtUkKwXW9mmUexyNoJvWLvDcE8tCzBWsgQK0x97xVZyA6Cbruc1t59Zuk"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=516 src="http://tkfiles.storage.msn.com/y1pg-OPVReZNhZ4q5s4EDMFEM77tkMCVyfDuXr3QjYDpTJ1Q2PKEBnLhe0HyCZGpIk0" width=933 border=0&gt;&lt;/a&gt;  &lt;p&gt;Here is the a standard timesheet created for Kim Ralls (one of the users in Microsoft's sample EPM system).  The important thing to note here is that Kim's planned time from her task assignments has been brought directly into the timesheet.   The example above actually shows that the resource manager in Kim's organisation (Litware) isn't really doing their job very well, as Kim has 24 hours of planned work &lt;strong&gt;each&lt;/strong&gt; day.  Kim would obvioulsy modify the timesheet to reflect the actual work that she did. &lt;p&gt;Kim can also administrative (or non-project) time as described above. &lt;p&gt;&lt;strong&gt;Options&lt;/strong&gt; &lt;p&gt;There are various options for filling in a timesheet, they can be found under the Actions menu and whilst completing a timesheet line.  Generally, these all have to be enabled by an administrator within the Server Settings &lt;ul&gt; &lt;li&gt;Creating unverified timesheet items - these can be used to enter time into the timesheet that is neither project time or adminstratrive time.  &lt;li&gt;Identifying billable/non billable time  &lt;li&gt;Identifying overtime/non-overtime time  &lt;li&gt;Identifying additional categories of time - e.g., this could be used to categorise External customer time vs Internal custer time&lt;/ul&gt; &lt;p&gt;Obviously, these settings have to be set appropriately by the adminstrator and will require maintaining. &lt;p&gt;&lt;strong&gt;Submitting the timesheets&lt;/strong&gt; &lt;p&gt;Timesheets are submitted to your timesheet manager, and this field is defined, not by the RBS, but by a specific Timesheet Manager field held against each resource and editable via the resource centre.  If a resource is set as their own timesheet manager, then the system autogenerates the timesheet approval, otherwise the timesheet is submitted to the defined timesheet manager and they have the opportunity to either approve or reject the timesheet.  If they don't have the perrmissions to approve the timesheet, then the timesheet is marked as acceptable and is routed to the next approver as defined as the timesheet manager of the 1st approver.  If the timesheet manager blank then you will be prompted to enter a user to approve your timesheets; any administrative time will be auto approved.   &lt;p&gt;&lt;strong&gt;Reporting&lt;/strong&gt; &lt;p&gt;There are no out of the box reports for timesheets.  There are two options, one is to use Analysis services and create a report that meets your needs, and the other is to develop a report using a tool such as SRS. &lt;p&gt;Finally, if you don't want to use timesheets at all, then you need to do two things to make them disappear. &lt;ul&gt; &lt;li&gt;Make sure the timehseet manager is blank/null for all resources, this stops the system calculating how many timesheets you need to fill in on the homepage  &lt;li&gt;Remove the link to the timesheet from the site map.&lt;/ul&gt; &lt;p&gt;I hope this has given you an insight to timesheets, there are various options and features that I haven't covered in this blog.  Maybe another time.... &lt;p&gt;Enjoy,  Ben.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Timesheets+-+What+are+they%2c+what+do+they+do%3f&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!234.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!234.entry</guid><pubDate>Mon, 21 May 2007 12:02:41 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!234/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!234.entry#comment</wfw:comment><dcterms:modified>2007-05-21T12:02:41Z</dcterms:modified></item><item><title>Team Assignments</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!230.entry</link><description>&lt;p&gt;&amp;lt;London Pride&amp;gt; &lt;p&gt;One of the really neat features that will solve lots of business issues is the new team assignment feature.  Team assignments are a very easy concept to get your head around, but not particularly intuitive to set up.  Once set up though they really work well, just follow a few basic principles and you'll never look back. &lt;p&gt;The usage scenario goes like this..., the project manager assigns the task to a team resource.  A nominated team leader can then view the team assignments, and divvy them up between the team members (I can imagine this happening during a Monday morning planning meeting).  Members of that team can then self assign themselves to the tasks, thereby changing the task assignment to the individual team member.   &lt;p&gt;The 1st thing we need to do is to think about what teams we have.  In our scenario we'll mimick a customer that I've just been working with, they had four teams, and so we'll name the teams in the following manner &lt;blockquote&gt; &lt;p&gt;LonLib.TIC.Networking &lt;p&gt;LonLib.TIC.Infrastructure &lt;p&gt;LonLib.TIC.PMO &lt;p&gt;LonLib.TIC.Procurement&lt;/blockquote&gt; &lt;p&gt;Now, those of you who are astute will see the heirarchical nature of our teams is formatted in such as way as to sugget that they should be set up as Enterprise Codes, and of course, you'd be right :) &lt;p&gt;So, having decided upon the name of the teams, we need to set this structure up in the Enterprise Codes.  Microsoft have done some of this for us, by definining an Enterprise Resource Code called Team.  However, we still need to set up a look up table to be associated with the code, so create a look up table called Team (or something similar).  Populate this lookup table with the team structure defined above, and then associate the Team Enterprise Code with the Team Lookup table.   &lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB6JMlO9aStOpq3wEG82UFKWQhVHLMfR6utWaStwG4sYvYgeQFmZEouw0fLhGw24jdvWf6nfo7y6kHkOT5-UWclzY2ns38DB6PK5Zfivl76LEw"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=251 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5ID4Hk4kNShGQyM8YeuLN5m45JsC1o3zF4-vof5RMU-_BWbTLkFHV4MlHDbkrZdguc8JE3GARzJa3BkX_MNmmqk2D1o5OifaFiNZyhw34kkQ" width=640 border=0&gt;&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size=1&gt;Figure 1 - Create the lookup table to define the team structure&lt;/font&gt;&lt;/strong&gt; &lt;p&gt;That's the 1st bit of the set up done. &lt;p&gt;The next peice of work is to set up our resources so that they are members of the correct teams.  This is dead easy, especially if you already have some way of grouping resources by team (perhaps these codes came over from a PS2003 migration, or you have set up the RBS).  If you can use a group by field to view the resources by team, then you can use the bulk edit faciltiy in Resource Center to apply the correct team to the resources, if not, select all the resources, click edit, navigate down the page to the Team Member section and select the correct resource to edit.   &lt;p&gt;If you edit the resources individually, DO NOT click the check box for Team Assignment Pool. &lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB57CxJLHWYHdPBddWfDp8GWe834AOVnxwPCjOQMfOrHbamNTBMc2JefsyTbpidY-7eq_X0kYRAn4iVHHmf69PgnN0tZgkzGzIVrkSXMiYGW3g"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=293 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB61QedFJJ0s2eXb4XSMQ8faLb0nK_UZyDZm6CeYJ1GfhKi-PTHE2nz_Jt5PB55w67E69NMMn5StqBn91Eh2FACjEQXqpS9yWhfmpJITd0h21A" width=640 border=0&gt;&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size=1&gt;Figure 2 - Assocoiate the correct team name with the resources via Bulk Edit&lt;/font&gt;&lt;/strong&gt; &lt;p&gt;That's the 2nd bit of the set up done. &lt;p&gt;Now, ideally we also want a resource which will represent the team.  I would suggest creating a resource with the team name, so in this example, I would have four additional resources and name them  Networking, Infrastructure, PMO and Procurement. &lt;p&gt;So, back to resource center, and create the team resources.  This time, do click the check box for Team Assignment Pool, and also of course, select one of the teams from the drop down list. &lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5RKl9oCL1XqDc80y08NNKwNpUjmGrfY3ZG3rQ7gfFE-JtHpBpRpvEP4bmZ7epXKmunVE1J4S47KsNtgoH9FatxKCZrAKpIok__dSK39F-CNA"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=296 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5nEakyna4nxO9jCPD_xhmtK-OTjWjg0d5jlsr9fG2kk3AXJ6_B6iTyy6uqRWJBNPDaXhWIoqpAE5_pFE05Z9JnEJrc3tJszUpAgYkAlhJl0g" width=640 border=0&gt;&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size=1&gt;Figure 3 - Create the Team resource&lt;/font&gt;&lt;/strong&gt; &lt;p&gt;So, to recap, I've not got a Networking team resource that is called TEAM_Networking, it will have the Team Assignment Pool checkbox selected, and it will have the LonLib.TIC.Networking value selected from the Team Name: drop down list. &lt;p&gt;That's the 3rd and final bit of the set up done. &lt;p&gt;So, in order test this, create an assignment for the TEAM_Networking resource.   &lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB4Ci6oFZCEV0Ml3LYLsPC64NSImmB0DNoz_bsfMcuBvFrRD1fX1ICZ4RVIizDt-n-OIHLEU8hqKbOWPK-1TNHmff9Z9Yx49gnY1S4g8YUxkpw"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=206 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB6A6YtSq_4GGhcI7zEUE64ESDxvlFS_wgm-su-BxhD-dsCzO9bjnqEL3oe9fkjuHIWjNUxQ5DWDr33hmKkARlTsPgHOWdp7cA49N-d1l4OTYA" width=640 border=0&gt;&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size=1&gt;Figure 4 - Create a resource assignment for our Team resource&lt;/font&gt;&lt;/strong&gt; &lt;p&gt;Once this is saved and published, we can check the assignments for the TEAM_Networking &lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5jTr2XELHvqVCu7X4np5TN5Ib9EvIXN8KDyBUz56cAtc75CzpRZFjWqwq-gL8P_LuHbqZ8Johy4dD4XETq6UtMeGcbuC9gVXlRuawaZY0FlA"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=309 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB6Y8NnfVy4YSmY-GQORUNcuzsSff5Jh3p8sOTnogpEBhSwbj4lhfXPkAX__ojwtTl0o4xf9AUWkv33nZUnckUdlIPShjUGbZusONtOLJR5e4w" width=640 border=0&gt;&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size=1&gt;Figure 5 - The TEAM_Networking assignment shows in the availability view&lt;/font&gt;&lt;/strong&gt; &lt;p&gt;Note that capacity does not calculate for the team, hence the availibity showns -8hr for the TEAM_Networking resource. &lt;p&gt;So, now the team manager/lead would divvy up the tasks between members of his team, and the team members would self assign themselves to the team.  Log on as a user in the TEAM_Networking team and in the My Tasks view, click on the Self-Assign Team Tasks button, and select the tasks you want to do. &lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB7wt1wOyu4deWehD6_zHoylaTSaL7vk88FCB36LGM3VZsyWI8dYa870WBIDpiCx_6jwa4yehbmbXGNRYKQi3kgWt20pcua9VSTZ2RHoKf-yoQ"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=201 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5QE3KlyOIcxJkP5gNMO4QkuzuD3EeN4eTZKdtdLnaJmgd5qTAhN-1-86HrhkAHAJ5D65UDa4yyMxYikBMz2b-xwz3tmmbWJGkIYz9RIT4Csg" width=640 border=0&gt;&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size=1&gt;Figure 6 - Self assign the team tasks&lt;/font&gt;&lt;/strong&gt; &lt;p&gt;The project manager (or assignment owner) will be notified of the update to the task, however they don't need to accept the update before the resource can perform work on the task, the resource can start work right away.   &lt;p&gt;If however the newly assigned resource performs some work and then wants to reassign the task to another team member, then the project manager must accept the original assignment before the the reassignment can happen.   &lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB57nobmeldnFPVLUVGtAm6sUViTvVlRCfUb1WkEr0Tb6Vlxylws7S3XloCK_yTM44d5O-TmYINvm7vgHvDwawUXtlbQ_IlgpU1tQWN2vHrezQ"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=480 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5xw0yNk8NHT2SkXnnmlurencQmATbFDYEbfbfqxo8Ompm0EDazxgOa2ecPLce75-XscLde3OGyPFHPF8rNkw8n8MWMQxFj-6S7FhC5l6D4uQ" width=640 border=0&gt;&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size=1&gt;Figure 7 - Project manager accepting the task assignment.  Clicking on the task name shows the detail of the reassignment&lt;/font&gt;&lt;/strong&gt; &lt;p&gt;&lt;font size=1&gt;Enjoy - Ben.  &lt;/font&gt;&lt;a href="http://www.applepark.co.uk"&gt;&lt;font size=1&gt;www.applepark.co.uk&lt;/font&gt;&lt;/a&gt;&lt;font size=1&gt; &lt;/font&gt; &lt;p&gt;&lt;font size=1&gt;Credits - Brian Smith, plus others...&lt;/font&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Team+Assignments&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!230.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!230.entry</guid><pubDate>Thu, 01 Mar 2007 10:21:42 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!230/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!230.entry#comment</wfw:comment><dcterms:modified>2007-03-01T10:21:42Z</dcterms:modified></item><item><title>Resource Plans - How to use them with a rolling project plan</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!215.entry</link><description>&lt;p&gt;&amp;lt;dry&amp;gt; 
&lt;p&gt;As discussed in my previous post EPM2007 allows for some new scenarios regarding resource management. This blog discusses using a resource plan in conjunction with a full blown project plan (termed an Enterprise Project), which enables us to perform rolling plan management. For the purposes of this blog I have defined an Enterprise Project as one which is edited in Project Professional 2007. Also, you need to read the previous blog in order to understand this one. 
&lt;p&gt;1&lt;sup&gt;st&lt;/sup&gt;, a couple of definitions:- 
&lt;p&gt;&lt;b&gt;Rolling Project Plan&lt;/b&gt; – one that never finishes, e.g. maintenance plans on a plant, painting the &lt;a href="http://en.wikipedia.org/wiki/Forth_Bridge_(railway)"&gt;Forth Rail Bridge&lt;/a&gt; etc. 
&lt;p&gt;&lt;b&gt;Planning horizon&lt;/b&gt; - the number of weeks or months that an organisation creates detailed plans for. Beyond the planning horizon plans need further refinement. 
&lt;p&gt;&lt;b&gt;Horizon Date&lt;/b&gt; – the end date of the planning horizon. 
&lt;p&gt;Let’s assume our planning horizon is 6 weeks, and we re plan on a weekly basis. We’ll start with a new Enterprise Project, which is as good a way as any, though of course, you could have started with a proposal or activity and then converted it to an Enterprise Project. 
&lt;p&gt;&lt;b&gt;Step 1&lt;/b&gt; is to create our project plan and assign resources from the Enterprise Resource pool in the normal way. 
&lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB6pYhUpz7qA_F1ZWQHB1rvfj49B-smnEC92YPKnRlj_HXbeyjH3i1rbBb5CZudooU4px6dteKQ1CfgXPBTevT_w5yJ8Sp3x2lVh_pdyzGt0Sg"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=139 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB4itmw0tE08PtWMiEo4MknJbb__egJ-L7g0QPQ0SdyCWiBRQtAsTcoqyd58QSQ9XBXhqBGnOGw5MzDHRZIpg4e-CAz5nxgrYH7JpFEceL6wZQ" width=240 border=0&gt;&lt;/a&gt; 
&lt;p&gt;Figure 1 – Tasks 1-10 are well defined with estimates and assignments. I have not yet defined Phases 3-6 as they are beyond my 6 week planning horizon. 
&lt;p&gt;I’ve planned for the next 6 weeks, with assignments, but I haven’t planned in detail beyond that, except to place some placeholders in the project for Phases 3-6, which I expect to take 3 weeks each. Note also I’ve not placed any dependencies on these phases, this is just personal preference and if I was to do so I would need to remove them at a later date as they will become summary tasks. 
&lt;p&gt;If we have a look at the resource availability for our resource for the next 8 full weeks starting from this week we see the following screen shot. This nicely shows the demand for the 6 weeks we have planned in detail. 
&lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB6Cr0lj0yC582thhhnT9B_JHKWbtPq7KN1d9a0I7frkCBKkEJV4Z46Up5KhO01AiH7kMvRM8VZZi-ozw96jRP4TK8NC6ahLi3cOVeUamd0pAQ"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=142 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB4IgSLFncNzh6F3Z9ZMF6dyxJUcj0CkeWfiMoPgb-TKxj-9ZY_3yH6oqYZH-L0MkEJQQRnhr9po_ER-FcsmahTdbn4b0SE9YvYiUEXsAf7ysg" width=240 border=0&gt;&lt;/a&gt; 
&lt;p&gt;Figure 2 - the assignments from the Enterprise Project are nicely shown. 
&lt;p&gt;Now, we know that we’ll need some more of Brian Johnson’s time for Phases 3-6, but because I haven’t planned those tasks in detail yet I’ve haven’t got anywhere to place the assignments. I could of course (and this is how I would have had to do this in MSP2003), create some “holding” tasks and create assignments against them. However, if I wanted to have multiple resources assigned to a task, and have some of them allocated at less than 100%, then in order to reserve their time correctly, I’d have to create one task for each assignment and then change task the resource units in order to show the time properly. In addition, these tasks would be automatically scheduled… – argh, way too much trouble! 
&lt;p&gt;So, &lt;b&gt;step 2&lt;/b&gt; is to create a Resource Plan to create the demand for the resources for the period beyond our planning horizon, currently for the period after 3/31/07. 
&lt;p&gt;Within the Project Center, select the project plan. Mine is called Rolling Plan 
&lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB6J2ovzl_cWowSn5DjvXlFikHgldiz6yFXd9eiEq6WE-ldz6EHUYoy15_AQQEIWz046bi9VpZ08WrYLta6mHOHVepCZ86ipYj7aJ9qD16Uc2Q"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=142 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5VtN_8zmO3uOFEdCxfoJ1oHfHrye-fhRyKhsmwvVo23EVSQ6VpReHhROTJjsS1F7GqW0pfo6GIDXkfsib7xoCZ5iajPB28OOQk-dc1Wx5jww" width=240 border=0&gt;&lt;/a&gt; 
&lt;p&gt;Figure 3 – Highlight the required plan and click on Resource Plan to create or edit the resource plan for the project 
&lt;p&gt;Click on Build Team to select the resources for the resource plan. 
&lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5rmHp_ZTRfCdyVBS_juX9R9gh5NkbenoBvgR3b1E7RCqndBbraQDR6uaICtbdWw8In-09dRW3Dmy0BuWr8I_XeHSzQJR4wWlll658ZKSzmUA"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=142 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB7z4_CRgfOJysvWmgIC8Ere_of6rHh6pRpgRFmkTOnKXhE5zCf6rObSMiRnTOmjtLjO7gwl2JKNtpULtGvsHXwA_pMKKq3o3PuSAknDyHigdw" width=240 border=0&gt;&lt;/a&gt; 
&lt;p&gt;Figure 4 – Click on build team to assign enterprise resources to the Resource Plan 
&lt;p&gt;I still want Brian Johnson to work on the plan, but I’m slowly going to decrease his work over the next 4 phases and replace him with David Ahs, who will have a corresponding increase in work. So I select both resources in the team builder menu…. 
&lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB7aIDaSz8KxAPhwjPlIFBAEbhv1P26xWf-5qBT1TYPzkwyr1Ufw8HquDkI9P-s_T54JVxk4HCQ4jTEeO2AdVFIvcSKcKW3Iww2Hv5kMgpq6JA"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=142 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB6fUFx4tYjioXryFmQy_94oyGf7pDxqKuzrnbMk4csSZanLVeL4ekEDXs9bzH0cwkurncLdaiu2Mq-IbAniBHxLzcEZCZNeh8TDduyJ4xyP0A" width=240 border=0&gt;&lt;/a&gt; 
&lt;p&gt;Figure 5 – Select the resources and add them to the team 
&lt;p&gt;and add both resources to the Resource Plan. Next, I change the date range to suit so I can plan for so many weeks ahead. The key field here is the &lt;b&gt;Calculate resource utilization from: &lt;/b&gt;and here you need to select &lt;b&gt;Project plan until: &lt;/b&gt;and then in the calendar field, type in the horizon date. What we are now telling the system is this; Use the assignments from the project plan until the horizon date, and there after, use the resource plan. 
&lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5H-lJ3e0rHfEPmgSA4QhSa2t1XPRd-WCJbkymc1GbDoaGnfB_VzOkW3_1E-OxQjM7aZBSG7thXBp3yr9rI3ghR8Xan8jGRLigDexcpv81QAw"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=142 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB7GfPX_sJYiua8dlGXk33XBy2_HrXnZE6_xb2sKndnzZ0mA5v7K2Kwaqjeme4aa39IFfVLF0bE-rb-Szj6c90Ve9QfLEtV4iGLaydu8ldO1XA" width=240 border=0&gt;&lt;/a&gt; 
&lt;p&gt;Figure 6 – The current planning horizon date is 3/31/2007 and the resource requirement changes throughout the period. 
&lt;p&gt;You can see that I’ve started to decrease Brian Johnson’s requirement, to the point where in the final 3 weeks of my resource plan he is at 0, whilst David Ahs’ requirement slowly increases. I can’t show all the planning periods on the screen but it will become obvious when we view the resource availability. 
&lt;p&gt;Save and Publish the resource plan, and then open up the resource center again to view the availability for the resources. We can see that our resource plan kicks in after the planning horizon date (3/31/2007), and we have resource demand even though we have no assignments on the project. The decreased requirement for Brian Johnson and increased requirement for David Ahs is very apparent. 
&lt;p&gt;&lt;a href="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB5wUiDLemYiV-irk621ImtCoJSiCaoh0lRRWL6CuNwK_azpcMB6qGUMU2t7BwheiwLinjTzuJyTyYglmPz-qkhW7C8nE8EDfG3uJzb-q-iQGQ"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px" height=142 src="http://tk1.storage.msn.com/x1pInfV02v-EhW_tApjU5Xmg7ByzYtNtVt6JBbU02lEOB6Fr1E7kanMPHU58MLCDABNEPnMDNUCgBaPIaisdZsDhd5sP1V8tKQfKI81nyl0xiEH5XtwWJLd_GM4eFX9wyvqO9otAMQkwjWcXLYybqRxQQ" width=240 border=0&gt;&lt;/a&gt; 
&lt;p&gt;Figure 7 – Here we can see the result of the resource requirements from both the project plan and the resource plan. The project plan cuts of at 3/31/2007 and the resource plan kicks in after that. 
&lt;p&gt;So that’s it. When you are testing this, make sure you work this through with correct dates etc, especially the date ranges in the resource plan, making sure they correspond to the chosen intervals. If you don’t you’ll get some data that is correct, but looks funny :) 
&lt;p&gt;Enjoy – &lt;a href="http://www.applepark.co.uk/"&gt;www.applepark.co.uk&lt;/a&gt; 
&lt;p&gt;Credit to Trebb Gatte (again)&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-1511370371294540259&amp;page=RSS%3a+Resource+Plans+-+How+to+use+them+with+a+rolling+project+plan&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=appleparkltd.spaces.live.com&amp;amp;GT1=Appleparkltd"&gt;</description><category>Computers and Internet</category><comments>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!215.entry#comment</comments><guid isPermaLink="true">http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!215.entry</guid><pubDate>Sat, 17 Feb 2007 22:44:51 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://Appleparkltd.spaces.live.com/blog/cns!EB0688A7A6F04E1D!215/comments/feed.rss</wfw:commentRss><wfw:comment>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!215.entry#comment</wfw:comment><dcterms:modified>2007-02-19T12:49:59Z</dcterms:modified></item><item><title>How to plan and track operational resources and time</title><link>http://Appleparkltd.spaces.live.com/Blog/cns!EB0688A7A6F04E1D!186.entry</link><description>&lt;div&gt;
&lt;p&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;span&gt;Resource Scenarios&lt;/span&gt; – How to plan and track operational resources and time&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font color="#000000" size=3&gt;(&lt;/font&gt;&lt;/span&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;café latte)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;EPM2007 allows for some new scenarios regarding resource management, specifically regarding assigning resources to operational plans (and of course activity plans).&lt;span&gt;  &lt;/span&gt;Microsoft have a specific type of project plan called an Activity Plan which can easily be is used for operational work.&lt;span&gt;  &lt;/span&gt;An additional scenario exists for rolling project plans, but I’ll cover this in a later blog.&lt;span&gt;  Example screen shots are attached.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;So, let’s deal with operational work.&lt;span&gt;  &lt;/span&gt;In many organisations a significant proportion of budget is taken up performing non-project work, i.e. maintaining existing systems (I saw one quote recently that said that 75% of IT budgets are spent on maintaining existing systems, which suggests to me that IT organisations spend too much time just maintaining the status quo).&lt;span&gt;  &lt;/span&gt;In order to model this operational time, we need to set up an activity plan that we can then assign a nominal 75% of our resource capacity to.&lt;span&gt;  &lt;/span&gt;This then leaves 25% to be used for project work.&lt;span&gt;  &lt;/span&gt;Holidays, sickness, training and other non productive work (we can argue whether training is classed as productive or not at a later date!) are excluded at this stage.&lt;span&gt;  &lt;/span&gt;All we are simply saying is that, in this organisation, our time is split 75% to 25% between operational and project work.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;To set this up, Create a new Activity from within the Proposals and Activities view within PWA and begin to fill in the summary information.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;  
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;The minimum information we should type in is the Name, Description and Start Date.&lt;span&gt;  &lt;/span&gt;By default the Start Date is today’s date, in our example we have changed the date to match the start of our calendar year, March 5&lt;sup&gt;th&lt;/sup&gt; 2007.&lt;span&gt;  &lt;/span&gt;The plan owner defaults to the currently logged in user.&lt;span&gt;  &lt;/span&gt;Any Enterprise Custom Fields will need to be selected as required.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;We now have the choice of specifying tasks in the Work Details view; however this is optional; it depends on the level of detail required for your reporting.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;So, we can click on &lt;span&gt; &lt;/span&gt;to save the plan, ignoring the work details screen, and then we can either Save&lt;span&gt; &lt;/span&gt;the plan or &lt;span&gt;Save and Publish &lt;/span&gt;the plan.&lt;span&gt;  &lt;/span&gt;If we Save&lt;span&gt; &lt;/span&gt;the plan without publishing it then it just remains in the draft database.&lt;span&gt;  &lt;/span&gt;Draft plans have a different icon in the Proposals and Activities view.&lt;span&gt;  In our case w&lt;/span&gt;e will publish the plan later.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;So, all we have now is basically a project header with no tasks (because we ignored the work details screen) and no resource assignments.&lt;span&gt;  &lt;/span&gt;In order to create a resource demand or usage against the project, it is necessary to create a resource plan.&lt;span&gt;  Back in the proposals and activities view, w&lt;/span&gt;e need to make sure the row containing our activity plan is highlighted, and click on Resource Plan.&lt;span&gt;  &lt;/span&gt;Follow the rather obvious instructions in red by clicking on Build Team&lt;span&gt; &lt;/span&gt;and select the desired operational resources to work on the activity plan.&lt;span&gt;  &lt;/span&gt;Now we have resources allocated to the activity plan, but we don’t yet have any “assignments” or “demand”.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;We will place the demand on the system by assigning a work load by period (days, weeks, months or years) and by type (hours, days or FTE).&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;We want to plan our work for the next calendar year (March 5&lt;sup&gt;th&lt;/sup&gt; 2007 to March 4&lt;sup&gt;th&lt;/sup&gt; 2008), and we want to reserve 75% of our two resources’ time for operational work. &lt;span&gt; &lt;/span&gt;(If we were planning this at this stage to just place a demand for a skill set, we could use generic resources instead).&lt;span&gt;  &lt;/span&gt;The simplest way to do this is to click on&lt;span&gt; Settings&lt;/span&gt;| View Options to expose further options to allow us to easily reserve this time.&lt;span&gt;  &lt;/span&gt;In the Date range selection, we choose our calendar year (using the From: and To: dates), and select the Column Interval to Years.&lt;span&gt;  &lt;/span&gt;Selecting Calculate resource utilization from: Resource Plan will mean that this resource plan will affect the resource availability in the enterprise resource pool.&lt;span&gt;  &lt;/span&gt;Selecting Full-time equivalent for the Work Units: field will allow us to input .75 against both resources to represent our 75% operational work.&lt;span&gt;  &lt;/span&gt;Click Apply&lt;span&gt; &lt;/span&gt;to change the view so we can input the required utilisation.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;Type in .75 in the resource rows and columns.&lt;span&gt;  &lt;/span&gt;Note that there are two columns, split over the calendar year.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;Click on Save and then Close.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;Because we did not publish the activity plan previously, our resource plan cannot be published and is therefore a draft plan.&lt;span&gt;  &lt;/span&gt;We are able to review and modify our plans before publishing them for the rest of the organisation to see. &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;Once we have finalised both our activity plan and associated resource plan, we can publish them.&lt;span&gt;  &lt;/span&gt;Open the desired Activity plan and click Save and Publish&lt;span&gt; &lt;/span&gt;followed by Close.&lt;span&gt;  &lt;/span&gt;Open the resource plan and do the same.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt; 
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Trebuchet MS'"&gt;&lt;font size=3&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;p style="line-height:200%"&gt;&lt;span lang=EN-GB style="font-family:'Treb