<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jeremy Cade</title>
	<atom:link href="http://www.jeremycade.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeremycade.com</link>
	<description>Baseball, Code, Japanese, University.</description>
	<lastBuildDate>Wed, 27 Jul 2011 00:15:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Software Architecture Evolution Over Time.</title>
		<link>http://www.jeremycade.com/2011/07/software-architecture-evolution-over-time/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=software-architecture-evolution-over-time</link>
		<comments>http://www.jeremycade.com/2011/07/software-architecture-evolution-over-time/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 00:15:30 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[University Papers]]></category>
		<category><![CDATA[3412ICT]]></category>
		<category><![CDATA[Griffith University]]></category>
		<category><![CDATA[Software Architecture]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=65</guid>
		<description><![CDATA[University: Griffith University, Brisbane, Australia Degree: Bachelor of Information Technology Accelerated Date: 5th May, 2011 Class/Course: 3412ICT Software Architecture and Application Services Author(s): Jeremy Cade Abstract Works by Parnas and Shaw set the stage for the development of architectural design &#8230; <a href="http://www.jeremycade.com/2011/07/software-architecture-evolution-over-time/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;" align="center"><strong>University</strong>: Griffith University, Brisbane, Australia<br />
<strong>Degree</strong>: Bachelor of Information Technology Accelerated<br />
<strong>Date</strong>: 5th May, 2011<br />
<strong>Class/Course</strong>: 3412ICT Software Architecture and Application Services<br />
<strong>Author(s)</strong>: Jeremy Cade<strong></strong></p>
<p style="text-align: justify;" align="center"><strong>Abstract</strong></p>
<p><em>Works by Parnas and Shaw set the stage for the development of architectural design patterns that enabled later computer scientists to develop both architectural and module level design patterns. This has empowered architects and developers with the ability to build highly cohesive, loosely coupled large-scale systems. </em></p>
<p align="left"><strong>1. Introduction</strong></p>
<p>The development of codified software design patterns over the last 30 years has been of significance to the software industry. With each new design pattern a new level of abstraction has been developed to simplify or iron out complexity in the systems in where those patterns have been implemented.</p>
<p>However in order to understand the overall architecture of a system we first need to be able to decompose the system into subsystems or modules, with each subsystem or module adhering to a design pattern in order to maintain some sort of maintainability and testability.</p>
<p><strong>2.  Discussion</strong></p>
<p>In his 1972 paper, “On the Criteria To Be Used in Decomposing Systems into Modules”, Parans discusses the decomposition of software into modules, producing two separate modularisations.</p>
<p>The first is along the lines of functional/procedural responsibility or steps, referred to as the “flowchart” method [1]. The second is along the lines of “Information Hiding”.</p>
<p>Parans says of the second modularisation: <em>“Every module in the second decomposition is characterized by its knowledge of a design decision which it hides from all others. Its interface or definition was chosen to reveal as little as possible about its inner workings.” </em>[1]</p>
<p>These two sentences are of great interest, as this was the first time the idea of Information Hiding was introduced to the world of Software Architecture and Design.</p>
<p>This idea, sometimes referred to as the Black Box Principal, is of paramount importance to software design, as it is the founding basis for a number of Object Oriented design principals including Encapsulation and the practice of designing to Interfaces rather than concrete classes.</p>
<p>The Black Box Principal allows for a module or class to built in such a way that only its input and output are known, while hiding its internal workings, implementation, or design decisions from consuming applications, modules or classes.</p>
<p>This allows for the design and creation of loosely coupled software systems, which in turn increase testability and reduce the chance of failure due to cascading errors in the event of changes to the module or classes internal design or implementation.</p>
<p>This principal, is in fact an abstraction of the inner workings given module or class in order to implement it’s output in a larger system.</p>
<p>In her 1989 paper “Larger Scale Systems Require Higher-Level Abstractions” Shaw makes the argument for the need of codified high-level design patterns that can be used to make abstracted design decisions at the system and subsystem levels, in order to better understand and produce large-scale systems [2].</p>
<p>In section “3. Composition of Systems from Subsystems”, Shaw makes the observation that large systems are constructed by combining subsystems, and that these subsystems have their own internal structures, which could be designed at the system level, rather than the module or class level [2].</p>
<p>This allows for the implementation of higher-level design patterns for specific subsystems that are best suited to their function or responsibilities</p>
<p>However Shaw makes the conclusion that the at the time of publication (1989) Software Architecture was not yet mature enough to develop or support such high-level patterns [2].</p>
<p>As we can see, both Parans and Shaw’s work address software design from a structural, decomposition standpoint, while this may have been the founding for a lot of today’s current structural architecture level design patterns, it fails to take into account the other areas software design that are important in todays object oriented world, specifically those of object creation, structure and behaviour in complex software systems.</p>
<p>Neither of the papers takes into account the inherent complexity of trying to integrate multiple modules to form complex systems, while maintaining portability, testability and high maintainability.</p>
<p>Thankfully, some of these issues have been addressed through the creation of modern architectural and module / class level design patterns.</p>
<p><strong>3. Critical Analysis</strong></p>
<p>Shaw’s paper is a spiritual continuation of Parnas’s earlier “Information Hiding” (Black Box) work, in that Shaw is in fact advocating for the abstraction of lower level modules functions behind a subsystem design pattern, effectively extending the Black Box Principal beyond that of a single module or class to an entire subsystem. This continuation is evident in section 2 of Shaw’s paper where the Software Architecture Level of Design is discussed. Shaw states: “<em>This level of system organization and design is the software architecture level.</em>” [2]. Parnas, in his work, did not mention, or perhaps failed to anticipate that large-scale systems may require a number of levels of abstraction in order to effectively produce the system. Shaw’s work rectifies this by explicitly advocating the need for architecture level design.</p>
<p>Architecture level design, is of course a major factor that must be considered when developing systems for modern systems, the choice of architecture level design patterns is of paramount importance when developing large scale systems, as the choice of the wrong design pattern could have catastrophic consequences, for example the Model View Controller pattern, developed at XEROX PRACE in 1978-79 [3] may provide the foundation for a Graphical User Interface (GUI) based system such as a Word Processor, but would be ill suited to a Telephone Exchange System or a Control and Command System.</p>
<p>While Shaw addressed the higher-level concepts of System and subsystem architecture, she failed to address the issues related to lower level modules and classes, thankfully a large number of these issues have been addressed through the acceptance of the patterns and practices published throughout the early 90’s and early 2000’s. Books such as Code Complete [4] and the Design Patterns: Elements of Reusable Object-Oriented Software” [5] introduced a large number of developers and architects to reusable design patterns that allow for the creation and maintenance and testability of modules or classes in a decoupled, highly cohesive manner.</p>
<p>For example, Robert C. Martin in his book “Agile Software Development: Principals, Patterns and Practices” [5] introduces a set of principals known as SOLID. SOLID is an acronym for Single Responsibility, Open-Closed, Liskov Substitution, Interface Segregation and Dependency Inversion. These principals extend on Parnas’s information hiding principals, and Shaws module abstraction to address the issues related to testability and maintainability in complex systems. For example, the Dependency Inversion principal states that high level modules or classes should not depend on low level modules or classes. This principal is implemented via the Dependency Injection pattern, which extremely similar to the Factory Method [4][5]. Dependency Injection allows for decoupling of modules, which in turn makes it easier to unit test modules.</p>
<p>Well-tested, decoupled modules often have higher levels of cohesion, allowing those modules to be more portable, readable and maintainable in the long term.</p>
<p>There is however still a number of open issues from a software architecture standpoint, as the underlying hardware increases in capacity and complexity the need to continually abstract the inner workings to increase design simplicity of each system is a cause for ambiguity, and misunderstanding. Shaw did mention this in her paper, however, it may well result in a time where those making the design decisions no longer understand the underlying rationale for the design pattern that they have chosen to implement. At a lower level this is evident in the uptake of memory managed programming environments, e.g. Java. It could be argued that Java developers are more ignorant of their memory footprint, compared to C developers. There is a real chance that this could happen at a higher level of design as we continually develop new ways to abstract away from the inner workings of our systems.</p>
<p><strong>4. Conclusion</strong></p>
<p>Parans work created the foundations for a large number of design patterns still implemented in today’s moderns software systems. Shaw extended Parans work in a way that allowed for the abstraction of design decisions to higher levels of a software system. This work has since been extended upon by a number of different people, allowing for reusable software design patterns that give us the ability to build highly cohesive, decoupled systems that are easily tested.</p>
<p>However we may face a time in the future where the continued abstraction of the design decisions leads to an ignorance of the base implementation of a system.</p>
<p><strong>5. References</strong></p>
<p align="left">[1] David L. Parnas. “On the Criteria to be Used on Decomposing Systems into Modules,” Communications of the ACM, 15(12):1053-1058, 1972.</p>
<p align="left">[2] Mary Shaw. “Larger Scale Systems Require Higher-Level Abstractions,” Proceedings of the Fifth International Workshop on Software Specifications and Design, published 1989</p>
<p align="left">[3] Trygve Reenskaug.   &#8220;MVC XEROX PARC 1978-79&#8243;, http://heim.ifi.uio.no/~trygver/themes/mvc/mvc-index.html</p>
<p align="left">[4] Steve McConnell. &#8220;Code Complete&#8221; Microsoft Press. 1994</p>
<p align="left">[5] E. Gamma, R. Helm, R. Johnson &amp; J. Vlissides. “Design Patterns: Elements of Reusable Object-Oriented Software”, 1994</p>
<p align="left">[6] Robert C. Martin. “Agile Software Development: Principles, Patterns, and Practices “ 2002</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2011/07/software-architecture-evolution-over-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Plan &#8211; Project Management</title>
		<link>http://www.jeremycade.com/2011/05/project-plan-project-management/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=project-plan-project-management</link>
		<comments>http://www.jeremycade.com/2011/05/project-plan-project-management/#comments</comments>
		<pubDate>Tue, 31 May 2011 11:17:27 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[University Papers]]></category>
		<category><![CDATA[2001ICT]]></category>
		<category><![CDATA[Gnatt Charts]]></category>
		<category><![CDATA[Griffith University]]></category>
		<category><![CDATA[Microsoft Project]]></category>
		<category><![CDATA[Project Management]]></category>
		<category><![CDATA[Project Plan]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=50</guid>
		<description><![CDATA[University: Griffith University, Brisbane, Australia Degree: Bachelor of Information Technology Accelerated Date: August 23, 2010 Class/Course: 2001ICT Project Management Author(s): Jeremy Cade, Alice Jackson, Nathan Jensen, Jenny Nguyen Paper Grade: 15.33/20 1. Introduction 1.1 Project Overview The Brisbane Curtain Company &#8230; <a href="http://www.jeremycade.com/2011/05/project-plan-project-management/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>University</strong>: Griffith University, Brisbane, Australia<br />
<strong>Degree</strong>: Bachelor of Information Technology Accelerated<br />
<strong>Date</strong>: August 23, 2010<br />
<strong>Class/Course</strong>: 2001ICT Project Management<br />
<strong>Author(s)</strong>: Jeremy Cade, Alice Jackson, Nathan Jensen, Jenny Nguyen<br />
<strong>Paper Grade</strong>: 15.33/20</p>
<h1>1. Introduction</h1>
<h2>1.1 Project Overview</h2>
<p>The Brisbane Curtain Company has tasked Sharpwise Software with the development and<br />
delivery of job / task scheduling system for use within the business.</p>
<p>The  scheduling software is required to generate and maintain a series of  forms with follow-up dates built into them to ensure jobs and regular  tasks are completed on time.  Ideally, this would also display on an all  encompassing diary.  This software must be accessible via the internet  from multiple locations by staff out of the office as well as from  computers in the office.  Management of tasks will be maintained by a  series of reminders and follow-up dates.  If there are any  uncontrollable delays to jobs, the customers must be informed  immediately.</p>
<p><strong>The project team consists of:</strong></p>
<ul>
<li>Project Manager</li>
<li>Quality Engineer</li>
<li>System Analyst / Designer</li>
<li>Programmer</li>
</ul>
<h2>1.2 Project Deliverables</h2>
<ul>
<li>Project Plan.</li>
<li>Job scheduling and task management software.</li>
<li>User documentation for Job scheduling and task management software.</li>
</ul>
<h2>1.3 Evolution of the Project Management Plan</h2>
<p>The following applies to versioning of this document:</p>
<ul>
<li>The Project Plan document starts at Version 0.01.</li>
<li>For each revision the version is incremented by 0.01.</li>
<li>Major revisions or changes of user requirements are to be incremented by 1.0.</li>
</ul>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="91" valign="top"><strong>Revision Date</strong></td>
<td width="104" valign="top"><strong>Version No.</strong></td>
<td width="138" valign="top"><strong>Author</strong></td>
<td width="276" valign="top"><strong>Description of   Change/Revision</strong></td>
</tr>
<tr>
<td width="91" valign="top">2010/09/20</td>
<td width="104" valign="top">0.01</td>
<td width="138" valign="top">Jeremy Cade</td>
<td width="276" valign="top">Introduction</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/04</td>
<td width="104" valign="top">0.02</td>
<td width="138" valign="top">Jeremy Cade</td>
<td width="276" valign="top">Evolution of the project Management Plan</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/05</td>
<td width="104" valign="top">0.03</td>
<td width="138" valign="top">Jenny Nguyen</td>
<td width="276" valign="top">Introduction</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/07</td>
<td width="104" valign="top">0.04</td>
<td width="138" valign="top">Nathan Jensen</td>
<td width="276" valign="top">Project organisation</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/09</td>
<td width="104" valign="top">0.05</td>
<td width="138" valign="top">Jenny Nguyen</td>
<td width="276" valign="top">Mangerial Process</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/10</td>
<td width="104" valign="top">0.06</td>
<td width="138" valign="top">Jenny Nguyen</td>
<td width="276" valign="top">Revision History</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/10</td>
<td width="104" valign="top">0.07</td>
<td width="138" valign="top">Jenny Nguyen</td>
<td width="276" valign="top">Mangerial Process</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/10</td>
<td width="104" valign="top">0.08</td>
<td width="138" valign="top">Nathan Jensen</td>
<td width="276" valign="top">Software life Cycle Model</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/10</td>
<td width="104" valign="top">0.09</td>
<td width="138" valign="top">Jeremy Cade</td>
<td width="276" valign="top">Software life Cycle Model</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/11</td>
<td width="104" valign="top">0.10</td>
<td width="138" valign="top">Jenny Nguyen</td>
<td width="276" valign="top">Reference Material</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/13</td>
<td width="104" valign="top">0.11</td>
<td width="138" valign="top">Jeremy Cade</td>
<td width="276" valign="top">Mangerial Process</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/16</td>
<td width="104" valign="top">0.12</td>
<td width="138" valign="top">Alice Jackson</td>
<td width="276" valign="top">Project Responsibilies</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/16</td>
<td width="104" valign="top">0.13</td>
<td width="138" valign="top">Jenny Nguyen</td>
<td width="276" valign="top">Risk Management</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/16</td>
<td width="104" valign="top">0.14</td>
<td width="138" valign="top">Jeremy Cade</td>
<td width="276" valign="top">WBS/Schedule</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/17</td>
<td width="104" valign="top">0.15</td>
<td width="138" valign="top">Jeremy Cade</td>
<td width="276" valign="top">WBS/Schedule/Gantt Charts</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/17</td>
<td width="104" valign="top">0.16</td>
<td width="138" valign="top">Jeremy Cade</td>
<td width="276" valign="top">Minor Corrections to Introduction</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/17</td>
<td width="104" valign="top">0.17</td>
<td width="138" valign="top">Jenny Nguyen</td>
<td width="276" valign="top">Appendix (6.4)</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/17</td>
<td width="104" valign="top">0.18</td>
<td width="138" valign="top">Jenny Nguyen</td>
<td width="276" valign="top">Project Responsibilities</td>
</tr>
<tr>
<td width="91" valign="top">2010/10/17</td>
<td width="104" valign="top">0.19</td>
<td width="138" valign="top">Jeremy Cade</td>
<td width="276" valign="top">Appendix, Reference Materials, Function Points</td>
</tr>
</tbody>
</table>
<h2>1.4 Reference Materials</h2>
<ul>
<li>A Guide to the Project Management Body Of Knowledge (PMBOK Guide) 4th Ed. (2008). Published: Project Management Institute, Inc.</li>
<li>Schwalbe, K. (2009). Information Technology Management, 6th Ed., Thomson Technology</li>
<li>Australian Standard AS 4071</li>
<li>ISO/IEC 12207</li>
<li>ISO 14143:1998</li>
</ul>
<h2>1.5 Definitions and Acronyms</h2>
<ul>
<li>WBS: Work Break Down Structure</li>
<li>SDLC: Software Development Lifecycle</li>
</ul>
<h1>2 Project Organisation</h1>
<h2>2.1 Software Life Cycle Model</h2>
<p>The Life Cycle Model to be used  for this project is the Evolutionary Prototyping Model. Each evolution  of the prototype will be limited to a predifed set or group of the  functional requirements as set out in section 6 (List of Requirements)  of the Business and User Requirements document developed by Sharp Wise  Software. Each prototype will be limited to two revisions.</p>
<p>The Evolutionary Prototyping Model has been selected as the basis for this project for the following reasons:</p>
<ul>
<li>Allows for rapid, iterative development.</li>
<li>Reduces need for final stage documentation.</li>
<li>Facilitates feedback from the end users at critical stages during development.</li>
</ul>
<p>This constant and repetitive  feedback from end users is important for this feedback will improve the  project and fix bugs and problems that users might encounter.</p>
<h2>2.2 Organisational Structure</h2>
<h3><strong>Authority Flow Chart</strong></h3>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Home.jpg"><img class="alignnone size-full wp-image-52" title="Authority Flow Chart" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Home.jpg" alt="Authority Flow Chart" width="454" height="340" /></a></p>
<p><strong>Communication Flow Chart</strong></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Home-1.jpg"><img class="alignnone size-full wp-image-51" title="Communication Flow Chart" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Home-1.jpg" alt="Communication Flow Chart" width="454" height="340" /></a></p>
<h2>2.3 Organisational Boundaries and Interfaces</h2>
<p>A description of the relationship between the project team and the other parties involved in<br />
the project. Relevant stakeholders in the Project should be explicitly identified.</p>
<p><strong>Key Stake Holders</strong></p>
<ul>
<li>Sharpwise Software</li>
<li>Our company</li>
<li>Curtain company</li>
</ul>
<p><strong>Roles of the Stake Holders</strong></p>
<p><strong>Sharpwise Software </strong></p>
<ul>
<li>Developer of the project</li>
<li>Creates all the deliverables of the Project</li>
<li>Delivering a quality Product</li>
</ul>
<p><strong>The Curtain Company</strong></p>
<ul>
<li> Consumer of the project after Sharpwise Software develops from our companies project plan.</li>
</ul>
<p><strong>Our company</strong></p>
<ul>
<li>Creating Project Plan</li>
<li>Ensuring all requirements of the Curtain Company are met</li>
</ul>
<h2>2.4 Project Responsibilities</h2>
<h3>2.4.1 Project Manager</h3>
<p>The project manager’s responsibilities are as follows:</p>
<ul>
<li>Lead the planning and      implementation of project</li>
<li>Facilitate the      definition of project scope, goals and deliverables of the project</li>
<li>Define project tasks      and resource requirements</li>
<li>Develop the project      plan</li>
<li>Assemble and coordinate      the project team</li>
<li>Manage the project      budget</li>
<li>Manage project resource      allocation</li>
<li>Plan and schedule the      project timelines</li>
<li>Track project      deliverables using appropriate tools</li>
<li>Provide direction and      support to project team</li>
<li>Work with the quality      engineer to maintain quality assurance</li>
<li>Constantly monitor and      report on progress of the project to all stakeholders involved in the      project</li>
<li>Present reports      defining project progress, problems and solutions of the project</li>
<li>Implement and manage      project changes and interventions to achieve project outputs</li>
</ul>
<h3>2.4.2 Quality Engineer</h3>
<p>The quality engineer’s responsibilities are as follows:</p>
<ul>
<li>Responsible for quality system maintenance</li>
<li>Assist project manager in establishing,      implementing and maintaining the quality management system</li>
<li>Interface  with the software engineer and      programmers to ensure transfer of  concept to production of the system is      in accordance with approved  data</li>
<li>Conduct audits, create finding reports and      determine corrective and preventative action from these findings</li>
<li>Analyse failure and take corrective action to      respond to, if any, of client complaints</li>
</ul>
<h3>2.4.3 Systems Analyst</h3>
<p>The quality engineer’s responsibilities are as follows:</p>
<ul>
<li>Analyzing the user      requirements to develop a concept model</li>
<li>Researching, designing      the software program</li>
<li>Testing the programs      and fault finding;</li>
<li>Creating technical      specifications and test plans with the quality engineer;</li>
<li>Writing operational      documentation for the project</li>
<li>Maintaining systems by      monitoring and correcting any software defects;</li>
<li>Working with the      project manager, quality engineer and two programmers to effectively      implement the project</li>
<li>Consulting  clients      concerning the maintenance and performance of the system  and asking      questions to obtain information, clarify details and  implement      information</li>
</ul>
<h3>2.4.5 Programmers</h3>
<p>The programmer’s responsibilities are as follows:</p>
<ul>
<li>Code, test and troubleshoot the program utilizing      the appropriate hardware, database, and programming technology</li>
<li>Build the project as to specifications designed      by the Software Engineer</li>
<li>Adhere to the requirements stipulated by the      Quality Engineer in regards to quality control</li>
</ul>
<h1>3 Managerial Process</h1>
<h2>3.1 Managerial Objectives and Priorities</h2>
<h3><strong>3.1.1 Objectives</strong></h3>
<p>The Brisbane Curtain Company  project will be thoroughly documented in the project plan, to ensure all  the aspects have been agreed upon so the project can be completed on  time and in scope. The project team is consists of five members and  together working as a team will responsible for successful completion  and handover of the project that will satisfy the user requirements and  hopefully exceed the user requirements. This project will aim to follow  the recommended procedures from the Australian Standard AS 4071, and  PMBOK, to allow for the team to work successfully together while  building improving their leadership, team building, communication,  decision making, negotiation and their political and cultural awareness.</p>
<p>The main project goal will be to deliver the product within the estimated scope, budget and time.</p>
<h3><strong>3.1.2 Mechanisms for communications and reporting</strong></h3>
<table border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="22%"><strong>Information</strong></td>
<td width="20%"><strong>From</strong></td>
<td width="20%"><strong>To</strong></td>
<td width="21%"><strong>How</strong></td>
<td width="15%"><strong>Frequency</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="22%">Meetings</td>
<td width="20%">Project Manager</td>
<td width="20%">Team Members</td>
<td width="21%">Face to face</td>
<td width="15%">Weekly</td>
</tr>
<tr>
<td width="22%">Project Planning</td>
<td width="20%">Project Manager</td>
<td width="20%">Team Members</td>
<td width="21%">E-mail</td>
<td width="15%">Weekly</td>
</tr>
<tr>
<td width="22%">Contact Team members</td>
<td width="20%">Project Manager</td>
<td width="20%">Team Members</td>
<td width="21%">E-mail, phone</td>
<td width="15%">Daily</td>
</tr>
<tr>
<td width="22%">System Analysis Report</td>
<td width="20%">System Analyst</td>
<td width="20%">Project Manager</td>
<td width="21%">Face to Face</td>
<td width="15%">Weekly</td>
</tr>
<tr>
<td width="22%">Gathering Information from Client</td>
<td width="20%">Project Manager</td>
<td width="20%">Team Members</td>
<td width="21%">Face to face, E-mail, Phone</td>
<td width="15%">Daily</td>
</tr>
<tr>
<td width="22%">Consulting With Client</td>
<td width="20%">System Analyst / Designer &amp; Project Manager</td>
<td width="20%">Client</td>
<td width="21%">Face to face, e-mail, Phone</td>
<td width="15%">Fortnightly</td>
</tr>
<tr>
<td width="22%">System Design</td>
<td width="20%">System Analyst</td>
<td width="20%">Project Manager</td>
<td width="21%">E-mail, Face to face</td>
<td width="15%">Weekly</td>
</tr>
<tr>
<td width="22%">System Programming</td>
<td width="20%">Programmers</td>
<td width="20%">Quality Engineer</td>
<td width="21%">E-mail</td>
<td width="15%">Weekly</td>
</tr>
<tr>
<td width="22%">System Development Processes</td>
<td width="20%">Programmers</td>
<td width="20%">Project Manager</td>
<td width="21%">E-mail</td>
<td width="15%">Daily</td>
</tr>
<tr>
<td width="22%">System Development Report</td>
<td width="20%">Programmers</td>
<td width="20%">Project Manager</td>
<td width="21%">E-mail</td>
<td width="15%">Weekly</td>
</tr>
<tr>
<td width="22%">System Quality Report</td>
<td width="20%">Quality Engineer</td>
<td width="20%">Project Manager</td>
<td width="21%">E-mail</td>
<td width="15%">Weekly</td>
</tr>
<tr>
<td width="22%">System Deliverables</td>
<td width="20%">Project Manager</td>
<td width="20%">Client</td>
<td width="21%">Face to face</td>
<td width="15%">At completed project time</td>
</tr>
<tr>
<td width="22%">System maintenance Report</td>
<td width="20%">Quality Engineer</td>
<td width="20%">Client</td>
<td width="21%">E-mail</td>
<td width="15%">Monthly</td>
</tr>
</tbody>
</table>
<p><strong>3.1.3 Relative </strong><strong>Priorities</strong></p>
<ul>
<li>Ensure that the project is within budget, on time, within scope, and of high quality</li>
<li>Ensure that the online forms match the functional and quality requirements</li>
<li>Ensure that the new system can communicate with the existing system</li>
</ul>
<p><strong>3.1.4 Resolving interpersonal issues</strong></p>
<p><strong> </strong>During  the life cycle of the project, interpersonal issues could arise  resulting in some conflicts among team members. The project manger is  the key to resolving any issues that occur, however, there are some  techniques and personal attributes that can help to reduce the conflicts  among team members and allow for effective and efficient methods to  resolve these interpersonal issues such as:</p>
<ul>
<li> Promote  communication: Team members should focus on communication when working  on the project to make sure work is not being duplicated</li>
<li> Give  feedback regularly: Conflict can arise due to team members having  differentiating goals but with regular feedback and meetings allows the  team to be driven to the same objectives.</li>
<li> Compromise: All team members should work collaboratively, and assist each other towards solving issues.</li>
<li> Confrontation:  The project manager should allow team members to work on their jobs  with their ideas as long as they complete their tasks and satisfy the  requirement. If team members can’t resolve their issues than the Project  Manager acts as a mediator to assist with the resolution.</li>
</ul>
<h2>3.2 Assumptions, Dependencies and Constraints</h2>
<p>The assumption has been made  that all outputs where the fucntional requirements regarding data  outputs to a user are vauge or undifiend are External Outputs (EO)  rather than External Enquries (EQ)</p>
<p>In this project plan it is  assumed the requirements will not change or funding will not be cut by  the responsible stakeholders. Constraints to the project will be for it  to be completed in the accurate time frame listed in the project plan  and for the cost to not be exceeded. The design and production of the  schedule will be run independently from the running of the company at  The Brisbane Curtain Company, though it will be dependant on the  requirements presented and test data also with the input of stakeholders  to approve of changes and acceptance.</p>
<h2>3.3 Risk Management</h2>
<h3>3.3.1 Risk Management Processes</h3>
<p>The below is a  view of the risk management strategy that identifies the three top  risks. The full risk table can be found in the appendix (Appendix 6.4)</p>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="45"><strong>Risk    No</strong></td>
<td width="201"><strong>Risk    (Cause and Consequence)</strong></td>
<td width="76"><strong>Pre-Strategy    Risk Exposure </strong></td>
<td width="217"><strong>Strategy    Description</strong></td>
<td width="76"><strong>Residual    Risk Exposure </strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="45" valign="top">R01</td>
<td width="201" valign="top">Risk: Poor communication</p>
<p>Cause: Project team and/or client are not   communicating</p>
<p>Consequence: Requirements not understood,   Errors in project phases, delay in project, misunderstood scope, budget blow   out</p>
<p>Likelihood: High</td>
<td width="76" valign="top">High</td>
<td width="217" valign="top">
<ul>
<li>Hold        regular meetings</li>
<li>Prepare        and submit reports regularly</li>
<li>Open        communication channels</li>
</ul>
</td>
<td width="76" valign="top">Medium</td>
</tr>
<tr>
<td width="45" valign="top">R02</td>
<td width="201" valign="top">Risk: Change in client requirements</p>
<p>Cause: clients changes their mind</p>
<p>Consequence: Scope change</p>
<p>Likelihood: High</td>
<td width="76" valign="top">Medium</td>
<td width="217" valign="top">
<ul>
<li>Have        clear scope and scope statement sign off</li>
<li>Report        on progress and communicate weekly with client</li>
</ul>
</td>
<td width="76" valign="top">R08</td>
</tr>
<tr>
<td width="45" valign="top">R03</td>
<td width="201" valign="top">Risk: Failure to meet deadline of tasks</p>
<p>Cause: Tasks made unclear by Project Manager,   poor time management by individuals</p>
<p>Consequence: Project is delayed</p>
<p>Likelihood: Medium</td>
<td width="76" valign="top">Medium</td>
<td width="217" valign="top">
<ul>
<li>Develop        detailed WBS</li>
<li>Review        weekly reports</li>
<li>Hold        weekly meetings</li>
</ul>
</td>
<td width="76" valign="top">Low</td>
</tr>
</tbody>
</table>
<h2>3.4 Monitoring and Controlling Mechanisms</h2>
<p><strong>1. Budget Control</strong></p>
<p><em>Budget:</em> The Project Manager will maintain a weekly budget report that will show  any variations on budget priorities. If any anomalies exist they will  be investigated and the client will be notified if significant to the  impact of the budget and the plan</p>
<p><strong>2. Quality Control</strong></p>
<p>The  Quality Engineer will audit compliance with quality standards at varies  stages throughout the project life cycle and will submit a weekly  report on performance against progress. A weekly meeting will also be  held to discuss the results and identify areas for improvement.</p>
<p><strong>3.  Project Status Report</strong></p>
<p>All  team members are required to submit a weekly report every Friday to  show performance against progress and to enable the Project Manager to  identify any variations against the plan. This will provide the Project  Manager with the appropriate tool to be able to effectively and  efficiently manage the project.</p>
<p><strong>4. Risk Control</strong></p>
<p>Risks  to the project must be identified and logged in the risk register and  monitored during the project progress. The Quality Engineer is  responsible for measure the project milestones and maintain the risk  register</p>
<h2>3.5 Staffing Plan</h2>
<h2>3.5.1 Training Strategy</h2>
<p>Sharpwise  are using qualified specialist as part of the project team. The members  have over 35 years experience in software development and project  management. Therefore, the skill levels are satisfied however if  required training will be prov</p>
<h3>3.5.2 Skills Needed</h3>
<p>Sharpwise  Software has a total staff of 35 business analysts, designers,  programmers and project managers. The project team for the scheduling  software based forms will consist of 4 team members, entailing a Project  Manager, Quality Engineer, System Analyst, and one programmer. The  skills needed to complete the project and are needed between the 4 team  members are:</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="204"><strong>Skills Needed</strong></td>
<td width="203"><strong>Level Requirement</strong></td>
<td width="203"><strong>Satisfied By</strong></td>
</tr>
<tr>
<td width="204">Database Design / SQL</td>
<td width="203">High</td>
<td width="203">Programmers</td>
</tr>
<tr>
<td width="204">Java or C# .Net</td>
<td width="203">High</td>
<td width="203">Programmers</td>
</tr>
<tr>
<td width="204">GUI Design &amp; Development</td>
<td width="203">Medium</td>
<td width="203">Programmers</td>
</tr>
<tr>
<td width="204">Thorough Testing</td>
<td width="203">Medium</td>
<td width="203">Quality Engineer</td>
</tr>
<tr>
<td width="204">Microsoft Project   2007</td>
<td width="203">High</td>
<td width="203">Project Manager</td>
</tr>
<tr>
<td width="204">Communication   skills</td>
<td width="203">Medium</td>
<td width="203">All team members</td>
</tr>
<tr>
<td width="204">Databases and   Servers</td>
<td width="203">High</td>
<td width="203">Programmers</td>
</tr>
<tr>
<td width="204">Problems Solving   Skills</td>
<td width="203">High</td>
<td width="203">All team members</td>
</tr>
<tr>
<td width="204">Research ability</td>
<td width="203">Medium</td>
<td width="203">Quality Engineer</td>
</tr>
<tr>
<td width="204">Management and   leadership</td>
<td width="203">Medium</td>
<td width="203">Project manager</td>
</tr>
<tr>
<td width="204">Customer Relations</td>
<td width="203">High</td>
<td width="203">Project Manager</td>
</tr>
<tr>
<td width="204">Design skills</td>
<td width="203">Medium</td>
<td width="203">All team members</td>
</tr>
<tr>
<td width="204">Risk management</td>
<td width="203">Medium</td>
<td width="203">Project Manager</td>
</tr>
</tbody>
</table>
<h1>4 Technical Process</h1>
<p>&nbsp;</p>
<h2>4.1 Methods, Tools and Techniques</h2>
<p>The following is a brief overview of the techniques that will be used to complete the objectives of the project:</p>
<ul>
<li>Adequate product  documentation to ensure even a user with very little computer expiernce  can understand how to use the system created</li>
<li>To deliver a  quality product quality audits, flow charts and cause and effect  diagrams will be used to ensure that all functions of the project work  and are implemented properly</li>
</ul>
<p>A description of the methods, tools and techniques to be used to achieve the project<br />
objectives. This section will reference the technical references and standards used for<br />
application of the Primary Processes. There will also be a cross-reference to relevant<br />
sections of the Quality Plan.</p>
<h2>4.2 Work Product Documentation</h2>
<p>The documentation needed for the project are as follows :</p>
<ul>
<li>Hard copies of both user manual and technical manual</li>
<li>Electronic copies of both the user manual and technical manual</li>
</ul>
<p>All documentation must be presented in the following way :</p>
<ul>
<li>All manuals must have a contents page</li>
<li>All manuals must have an index page</li>
<li>All manuals must contain web addresses, books and other resources.</li>
</ul>
<table border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="19%"><strong>Document</strong></td>
<td width="33%"><strong>Definition</strong></td>
<td width="11%"><strong>Program</strong></td>
<td width="17%"><strong>Relation    to SDLC<br />
</strong></td>
<td width="17%"><strong>To    be Completed by</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="19%">Team Contract</td>
<td width="33%">Outlines the   roles each team member is responsible for</td>
<td width="11%">Word</td>
<td width="17%">Requirements</td>
<td width="17%">Project   Manager</td>
</tr>
<tr>
<td width="19%">Scope   Statement</td>
<td width="33%">The work and   processes involved in creating the forms</td>
<td width="11%">Word</td>
<td width="17%">Requirements</td>
<td width="17%">Project Manager</td>
</tr>
<tr>
<td width="19%">Project   Charter</td>
<td width="33%">Formally   authorises the existence of the project</td>
<td width="11%">Word</td>
<td width="17%">Requirements</td>
<td width="17%">Excelsior   aerospace Systems</td>
</tr>
<tr>
<td width="19%">Project   benefits measurement information</td>
<td width="33%">How the   product will be measured as a success</td>
<td width="11%">Word</td>
<td width="17%">Requirements</td>
<td width="17%">Quality   Engineer</td>
</tr>
<tr>
<td width="19%">List of   prioritised risks</td>
<td width="33%">Possible   risks and outcomes</td>
<td width="11%">Word</td>
<td width="17%">Requirements</p>
<p>Design</td>
<td width="17%">Quality   Engineer</td>
</tr>
<tr>
<td width="19%">Contract   files</td>
<td width="33%">Binding   agreement that the seller must deliver the products and obligates the buyer   to purchase</td>
<td width="11%">Word</td>
<td width="17%">Requirements</td>
<td width="17%">Project   Manager</td>
</tr>
<tr>
<td width="19%">Milestones   reports</td>
<td width="33%">The status   and health of the project at allocated times in project</td>
<td width="11%">Word</td>
<td width="17%">Design</p>
<p>Implementation</td>
<td width="17%">Project   Manager</td>
</tr>
<tr>
<td width="19%">Gantt Chart</td>
<td width="33%">A graphical   schedule for the time line of the WBS to be completed</td>
<td width="11%">Project</td>
<td width="17%">Design</td>
<td width="17%">Project   Manager</td>
</tr>
<tr>
<td width="19%">WBS and WBS   dictionary</td>
<td width="33%">A   hierarchical decomposition of the work to be executed to  achieve the goals and objectives</td>
<td width="11%">Word</td>
<td width="17%">Design</td>
<td width="17%">Project   Manager</td>
</tr>
<tr>
<td width="19%">Survey and   results</td>
<td width="33%">A report on   the chosen layout, colour and other options available</td>
<td width="11%">Word</td>
<td width="17%">Design</td>
<td width="17%">Quality   Engineer</td>
</tr>
<tr>
<td width="19%">Summary of   user inputs</td>
<td width="33%">The required   fields need to be gathered and stored, and whether fields need to be   validated</td>
<td width="11%">Word</td>
<td width="17%">Design</td>
<td width="17%">Software   Engineer</td>
</tr>
<tr>
<td width="19%">Progress   Reports</td>
<td width="33%">Establishes   what the team has accomplished in the time frame</td>
<td width="11%">Word</td>
<td width="17%">Design</p>
<p>Implementation</td>
<td width="17%">Project   Manager</td>
</tr>
<tr>
<td width="19%">Forms designs</td>
<td width="33%">Layouts of   the forms</td>
<td width="11%">Word</td>
<td width="17%">Design</td>
<td width="17%">Software   Engineer</td>
</tr>
<tr>
<td width="19%">Form contents</td>
<td width="33%">All the   required fields needs</td>
<td width="11%">Word</td>
<td width="17%">Design</td>
<td width="17%">Quality   Engineer</td>
</tr>
<tr>
<td width="19%">Test plans   and reports</td>
<td width="33%">Documents   outlining the test procedures to be carried out, and also showing the test   reports</td>
<td width="11%">Word</td>
<td width="17%">Implementation</p>
<p>Verification</td>
<td width="17%">Software   Engineer</td>
</tr>
<tr>
<td width="19%">Roll-out   information</td>
<td width="33%">Showing how   the new system will be implemented</td>
<td width="11%">Word</td>
<td width="17%">Verification</td>
<td width="17%">Software   Engineer</td>
</tr>
<tr>
<td width="19%">Final   presentation</td>
<td width="33%">To show all   outcomes and objectives have been achieved</td>
<td width="11%">Word</td>
<td width="17%">Verification</td>
<td width="17%">Project   Manager</td>
</tr>
<tr>
<td width="19%">Client   acceptance form</td>
<td width="33%">Proof that   buyer accepts the product</td>
<td width="11%">Word</td>
<td width="17%">Verification</td>
<td width="17%">Project   Manager</td>
</tr>
<tr>
<td width="19%">Lessons   Learnt reports</td>
<td width="33%">Reflective   statements on new ideas learnt</td>
<td width="11%">Word</td>
<td width="17%">Maintenance</td>
<td width="17%">Superlative Software team members</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<h2>4.3 Project Support Functions</h2>
<p>Descriptions of and references to the documentation of relevant project support processes.<br />
The support functions should include:</p>
<h3>4.3.1 Quality Management</h3>
<p>&nbsp;</p>
<p>To ensure the best quality throughout the life cycle of the product, the following will be implemented:</p>
<ul>
<li>Checklists to ensure all processes and activities are complete at each phase</li>
<li>Quality  audits at the end of the evoloutionary prototyping lifecycle to ensure  that at the start of the next phase of the lifecycle the issues brought  up in the quality audits can be fixed.</li>
</ul>
<p>Each phase of the life cycle  will have a checklist of items to be completed before starting the next  phase of the life cycle this is to ensure that all the function  requirements of the project are completed.The Project Manager is in  charge of making sure that each item on the checklist has been checked  off. At the end of the testing phase of the evoltionary prototyping life  cycle,a quality audit need to be done by the Quality Engineer so that  at the begining of the next phase of the life cycle the programmers can  fix the problems with the project.</p>
<h3>4.3.2 Verification and Validation</h3>
<p><strong>Verification Management</strong></p>
<p>The verification strategy to be  applied for the project is checklists, these checklists are to ensure  that all of the project function and technical requirements of the  project. The project manager is responsible for making sure that all of  these requirements are included into the project, the system  designer/analyst&#8217;s job is to make sure that the project has all of the  functional requirements are designed into the project so they can be  checked off by the project manager. The programmers are responsible for  implementing all of the function requirements of the project and the  quality engineer is responsible for making sure that all of the  requirements are up to the correct standard of quality for the project.  Once the other members of the team complete their tasks, the project  manager has to sign off on the project for the last time to say that  everything in the project is complies to correct specifications given.  The verification management technique employed will be cause and effect  diagrams; these diagrams will be used to show that the function  requirements have been met. These diagrams will be made during the  testing phase of the project, these diagrams will highlight  problem  areas of the project.</p>
<p><strong>Validation Management</strong></p>
<p>The validation strategy involves  quality audits from the Quality Engineer; these quality audits are key  to ensuring that the stakeholders are confident that the project is up  to the highest level of quality and that every function requirement for  the project is being implemented and designed to the consumers  specifications. These quality audits happen at each revision of the  project so if it is not up to right standard that the stake holders are  happy with the team can fix the issues the stakeholders have with the  prototype in the next revision of the lifecycle. The other validation  management techniques that will be implemented are flow charts, flow  charts will validate the project by ensuring all of the functions of  project.</p>
<p>&nbsp;</p>
<h3>4.3.3 Configuration Management</h3>
<p>&nbsp;</p>
<p><strong>Configuration Items<br />
</strong></p>
<ul>
<li>Electronic User Manual</li>
<li>Hard Copy User Manual</li>
<li>Job scheduling and task management software</li>
<li>Project Plan</li>
</ul>
<h3><strong>Baseline items </strong></h3>
<ul>
<li>Job scheduling and task management software</li>
<li>Project Plan</li>
</ul>
<h3>Change Control Management Process</h3>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Home-2.jpg"><img class="alignnone size-full wp-image-53" title="Change Control Management Process" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Home-2.jpg" alt="Change Control Management Process" width="816" height="511" /></a></p>
<h1>5 Work Packages, Schedule, and Budget</h1>
<p>&nbsp;</p>
<h2>5.1 Work Packages and Dependencies</h2>
<table border="1" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td width="45" bgcolor="#dfe3e8">ID</td>
<td width="318" bgcolor="#dfe3e8">Task Name</td>
<td width="101" bgcolor="#dfe3e8">Predecessors</td>
</tr>
<tr>
<td width="45" bgcolor="white">1</td>
<td width="318" bgcolor="white">Scheduling Software</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">2</td>
<td width="318" bgcolor="white">Initiating &amp; Planning</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">3</td>
<td width="318" bgcolor="white">Develop Project Charter</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">4</td>
<td width="318" bgcolor="white">Develop Project Plan</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">5</td>
<td width="318" bgcolor="white">Analysis</td>
<td width="101" bgcolor="white">3</td>
</tr>
<tr>
<td width="45" bgcolor="white">6</td>
<td width="318" bgcolor="white">Prepare SUR &amp; Acceptance Criteria</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">7</td>
<td width="318" bgcolor="white">Design</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">8</td>
<td width="318" bgcolor="white">Functional Requirements</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">9</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="101" bgcolor="white">6</td>
</tr>
<tr>
<td width="45" bgcolor="white">10</td>
<td width="318" bgcolor="white">Analyse Requirements</td>
<td width="101" bgcolor="white">9</td>
</tr>
<tr>
<td width="45" bgcolor="white">11</td>
<td width="318" bgcolor="white">Produce SRS</td>
<td width="101" bgcolor="white">10</td>
</tr>
<tr>
<td width="45" bgcolor="white">12</td>
<td width="318" bgcolor="white">System Design Document</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">13</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="101" bgcolor="white">11</td>
</tr>
<tr>
<td width="45" bgcolor="white">14</td>
<td width="318" bgcolor="white">Analyse Requirements</td>
<td width="101" bgcolor="white">13</td>
</tr>
<tr>
<td width="45" bgcolor="white">15</td>
<td width="318" bgcolor="white">Produce System Design Document</td>
<td width="101" bgcolor="white">14</td>
</tr>
<tr>
<td width="45" bgcolor="white">16</td>
<td width="318" bgcolor="white">Test Plan</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">17</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="101" bgcolor="white">6,15</td>
</tr>
<tr>
<td width="45" bgcolor="white">18</td>
<td width="318" bgcolor="white">Develop Test Strategy</td>
<td width="101" bgcolor="white">17</td>
</tr>
<tr>
<td width="45" bgcolor="white">19</td>
<td width="318" bgcolor="white">Develop Test Cases</td>
<td width="101" bgcolor="white">18</td>
</tr>
<tr>
<td width="45" bgcolor="white">20</td>
<td width="318" bgcolor="white">Produce Test Plan</td>
<td width="101" bgcolor="white">19</td>
</tr>
<tr>
<td width="45" bgcolor="white">21</td>
<td width="318" bgcolor="white">Development &amp; Integration Testing</td>
<td width="101" bgcolor="white">7</td>
</tr>
<tr>
<td width="45" bgcolor="white">22</td>
<td width="318" bgcolor="white">Prototype 1</td>
<td width="101" bgcolor="white">20</td>
</tr>
<tr>
<td width="45" bgcolor="white">23</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirement FR1</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">24</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="101" bgcolor="white">23</td>
</tr>
<tr>
<td width="45" bgcolor="white">25</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">24</td>
</tr>
<tr>
<td width="45" bgcolor="white">26</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">25</td>
</tr>
<tr>
<td width="45" bgcolor="white">27</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="101" bgcolor="white">26</td>
</tr>
<tr>
<td width="45" bgcolor="white">28</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">29</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="101" bgcolor="white">28</td>
</tr>
<tr>
<td width="45" bgcolor="white">30</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">29</td>
</tr>
<tr>
<td width="45" bgcolor="white">31</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">30</td>
</tr>
<tr>
<td width="45" bgcolor="white">32</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="101" bgcolor="white">27</td>
</tr>
<tr>
<td width="45" bgcolor="white">33</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="101" bgcolor="white">31</td>
</tr>
<tr>
<td width="45" bgcolor="white">34</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="101" bgcolor="white">33</td>
</tr>
<tr>
<td width="45" bgcolor="white">35</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="101" bgcolor="white">24,27,32</td>
</tr>
<tr>
<td width="45" bgcolor="white">36</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="101" bgcolor="white">35</td>
</tr>
<tr>
<td width="45" bgcolor="white">37</td>
<td width="318" bgcolor="white">Prototype 2</td>
<td width="101" bgcolor="white">36</td>
</tr>
<tr>
<td width="45" bgcolor="white">38</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR2 through FR10</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">39</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="101" bgcolor="white">38</td>
</tr>
<tr>
<td width="45" bgcolor="white">40</td>
<td width="318" bgcolor="white">Prototype 1 Integration</td>
<td width="101" bgcolor="white">39</td>
</tr>
<tr>
<td width="45" bgcolor="white">41</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="101" bgcolor="white">40</td>
</tr>
<tr>
<td width="45" bgcolor="white">42</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">41</td>
</tr>
<tr>
<td width="45" bgcolor="white">43</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">42</td>
</tr>
<tr>
<td width="45" bgcolor="white">44</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="101" bgcolor="white">43</td>
</tr>
<tr>
<td width="45" bgcolor="white">45</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">46</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="101" bgcolor="white">45</td>
</tr>
<tr>
<td width="45" bgcolor="white">47</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">46</td>
</tr>
<tr>
<td width="45" bgcolor="white">48</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">47</td>
</tr>
<tr>
<td width="45" bgcolor="white">49</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="101" bgcolor="white">44</td>
</tr>
<tr>
<td width="45" bgcolor="white">50</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="101" bgcolor="white">48</td>
</tr>
<tr>
<td width="45" bgcolor="white">51</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="101" bgcolor="white">50</td>
</tr>
<tr>
<td width="45" bgcolor="white">52</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="101" bgcolor="white">42,43,44</td>
</tr>
<tr>
<td width="45" bgcolor="white">53</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="101" bgcolor="white">52</td>
</tr>
<tr>
<td width="45" bgcolor="white">54</td>
<td width="318" bgcolor="white">Prototype 3</td>
<td width="101" bgcolor="white">53</td>
</tr>
<tr>
<td width="45" bgcolor="white">55</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR11 through FR19</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">56</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="101" bgcolor="white">55</td>
</tr>
<tr>
<td width="45" bgcolor="white">57</td>
<td width="318" bgcolor="white">Prototype 2 Integration</td>
<td width="101" bgcolor="white">56</td>
</tr>
<tr>
<td width="45" bgcolor="white">58</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="101" bgcolor="white">57</td>
</tr>
<tr>
<td width="45" bgcolor="white">59</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">58</td>
</tr>
<tr>
<td width="45" bgcolor="white">60</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">59</td>
</tr>
<tr>
<td width="45" bgcolor="white">61</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="101" bgcolor="white">60</td>
</tr>
<tr>
<td width="45" bgcolor="white">62</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">63</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="101" bgcolor="white">62</td>
</tr>
<tr>
<td width="45" bgcolor="white">64</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">63</td>
</tr>
<tr>
<td width="45" bgcolor="white">65</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">64</td>
</tr>
<tr>
<td width="45" bgcolor="white">66</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="101" bgcolor="white">61</td>
</tr>
<tr>
<td width="45" bgcolor="white">67</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="101" bgcolor="white">65</td>
</tr>
<tr>
<td width="45" bgcolor="white">68</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="101" bgcolor="white">67</td>
</tr>
<tr>
<td width="45" bgcolor="white">69</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="101" bgcolor="white">66,59,61</td>
</tr>
<tr>
<td width="45" bgcolor="white">70</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="101" bgcolor="white">69</td>
</tr>
<tr>
<td width="45" bgcolor="white">71</td>
<td width="318" bgcolor="white">Prototype 4</td>
<td width="101" bgcolor="white">54</td>
</tr>
<tr>
<td width="45" bgcolor="white">72</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR20 through FR28</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">73</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="101" bgcolor="white">72</td>
</tr>
<tr>
<td width="45" bgcolor="white">74</td>
<td width="318" bgcolor="white">Prototype 3 Integration</td>
<td width="101" bgcolor="white">73</td>
</tr>
<tr>
<td width="45" bgcolor="white">75</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="101" bgcolor="white">74</td>
</tr>
<tr>
<td width="45" bgcolor="white">76</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">75</td>
</tr>
<tr>
<td width="45" bgcolor="white">77</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">76</td>
</tr>
<tr>
<td width="45" bgcolor="white">78</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="101" bgcolor="white">77</td>
</tr>
<tr>
<td width="45" bgcolor="white">79</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">80</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="101" bgcolor="white">79</td>
</tr>
<tr>
<td width="45" bgcolor="white">81</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">80</td>
</tr>
<tr>
<td width="45" bgcolor="white">82</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">81</td>
</tr>
<tr>
<td width="45" bgcolor="white">83</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="101" bgcolor="white">78</td>
</tr>
<tr>
<td width="45" bgcolor="white">84</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="101" bgcolor="white">82</td>
</tr>
<tr>
<td width="45" bgcolor="white">85</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="101" bgcolor="white">84</td>
</tr>
<tr>
<td width="45" bgcolor="white">86</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="101" bgcolor="white">83,76,78</td>
</tr>
<tr>
<td width="45" bgcolor="white">87</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="101" bgcolor="white">86</td>
</tr>
<tr>
<td width="45" bgcolor="white">88</td>
<td width="318" bgcolor="white">Prototype 5</td>
<td width="101" bgcolor="white">71</td>
</tr>
<tr>
<td width="45" bgcolor="white">89</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR29 through FR37</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">90</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="101" bgcolor="white">89</td>
</tr>
<tr>
<td width="45" bgcolor="white">91</td>
<td width="318" bgcolor="white">Prototype 4 Integration</td>
<td width="101" bgcolor="white">90</td>
</tr>
<tr>
<td width="45" bgcolor="white">92</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="101" bgcolor="white">91</td>
</tr>
<tr>
<td width="45" bgcolor="white">93</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">92</td>
</tr>
<tr>
<td width="45" bgcolor="white">94</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">93</td>
</tr>
<tr>
<td width="45" bgcolor="white">95</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="101" bgcolor="white">94</td>
</tr>
<tr>
<td width="45" bgcolor="white">96</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">97</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="101" bgcolor="white">96</td>
</tr>
<tr>
<td width="45" bgcolor="white">98</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">97</td>
</tr>
<tr>
<td width="45" bgcolor="white">99</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">98</td>
</tr>
<tr>
<td width="45" bgcolor="white">100</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="101" bgcolor="white">95</td>
</tr>
<tr>
<td width="45" bgcolor="white">101</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="101" bgcolor="white">99</td>
</tr>
<tr>
<td width="45" bgcolor="white">102</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="101" bgcolor="white">101</td>
</tr>
<tr>
<td width="45" bgcolor="white">103</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="101" bgcolor="white">100,93,95</td>
</tr>
<tr>
<td width="45" bgcolor="white">104</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="101" bgcolor="white">103</td>
</tr>
<tr>
<td width="45" bgcolor="white">105</td>
<td width="318" bgcolor="white">Prototype 6</td>
<td width="101" bgcolor="white">88</td>
</tr>
<tr>
<td width="45" bgcolor="white">106</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR38 through FR46</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">107</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="101" bgcolor="white">106</td>
</tr>
<tr>
<td width="45" bgcolor="white">108</td>
<td width="318" bgcolor="white">Prototype 5 Integration</td>
<td width="101" bgcolor="white">107</td>
</tr>
<tr>
<td width="45" bgcolor="white">109</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="101" bgcolor="white">108</td>
</tr>
<tr>
<td width="45" bgcolor="white">110</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">109</td>
</tr>
<tr>
<td width="45" bgcolor="white">111</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">110</td>
</tr>
<tr>
<td width="45" bgcolor="white">112</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="101" bgcolor="white">111</td>
</tr>
<tr>
<td width="45" bgcolor="white">113</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">114</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="101" bgcolor="white">113</td>
</tr>
<tr>
<td width="45" bgcolor="white">115</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">114</td>
</tr>
<tr>
<td width="45" bgcolor="white">116</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">115</td>
</tr>
<tr>
<td width="45" bgcolor="white">117</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="101" bgcolor="white">112</td>
</tr>
<tr>
<td width="45" bgcolor="white">118</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="101" bgcolor="white">116</td>
</tr>
<tr>
<td width="45" bgcolor="white">119</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="101" bgcolor="white">118</td>
</tr>
<tr>
<td width="45" bgcolor="white">120</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="101" bgcolor="white">117,110,112</td>
</tr>
<tr>
<td width="45" bgcolor="white">121</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="101" bgcolor="white">120</td>
</tr>
<tr>
<td width="45" bgcolor="white">122</td>
<td width="318" bgcolor="white">Prototype 7</td>
<td width="101" bgcolor="white">105</td>
</tr>
<tr>
<td width="45" bgcolor="white">123</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR47 through FR55</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">124</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="101" bgcolor="white">123</td>
</tr>
<tr>
<td width="45" bgcolor="white">125</td>
<td width="318" bgcolor="white">Prototype 6 Integration</td>
<td width="101" bgcolor="white">124</td>
</tr>
<tr>
<td width="45" bgcolor="white">126</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="101" bgcolor="white">125</td>
</tr>
<tr>
<td width="45" bgcolor="white">127</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">126</td>
</tr>
<tr>
<td width="45" bgcolor="white">128</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">127</td>
</tr>
<tr>
<td width="45" bgcolor="white">129</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="101" bgcolor="white">128</td>
</tr>
<tr>
<td width="45" bgcolor="white">130</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="101" bgcolor="white">127</td>
</tr>
<tr>
<td width="45" bgcolor="white">131</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="101" bgcolor="white">130</td>
</tr>
<tr>
<td width="45" bgcolor="white">132</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">131</td>
</tr>
<tr>
<td width="45" bgcolor="white">133</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">132</td>
</tr>
<tr>
<td width="45" bgcolor="white">134</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="101" bgcolor="white">129</td>
</tr>
<tr>
<td width="45" bgcolor="white">135</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="101" bgcolor="white">133</td>
</tr>
<tr>
<td width="45" bgcolor="white">136</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="101" bgcolor="white">135</td>
</tr>
<tr>
<td width="45" bgcolor="white">137</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="101" bgcolor="white">134,127,129</td>
</tr>
<tr>
<td width="45" bgcolor="white">138</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="101" bgcolor="white">137</td>
</tr>
<tr>
<td width="45" bgcolor="white">139</td>
<td width="318" bgcolor="white">Prototype 8</td>
<td width="101" bgcolor="white">122</td>
</tr>
<tr>
<td width="45" bgcolor="white">140</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR56 through FR66</td>
<td width="101" bgcolor="white"></td>
</tr>
<tr>
<td width="45" bgcolor="white">141</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="101" bgcolor="white">140</td>
</tr>
<tr>
<td width="45" bgcolor="white">142</td>
<td width="318" bgcolor="white">Prototype 7 Integration</td>
<td width="101" bgcolor="white">141</td>
</tr>
<tr>
<td width="45" bgcolor="white">143</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="101" bgcolor="white">142</td>
</tr>
<tr>
<td width="45" bgcolor="white">144</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">143</td>
</tr>
<tr>
<td width="45" bgcolor="white">145</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">144</td>
</tr>
<tr>
<td width="45" bgcolor="white">146</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="101" bgcolor="white">145</td>
</tr>
<tr>
<td width="45" bgcolor="white">147</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="101" bgcolor="white">144</td>
</tr>
<tr>
<td width="45" bgcolor="white">148</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="101" bgcolor="white">147</td>
</tr>
<tr>
<td width="45" bgcolor="white">149</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="101" bgcolor="white">148</td>
</tr>
<tr>
<td width="45" bgcolor="white">150</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="101" bgcolor="white">149</td>
</tr>
<tr>
<td width="45" bgcolor="white">151</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="101" bgcolor="white">146</td>
</tr>
<tr>
<td width="45" bgcolor="white">152</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="101" bgcolor="white">150</td>
</tr>
<tr>
<td width="45" bgcolor="white">153</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="101" bgcolor="white">152</td>
</tr>
<tr>
<td width="45" bgcolor="white">154</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="101" bgcolor="white">151,144,146</td>
</tr>
<tr>
<td width="45" bgcolor="white">155</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="101" bgcolor="white">154</td>
</tr>
<tr>
<td width="45" bgcolor="white">156</td>
<td width="318" bgcolor="white">Tuning &amp; Integration</td>
<td width="101" bgcolor="white">139</td>
</tr>
<tr>
<td width="45" bgcolor="white">157</td>
<td width="318" bgcolor="white">Final Prototype Integration</td>
<td width="101" bgcolor="white">154</td>
</tr>
<tr>
<td width="45" bgcolor="white">158</td>
<td width="318" bgcolor="white">Final Prototype Integration Testing</td>
<td width="101" bgcolor="white">157</td>
</tr>
<tr>
<td width="45" bgcolor="white">159</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feedback</td>
<td width="101" bgcolor="white">158</td>
</tr>
<tr>
<td width="45" bgcolor="white">160</td>
<td width="318" bgcolor="white">Final Changes</td>
<td width="101" bgcolor="white">159</td>
</tr>
<tr>
<td width="45" bgcolor="white">161</td>
<td width="318" bgcolor="white">Change Testing</td>
<td width="101" bgcolor="white">160</td>
</tr>
<tr>
<td width="45" bgcolor="white">162</td>
<td width="318" bgcolor="white">Final Documentation</td>
<td width="101" bgcolor="white">161</td>
</tr>
<tr>
<td width="45" bgcolor="white">163</td>
<td width="318" bgcolor="white">Sign off</td>
<td width="101" bgcolor="white">162</td>
</tr>
</tbody>
</table>
<h2>
5.2 Resource Requirements and Allocation</h2>
<h3>5.2.1 Function Point Analysis</h3>
<p>Function Point Analysis based  upon IFPUG ISO 14143-1 standard has been done and can be found in  section 6.2. Function Point Assignment of the Appendix.<br />
Approximated  entites where modeled for use in the Function Point Analysis, and can  be found in section 6.1 Entity Diagram of the Appendix.</p>
<h3>5.2.2 Resource Allocation</h3>
<table border="1" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td width="45" bgcolor="#dfe3e8">ID</td>
<td width="318" bgcolor="#dfe3e8">Task Name</td>
<td width="248" bgcolor="#dfe3e8">Resource Names</td>
</tr>
<tr>
<td width="45" bgcolor="white">1</td>
<td width="318" bgcolor="white">Scheduling Software</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">2</td>
<td width="318" bgcolor="white">Initiating &amp; Planning</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">3</td>
<td width="318" bgcolor="white">Develop Project Charter</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">4</td>
<td width="318" bgcolor="white">Develop Project Plan</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">5</td>
<td width="318" bgcolor="white">Analysis</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">6</td>
<td width="318" bgcolor="white">Prepare SUR &amp; Acceptance Criteria</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">7</td>
<td width="318" bgcolor="white">Design</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">8</td>
<td width="318" bgcolor="white">Functional Requirements</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">9</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">10</td>
<td width="318" bgcolor="white">Analyse Requirements</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">11</td>
<td width="318" bgcolor="white">Produce SRS</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">12</td>
<td width="318" bgcolor="white">System Design Document</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">13</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">14</td>
<td width="318" bgcolor="white">Analyse Requirements</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">15</td>
<td width="318" bgcolor="white">Produce System Design Document</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">16</td>
<td width="318" bgcolor="white">Test Plan</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">17</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">18</td>
<td width="318" bgcolor="white">Develop Test Strategy</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">19</td>
<td width="318" bgcolor="white">Develop Test Cases</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">20</td>
<td width="318" bgcolor="white">Produce Test Plan</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">21</td>
<td width="318" bgcolor="white">Development &amp; Integration Testing</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">22</td>
<td width="318" bgcolor="white">Prototype 1</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">23</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirement FR1</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">24</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">25</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">26</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">27</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">28</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">29</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">30</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">31</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">32</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">33</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">34</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">35</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">36</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">37</td>
<td width="318" bgcolor="white">Prototype 2</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">38</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR2 through FR10</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">39</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">40</td>
<td width="318" bgcolor="white">Prototype 1 Integration</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">41</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">42</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">43</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">44</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">45</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">46</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">47</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">48</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">49</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">50</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">51</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">52</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">53</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">54</td>
<td width="318" bgcolor="white">Prototype 3</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">55</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR11 through FR19</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">56</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">57</td>
<td width="318" bgcolor="white">Prototype 2 Integration</td>
<td width="248" bgcolor="white">Programmer 2,Programmer 1</td>
</tr>
<tr>
<td width="45" bgcolor="white">58</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">59</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">60</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">61</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">62</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">63</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">64</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">65</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">66</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">67</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">68</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">69</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">70</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">71</td>
<td width="318" bgcolor="white">Prototype 4</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">72</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR20 through FR28</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">73</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">74</td>
<td width="318" bgcolor="white">Prototype 3 Integration</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">75</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">76</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">77</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">78</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">79</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">80</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">81</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">82</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">83</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">84</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">85</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">86</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">87</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">88</td>
<td width="318" bgcolor="white">Prototype 5</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">89</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR29 through FR37</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">90</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">91</td>
<td width="318" bgcolor="white">Prototype 4 Integration</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">92</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">93</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">94</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">95</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">96</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">97</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">98</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">99</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">100</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">101</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">102</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">103</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">104</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">105</td>
<td width="318" bgcolor="white">Prototype 6</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">106</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR38 through FR46</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">107</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">108</td>
<td width="318" bgcolor="white">Prototype 5 Integration</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">109</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">110</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">111</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">112</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">113</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">114</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">115</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">116</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">117</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">118</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">119</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">120</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">121</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">122</td>
<td width="318" bgcolor="white">Prototype 7</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">123</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR47 through FR55</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">124</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">125</td>
<td width="318" bgcolor="white">Prototype 6 Integration</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">126</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">127</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">128</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">129</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">130</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">131</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">132</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">133</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">134</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">135</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">136</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">137</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">138</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">139</td>
<td width="318" bgcolor="white">Prototype 8</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">140</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR56 through FR66</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">141</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">142</td>
<td width="318" bgcolor="white">Prototype 7 Integration</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">143</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">144</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">145</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">146</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">147</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">148</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">149</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">150</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">151</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">152</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">153</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">154</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">155</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">156</td>
<td width="318" bgcolor="white">Tuning &amp; Integration</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">157</td>
<td width="318" bgcolor="white">Final Prototype Integration</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">158</td>
<td width="318" bgcolor="white">Final Prototype Integration Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">159</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feedback</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">160</td>
<td width="318" bgcolor="white">Final Changes</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">161</td>
<td width="318" bgcolor="white">Change Testing</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">162</td>
<td width="318" bgcolor="white">Final Documentation</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">163</td>
<td width="318" bgcolor="white">Sign off</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
</tbody>
</table>
<h2>5.3 Schedule</h2>
<table border="1" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td width="45" bgcolor="#dfe3e8">ID</td>
<td width="318" bgcolor="#dfe3e8">Task Name</td>
<td width="80" bgcolor="#dfe3e8">Duration</td>
<td width="94" bgcolor="#dfe3e8">Start</td>
<td width="94" bgcolor="#dfe3e8">Finish</td>
<td width="101" bgcolor="#dfe3e8">Predecessors</td>
<td width="248" bgcolor="#dfe3e8">Resource Names</td>
</tr>
<tr>
<td width="45" bgcolor="white">1</td>
<td width="318" bgcolor="white">Scheduling Software</td>
<td width="80" bgcolor="white">96.75 days</td>
<td width="94" bgcolor="white">Mon 18/10/10</td>
<td width="94" bgcolor="white">Tue 1/03/11</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">2</td>
<td width="318" bgcolor="white">Initiating &amp; Planning</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 18/10/10</td>
<td width="94" bgcolor="white">Mon 18/10/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">3</td>
<td width="318" bgcolor="white">Develop Project Charter</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 18/10/10</td>
<td width="94" bgcolor="white">Mon 18/10/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">4</td>
<td width="318" bgcolor="white">Develop Project Plan</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 18/10/10</td>
<td width="94" bgcolor="white">Mon 18/10/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">5</td>
<td width="318" bgcolor="white">Analysis</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 19/10/10</td>
<td width="94" bgcolor="white">Tue 19/10/10</td>
<td width="101" bgcolor="white">3</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">6</td>
<td width="318" bgcolor="white">Prepare SUR &amp; Acceptance Criteria</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 19/10/10</td>
<td width="94" bgcolor="white">Tue 19/10/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">7</td>
<td width="318" bgcolor="white">Design</td>
<td width="80" bgcolor="white">9.5 days</td>
<td width="94" bgcolor="white">Wed 20/10/10</td>
<td width="94" bgcolor="white">Tue 2/11/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">8</td>
<td width="318" bgcolor="white">Functional Requirements</td>
<td width="80" bgcolor="white">3 days</td>
<td width="94" bgcolor="white">Wed 20/10/10</td>
<td width="94" bgcolor="white">Fri 22/10/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">9</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 20/10/10</td>
<td width="94" bgcolor="white">Wed 20/10/10</td>
<td width="101" bgcolor="white">6</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">10</td>
<td width="318" bgcolor="white">Analyse Requirements</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 21/10/10</td>
<td width="94" bgcolor="white">Thu 21/10/10</td>
<td width="101" bgcolor="white">9</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">11</td>
<td width="318" bgcolor="white">Produce SRS</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 22/10/10</td>
<td width="94" bgcolor="white">Fri 22/10/10</td>
<td width="101" bgcolor="white">10</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">12</td>
<td width="318" bgcolor="white">System Design Document</td>
<td width="80" bgcolor="white">3 days</td>
<td width="94" bgcolor="white">Mon 25/10/10</td>
<td width="94" bgcolor="white">Wed 27/10/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">13</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 25/10/10</td>
<td width="94" bgcolor="white">Mon 25/10/10</td>
<td width="101" bgcolor="white">11</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">14</td>
<td width="318" bgcolor="white">Analyse Requirements</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 26/10/10</td>
<td width="94" bgcolor="white">Tue 26/10/10</td>
<td width="101" bgcolor="white">13</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">15</td>
<td width="318" bgcolor="white">Produce System Design Document</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 27/10/10</td>
<td width="94" bgcolor="white">Wed 27/10/10</td>
<td width="101" bgcolor="white">14</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">16</td>
<td width="318" bgcolor="white">Test Plan</td>
<td width="80" bgcolor="white">3.5 days</td>
<td width="94" bgcolor="white">Thu 28/10/10</td>
<td width="94" bgcolor="white">Tue 2/11/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">17</td>
<td width="318" bgcolor="white">Review Inputs</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 28/10/10</td>
<td width="94" bgcolor="white">Thu 28/10/10</td>
<td width="101" bgcolor="white">6,15</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">18</td>
<td width="318" bgcolor="white">Develop Test Strategy</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 28/10/10</td>
<td width="94" bgcolor="white">Fri 29/10/10</td>
<td width="101" bgcolor="white">17</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">19</td>
<td width="318" bgcolor="white">Develop Test Cases</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 29/10/10</td>
<td width="94" bgcolor="white">Mon 1/11/10</td>
<td width="101" bgcolor="white">18</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">20</td>
<td width="318" bgcolor="white">Produce Test Plan</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 1/11/10</td>
<td width="94" bgcolor="white">Tue 2/11/10</td>
<td width="101" bgcolor="white">19</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">21</td>
<td width="318" bgcolor="white">Development &amp; Integration Testing</td>
<td width="80" bgcolor="white">78.75 days</td>
<td width="94" bgcolor="white">Tue 2/11/10</td>
<td width="94" bgcolor="white">Mon 21/02/11</td>
<td width="101" bgcolor="white">7</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">22</td>
<td width="318" bgcolor="white">Prototype 1</td>
<td width="80" bgcolor="white">8.25 days</td>
<td width="94" bgcolor="white">Tue 2/11/10</td>
<td width="94" bgcolor="white">Fri 12/11/10</td>
<td width="101" bgcolor="white">20</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">23</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirement FR1</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 2/11/10</td>
<td width="94" bgcolor="white">Wed 3/11/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">24</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Wed 3/11/10</td>
<td width="94" bgcolor="white">Wed 3/11/10</td>
<td width="101" bgcolor="white">23</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">25</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 3/11/10</td>
<td width="94" bgcolor="white">Thu 4/11/10</td>
<td width="101" bgcolor="white">24</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">26</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 4/11/10</td>
<td width="94" bgcolor="white">Fri 5/11/10</td>
<td width="101" bgcolor="white">25</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">27</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="80" bgcolor="white">2.75 days</td>
<td width="94" bgcolor="white">Fri 5/11/10</td>
<td width="94" bgcolor="white">Tue 9/11/10</td>
<td width="101" bgcolor="white">26</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">28</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 5/11/10</td>
<td width="94" bgcolor="white">Mon 8/11/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">29</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 8/11/10</td>
<td width="94" bgcolor="white">Mon 8/11/10</td>
<td width="101" bgcolor="white">28</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">30</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 8/11/10</td>
<td width="94" bgcolor="white">Tue 9/11/10</td>
<td width="101" bgcolor="white">29</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">31</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Tue 9/11/10</td>
<td width="94" bgcolor="white">Tue 9/11/10</td>
<td width="101" bgcolor="white">30</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">32</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="80" bgcolor="white">1.25 days</td>
<td width="94" bgcolor="white">Wed 10/11/10</td>
<td width="94" bgcolor="white">Thu 11/11/10</td>
<td width="101" bgcolor="white">27</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">33</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 10/11/10</td>
<td width="94" bgcolor="white">Wed 10/11/10</td>
<td width="101" bgcolor="white">31</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">34</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Thu 11/11/10</td>
<td width="94" bgcolor="white">Thu 11/11/10</td>
<td width="101" bgcolor="white">33</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">35</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 11/11/10</td>
<td width="94" bgcolor="white">Fri 12/11/10</td>
<td width="101" bgcolor="white">24,27,32</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">36</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Fri 12/11/10</td>
<td width="94" bgcolor="white">Fri 12/11/10</td>
<td width="101" bgcolor="white">35</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">37</td>
<td width="318" bgcolor="white">Prototype 2</td>
<td width="80" bgcolor="white">9 days</td>
<td width="94" bgcolor="white">Fri 12/11/10</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="101" bgcolor="white">36</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">38</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR2 through FR10</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 12/11/10</td>
<td width="94" bgcolor="white">Mon 15/11/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">39</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 15/11/10</td>
<td width="94" bgcolor="white">Mon 15/11/10</td>
<td width="101" bgcolor="white">38</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">40</td>
<td width="318" bgcolor="white">Prototype 1 Integration</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 16/11/10</td>
<td width="94" bgcolor="white">Tue 16/11/10</td>
<td width="101" bgcolor="white">39</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">41</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 17/11/10</td>
<td width="94" bgcolor="white">Wed 17/11/10</td>
<td width="101" bgcolor="white">40</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">42</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 18/11/10</td>
<td width="94" bgcolor="white">Thu 18/11/10</td>
<td width="101" bgcolor="white">41</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">43</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Fri 19/11/10</td>
<td width="94" bgcolor="white">Fri 19/11/10</td>
<td width="101" bgcolor="white">42</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">44</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="80" bgcolor="white">2.75 days</td>
<td width="94" bgcolor="white">Fri 19/11/10</td>
<td width="94" bgcolor="white">Wed 24/11/10</td>
<td width="101" bgcolor="white">43</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">45</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 19/11/10</td>
<td width="94" bgcolor="white">Mon 22/11/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">46</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 22/11/10</td>
<td width="94" bgcolor="white">Mon 22/11/10</td>
<td width="101" bgcolor="white">45</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">47</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 22/11/10</td>
<td width="94" bgcolor="white">Tue 23/11/10</td>
<td width="101" bgcolor="white">46</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">48</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Tue 23/11/10</td>
<td width="94" bgcolor="white">Wed 24/11/10</td>
<td width="101" bgcolor="white">47</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">49</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="80" bgcolor="white">1.25 days</td>
<td width="94" bgcolor="white">Wed 24/11/10</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="101" bgcolor="white">44</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">50</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 24/11/10</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="101" bgcolor="white">48</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">51</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="101" bgcolor="white">50</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">52</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 24/11/10</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="101" bgcolor="white">42,43,44</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">53</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="101" bgcolor="white">52</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">54</td>
<td width="318" bgcolor="white">Prototype 3</td>
<td width="80" bgcolor="white">10.25 days</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="94" bgcolor="white">Thu 9/12/10</td>
<td width="101" bgcolor="white">53</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">55</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR11 through FR19</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 25/11/10</td>
<td width="94" bgcolor="white">Fri 26/11/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">56</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Fri 26/11/10</td>
<td width="94" bgcolor="white">Fri 26/11/10</td>
<td width="101" bgcolor="white">55</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">57</td>
<td width="318" bgcolor="white">Prototype 2 Integration</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 29/11/10</td>
<td width="94" bgcolor="white">Mon 29/11/10</td>
<td width="101" bgcolor="white">56</td>
<td width="248" bgcolor="white">Programmer 2,Programmer 1</td>
</tr>
<tr>
<td width="45" bgcolor="white">58</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 30/11/10</td>
<td width="94" bgcolor="white">Tue 30/11/10</td>
<td width="101" bgcolor="white">57</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">59</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 1/12/10</td>
<td width="94" bgcolor="white">Wed 1/12/10</td>
<td width="101" bgcolor="white">58</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">60</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 2/12/10</td>
<td width="94" bgcolor="white">Thu 2/12/10</td>
<td width="101" bgcolor="white">59</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">61</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="80" bgcolor="white">2.75 days</td>
<td width="94" bgcolor="white">Thu 2/12/10</td>
<td width="94" bgcolor="white">Tue 7/12/10</td>
<td width="101" bgcolor="white">60</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">62</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 2/12/10</td>
<td width="94" bgcolor="white">Fri 3/12/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">63</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Fri 3/12/10</td>
<td width="94" bgcolor="white">Fri 3/12/10</td>
<td width="101" bgcolor="white">62</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">64</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 3/12/10</td>
<td width="94" bgcolor="white">Mon 6/12/10</td>
<td width="101" bgcolor="white">63</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">65</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Mon 6/12/10</td>
<td width="94" bgcolor="white">Tue 7/12/10</td>
<td width="101" bgcolor="white">64</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">66</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="80" bgcolor="white">1.25 days</td>
<td width="94" bgcolor="white">Tue 7/12/10</td>
<td width="94" bgcolor="white">Wed 8/12/10</td>
<td width="101" bgcolor="white">61</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">67</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 7/12/10</td>
<td width="94" bgcolor="white">Wed 8/12/10</td>
<td width="101" bgcolor="white">65</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">68</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Wed 8/12/10</td>
<td width="94" bgcolor="white">Wed 8/12/10</td>
<td width="101" bgcolor="white">67</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">69</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 8/12/10</td>
<td width="94" bgcolor="white">Thu 9/12/10</td>
<td width="101" bgcolor="white">66,59,61</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">70</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 9/12/10</td>
<td width="94" bgcolor="white">Thu 9/12/10</td>
<td width="101" bgcolor="white">69</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">71</td>
<td width="318" bgcolor="white">Prototype 4</td>
<td width="80" bgcolor="white">10.25 days</td>
<td width="94" bgcolor="white">Fri 10/12/10</td>
<td width="94" bgcolor="white">Fri 24/12/10</td>
<td width="101" bgcolor="white">54</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">72</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR20 through FR28</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 10/12/10</td>
<td width="94" bgcolor="white">Fri 10/12/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">73</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 13/12/10</td>
<td width="94" bgcolor="white">Mon 13/12/10</td>
<td width="101" bgcolor="white">72</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">74</td>
<td width="318" bgcolor="white">Prototype 3 Integration</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 13/12/10</td>
<td width="94" bgcolor="white">Tue 14/12/10</td>
<td width="101" bgcolor="white">73</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">75</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 14/12/10</td>
<td width="94" bgcolor="white">Wed 15/12/10</td>
<td width="101" bgcolor="white">74</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">76</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 15/12/10</td>
<td width="94" bgcolor="white">Thu 16/12/10</td>
<td width="101" bgcolor="white">75</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">77</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 16/12/10</td>
<td width="94" bgcolor="white">Thu 16/12/10</td>
<td width="101" bgcolor="white">76</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">78</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="80" bgcolor="white">2.75 days</td>
<td width="94" bgcolor="white">Thu 16/12/10</td>
<td width="94" bgcolor="white">Tue 21/12/10</td>
<td width="101" bgcolor="white">77</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">79</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 16/12/10</td>
<td width="94" bgcolor="white">Fri 17/12/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">80</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Fri 17/12/10</td>
<td width="94" bgcolor="white">Fri 17/12/10</td>
<td width="101" bgcolor="white">79</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">81</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 20/12/10</td>
<td width="94" bgcolor="white">Mon 20/12/10</td>
<td width="101" bgcolor="white">80</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">82</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Tue 21/12/10</td>
<td width="94" bgcolor="white">Tue 21/12/10</td>
<td width="101" bgcolor="white">81</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">83</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="80" bgcolor="white">1.25 days</td>
<td width="94" bgcolor="white">Tue 21/12/10</td>
<td width="94" bgcolor="white">Wed 22/12/10</td>
<td width="101" bgcolor="white">78</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">84</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 21/12/10</td>
<td width="94" bgcolor="white">Wed 22/12/10</td>
<td width="101" bgcolor="white">82</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">85</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Wed 22/12/10</td>
<td width="94" bgcolor="white">Wed 22/12/10</td>
<td width="101" bgcolor="white">84</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">86</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 22/12/10</td>
<td width="94" bgcolor="white">Thu 23/12/10</td>
<td width="101" bgcolor="white">83,76,78</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">87</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 23/12/10</td>
<td width="94" bgcolor="white">Fri 24/12/10</td>
<td width="101" bgcolor="white">86</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">88</td>
<td width="318" bgcolor="white">Prototype 5</td>
<td width="80" bgcolor="white">10.25 days</td>
<td width="94" bgcolor="white">Fri 24/12/10</td>
<td width="94" bgcolor="white">Fri 7/01/11</td>
<td width="101" bgcolor="white">71</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">89</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR29 through FR37</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 24/12/10</td>
<td width="94" bgcolor="white">Mon 27/12/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">90</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 27/12/10</td>
<td width="94" bgcolor="white">Mon 27/12/10</td>
<td width="101" bgcolor="white">89</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">91</td>
<td width="318" bgcolor="white">Prototype 4 Integration</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 27/12/10</td>
<td width="94" bgcolor="white">Tue 28/12/10</td>
<td width="101" bgcolor="white">90</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">92</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 28/12/10</td>
<td width="94" bgcolor="white">Wed 29/12/10</td>
<td width="101" bgcolor="white">91</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">93</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 29/12/10</td>
<td width="94" bgcolor="white">Thu 30/12/10</td>
<td width="101" bgcolor="white">92</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">94</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 30/12/10</td>
<td width="94" bgcolor="white">Thu 30/12/10</td>
<td width="101" bgcolor="white">93</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">95</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="80" bgcolor="white">2.75 days</td>
<td width="94" bgcolor="white">Fri 31/12/10</td>
<td width="94" bgcolor="white">Tue 4/01/11</td>
<td width="101" bgcolor="white">94</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">96</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 31/12/10</td>
<td width="94" bgcolor="white">Fri 31/12/10</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">97</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 3/01/11</td>
<td width="94" bgcolor="white">Mon 3/01/11</td>
<td width="101" bgcolor="white">96</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">98</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 3/01/11</td>
<td width="94" bgcolor="white">Tue 4/01/11</td>
<td width="101" bgcolor="white">97</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">99</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Tue 4/01/11</td>
<td width="94" bgcolor="white">Tue 4/01/11</td>
<td width="101" bgcolor="white">98</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">100</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="80" bgcolor="white">1.25 days</td>
<td width="94" bgcolor="white">Tue 4/01/11</td>
<td width="94" bgcolor="white">Wed 5/01/11</td>
<td width="101" bgcolor="white">95</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">101</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 4/01/11</td>
<td width="94" bgcolor="white">Wed 5/01/11</td>
<td width="101" bgcolor="white">99</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">102</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Wed 5/01/11</td>
<td width="94" bgcolor="white">Wed 5/01/11</td>
<td width="101" bgcolor="white">101</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">103</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 6/01/11</td>
<td width="94" bgcolor="white">Thu 6/01/11</td>
<td width="101" bgcolor="white">100,93,95</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">104</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Fri 7/01/11</td>
<td width="94" bgcolor="white">Fri 7/01/11</td>
<td width="101" bgcolor="white">103</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">105</td>
<td width="318" bgcolor="white">Prototype 6</td>
<td width="80" bgcolor="white">10.25 days</td>
<td width="94" bgcolor="white">Fri 7/01/11</td>
<td width="94" bgcolor="white">Fri 21/01/11</td>
<td width="101" bgcolor="white">88</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">106</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR38 through FR46</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 7/01/11</td>
<td width="94" bgcolor="white">Mon 10/01/11</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">107</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 10/01/11</td>
<td width="94" bgcolor="white">Mon 10/01/11</td>
<td width="101" bgcolor="white">106</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">108</td>
<td width="318" bgcolor="white">Prototype 5 Integration</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 10/01/11</td>
<td width="94" bgcolor="white">Tue 11/01/11</td>
<td width="101" bgcolor="white">107</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">109</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 11/01/11</td>
<td width="94" bgcolor="white">Wed 12/01/11</td>
<td width="101" bgcolor="white">108</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">110</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 12/01/11</td>
<td width="94" bgcolor="white">Thu 13/01/11</td>
<td width="101" bgcolor="white">109</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">111</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Thu 13/01/11</td>
<td width="94" bgcolor="white">Fri 14/01/11</td>
<td width="101" bgcolor="white">110</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">112</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="80" bgcolor="white">2.75 days</td>
<td width="94" bgcolor="white">Fri 14/01/11</td>
<td width="94" bgcolor="white">Tue 18/01/11</td>
<td width="101" bgcolor="white">111</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">113</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 14/01/11</td>
<td width="94" bgcolor="white">Mon 17/01/11</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">114</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 17/01/11</td>
<td width="94" bgcolor="white">Mon 17/01/11</td>
<td width="101" bgcolor="white">113</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">115</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 17/01/11</td>
<td width="94" bgcolor="white">Tue 18/01/11</td>
<td width="101" bgcolor="white">114</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">116</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Tue 18/01/11</td>
<td width="94" bgcolor="white">Tue 18/01/11</td>
<td width="101" bgcolor="white">115</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">117</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="80" bgcolor="white">1.25 days</td>
<td width="94" bgcolor="white">Wed 19/01/11</td>
<td width="94" bgcolor="white">Thu 20/01/11</td>
<td width="101" bgcolor="white">112</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">118</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 19/01/11</td>
<td width="94" bgcolor="white">Wed 19/01/11</td>
<td width="101" bgcolor="white">116</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">119</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Thu 20/01/11</td>
<td width="94" bgcolor="white">Thu 20/01/11</td>
<td width="101" bgcolor="white">118</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">120</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 20/01/11</td>
<td width="94" bgcolor="white">Fri 21/01/11</td>
<td width="101" bgcolor="white">117,110,112</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">121</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Fri 21/01/11</td>
<td width="94" bgcolor="white">Fri 21/01/11</td>
<td width="101" bgcolor="white">120</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">122</td>
<td width="318" bgcolor="white">Prototype 7</td>
<td width="80" bgcolor="white">10.25 days</td>
<td width="94" bgcolor="white">Fri 21/01/11</td>
<td width="94" bgcolor="white">Fri 4/02/11</td>
<td width="101" bgcolor="white">105</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">123</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR47 through FR55</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 21/01/11</td>
<td width="94" bgcolor="white">Mon 24/01/11</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">124</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 24/01/11</td>
<td width="94" bgcolor="white">Mon 24/01/11</td>
<td width="101" bgcolor="white">123</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">125</td>
<td width="318" bgcolor="white">Prototype 6 Integration</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 25/01/11</td>
<td width="94" bgcolor="white">Tue 25/01/11</td>
<td width="101" bgcolor="white">124</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">126</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 26/01/11</td>
<td width="94" bgcolor="white">Wed 26/01/11</td>
<td width="101" bgcolor="white">125</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">127</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 27/01/11</td>
<td width="94" bgcolor="white">Thu 27/01/11</td>
<td width="101" bgcolor="white">126</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">128</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Fri 28/01/11</td>
<td width="94" bgcolor="white">Fri 28/01/11</td>
<td width="101" bgcolor="white">127</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">129</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="80" bgcolor="white">2.75 days</td>
<td width="94" bgcolor="white">Fri 28/01/11</td>
<td width="94" bgcolor="white">Wed 2/02/11</td>
<td width="101" bgcolor="white">128</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">130</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 28/01/11</td>
<td width="94" bgcolor="white">Mon 31/01/11</td>
<td width="101" bgcolor="white">127</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">131</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 31/01/11</td>
<td width="94" bgcolor="white">Mon 31/01/11</td>
<td width="101" bgcolor="white">130</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">132</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 31/01/11</td>
<td width="94" bgcolor="white">Tue 1/02/11</td>
<td width="101" bgcolor="white">131</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">133</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Tue 1/02/11</td>
<td width="94" bgcolor="white">Wed 2/02/11</td>
<td width="101" bgcolor="white">132</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">134</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="80" bgcolor="white">1.25 days</td>
<td width="94" bgcolor="white">Wed 2/02/11</td>
<td width="94" bgcolor="white">Thu 3/02/11</td>
<td width="101" bgcolor="white">129</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">135</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 2/02/11</td>
<td width="94" bgcolor="white">Thu 3/02/11</td>
<td width="101" bgcolor="white">133</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">136</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Thu 3/02/11</td>
<td width="94" bgcolor="white">Thu 3/02/11</td>
<td width="101" bgcolor="white">135</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">137</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 3/02/11</td>
<td width="94" bgcolor="white">Fri 4/02/11</td>
<td width="101" bgcolor="white">134,127,129</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">138</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Fri 4/02/11</td>
<td width="94" bgcolor="white">Fri 4/02/11</td>
<td width="101" bgcolor="white">137</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">139</td>
<td width="318" bgcolor="white">Prototype 8</td>
<td width="80" bgcolor="white">10.25 days</td>
<td width="94" bgcolor="white">Mon 7/02/11</td>
<td width="94" bgcolor="white">Mon 21/02/11</td>
<td width="101" bgcolor="white">122</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">140</td>
<td width="318" bgcolor="white">Design &amp; Build Functional Requirements FR56 through FR66</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 7/02/11</td>
<td width="94" bgcolor="white">Mon 7/02/11</td>
<td width="101" bgcolor="white"></td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">141</td>
<td width="318" bgcolor="white">Initial Prototype Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Tue 8/02/11</td>
<td width="94" bgcolor="white">Tue 8/02/11</td>
<td width="101" bgcolor="white">140</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">142</td>
<td width="318" bgcolor="white">Prototype 7 Integration</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 8/02/11</td>
<td width="94" bgcolor="white">Wed 9/02/11</td>
<td width="101" bgcolor="white">141</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">143</td>
<td width="318" bgcolor="white">Prototype Integration Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 9/02/11</td>
<td width="94" bgcolor="white">Thu 10/02/11</td>
<td width="101" bgcolor="white">142</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">144</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 10/02/11</td>
<td width="94" bgcolor="white">Fri 11/02/11</td>
<td width="101" bgcolor="white">143</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">145</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Fri 11/02/11</td>
<td width="94" bgcolor="white">Fri 11/02/11</td>
<td width="101" bgcolor="white">144</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">146</td>
<td width="318" bgcolor="white">Revision 1</td>
<td width="80" bgcolor="white">2.75 days</td>
<td width="94" bgcolor="white">Fri 11/02/11</td>
<td width="94" bgcolor="white">Wed 16/02/11</td>
<td width="101" bgcolor="white">145</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">147</td>
<td width="318" bgcolor="white">Implement Revision 1 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 11/02/11</td>
<td width="94" bgcolor="white">Mon 14/02/11</td>
<td width="101" bgcolor="white">144</td>
<td width="248" bgcolor="white">Project Manager,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">148</td>
<td width="318" bgcolor="white">Revision 1 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Mon 14/02/11</td>
<td width="94" bgcolor="white">Mon 14/02/11</td>
<td width="101" bgcolor="white">147</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">149</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feed Back</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 15/02/11</td>
<td width="94" bgcolor="white">Tue 15/02/11</td>
<td width="101" bgcolor="white">148</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">150</td>
<td width="318" bgcolor="white">Change Management Process</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Wed 16/02/11</td>
<td width="94" bgcolor="white">Wed 16/02/11</td>
<td width="101" bgcolor="white">149</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">151</td>
<td width="318" bgcolor="white">Revision 2</td>
<td width="80" bgcolor="white">1.25 days</td>
<td width="94" bgcolor="white">Wed 16/02/11</td>
<td width="94" bgcolor="white">Thu 17/02/11</td>
<td width="101" bgcolor="white">146</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">152</td>
<td width="318" bgcolor="white">Implement Revision 2 Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 16/02/11</td>
<td width="94" bgcolor="white">Thu 17/02/11</td>
<td width="101" bgcolor="white">150</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">153</td>
<td width="318" bgcolor="white">Revision 2 Testing</td>
<td width="80" bgcolor="white">0.25 days</td>
<td width="94" bgcolor="white">Thu 17/02/11</td>
<td width="94" bgcolor="white">Thu 17/02/11</td>
<td width="101" bgcolor="white">152</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">154</td>
<td width="318" bgcolor="white">Create Documentation for Prototype</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 17/02/11</td>
<td width="94" bgcolor="white">Fri 18/02/11</td>
<td width="101" bgcolor="white">151,144,146</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">155</td>
<td width="318" bgcolor="white">Sign Off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Fri 18/02/11</td>
<td width="94" bgcolor="white">Mon 21/02/11</td>
<td width="101" bgcolor="white">154</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
<tr>
<td width="45" bgcolor="white">156</td>
<td width="318" bgcolor="white">Tuning &amp; Integration</td>
<td width="80" bgcolor="white">6.5 days</td>
<td width="94" bgcolor="white">Mon 21/02/11</td>
<td width="94" bgcolor="white">Tue 1/03/11</td>
<td width="101" bgcolor="white">139</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Project Manager,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">157</td>
<td width="318" bgcolor="white">Final Prototype Integration</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 21/02/11</td>
<td width="94" bgcolor="white">Tue 22/02/11</td>
<td width="101" bgcolor="white">154</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">158</td>
<td width="318" bgcolor="white">Final Prototype Integration Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Tue 22/02/11</td>
<td width="94" bgcolor="white">Wed 23/02/11</td>
<td width="101" bgcolor="white">157</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">159</td>
<td width="318" bgcolor="white">Solicit &amp; Review User Feedback</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Wed 23/02/11</td>
<td width="94" bgcolor="white">Thu 24/02/11</td>
<td width="101" bgcolor="white">158</td>
<td width="248" bgcolor="white">Project Manager,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">160</td>
<td width="318" bgcolor="white">Final Changes</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Thu 24/02/11</td>
<td width="94" bgcolor="white">Fri 25/02/11</td>
<td width="101" bgcolor="white">159</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2,Quality Engineer,Systems Analyst / Desinger</td>
</tr>
<tr>
<td width="45" bgcolor="white">161</td>
<td width="318" bgcolor="white">Change Testing</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Fri 25/02/11</td>
<td width="94" bgcolor="white">Mon 28/02/11</td>
<td width="101" bgcolor="white">160</td>
<td width="248" bgcolor="white">Quality Engineer</td>
</tr>
<tr>
<td width="45" bgcolor="white">162</td>
<td width="318" bgcolor="white">Final Documentation</td>
<td width="80" bgcolor="white">1 day</td>
<td width="94" bgcolor="white">Mon 28/02/11</td>
<td width="94" bgcolor="white">Tue 1/03/11</td>
<td width="101" bgcolor="white">161</td>
<td width="248" bgcolor="white">Programmer 1,Programmer 2</td>
</tr>
<tr>
<td width="45" bgcolor="white">163</td>
<td width="318" bgcolor="white">Sign off</td>
<td width="80" bgcolor="white">0.5 days</td>
<td width="94" bgcolor="white">Tue 1/03/11</td>
<td width="94" bgcolor="white">Tue 1/03/11</td>
<td width="101" bgcolor="white">162</td>
<td width="248" bgcolor="white">Project Manager</td>
</tr>
</tbody>
</table>
<h3>5.3.3 Gantt Chart</h3>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Scheduling-Software.png"><img class="alignnone size-large wp-image-54" title="Gantt Chart" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Scheduling-Software-1024x415.png" alt="Gantt Chart" width="640" height="259" /></a></p>
<h1>Appendix</h1>
<h2>6.1. Entity Diagram</h2>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Home.png"><img class="alignnone size-full wp-image-55" title="Entity Diagram" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Home.png" alt="Entity Diagram" width="676" height="664" /></a></p>
<h2>6.2. Function Point Assignment</h2>
<p><label for="bodyContents"></label></p>
<table border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col width="49"></col>
<col width="513"></col>
<col width="64"></col>
<col width="104"></col>
<col width="64"></col>
</colgroup>
<tbody>
<tr height="20">
<td width="49" height="20"><strong>I.D</strong></td>
<td width="513"><strong>Description</strong></td>
<td width="64"><strong>Type</strong></td>
<td width="104"><strong>Complexity</strong></td>
<td width="64"><strong>Points</strong></td>
</tr>
<tr height="20">
<td width="49" height="20">FR1</td>
<td width="513">The   system will have a master form containing tabs for each job elements</td>
<td width="64">EQ</td>
<td>High</td>
<td align="right">6</td>
</tr>
<tr height="40">
<td width="49" height="40">FR2</td>
<td width="513">The   system will have a tab form for job element:   Curtains/Sheers/Tie-backs/Cushions</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr height="40">
<td width="49" height="40">FR3</td>
<td width="513">The    system will have a ‘reminder date to order/date to write worksheets’  inside   tab job element: Curtains/Sheers/Tie-backs/Cushions</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="60">
<td width="49" height="60">FR4</td>
<td width="513">The    system will have a popup ‘reminder date to order/date to write  worksheets’ on   tab job element: Curtains/Sheers/Tie-backs/Cushions  inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR5</td>
<td width="513">The    system will have a ‘reminder date ordered/date worksheet given to  maker’   inside tab job element: Curtains/Sheers/Tie-backs/Cushions</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR6</td>
<td width="513">The   system will have ‘follow up date if not arrived/completed by’ inside tab job   element: Curtains/Sheers/Tie-backs/Cushions</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR7</td>
<td width="513">The    system will have popup ‘follow up date if not arrived/completed by’  on tab   job element: Curtains/Sheers/Tie-backs/Cushions inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR8</td>
<td width="513">The   system will have ‘arrival date/completion date’ inside tab job element:   Curtains/Sheers/Tie-backs/Cushions</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR9</td>
<td width="513">The   system will have ‘finalisation/outstanding items’ inside tab job element:   Curtains/Sheers/Tie-backs/Cushions</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR10</td>
<td width="513">The    system will have ‘popup finalisation/outstanding items’ on tab job  element:   Curtains/Sheers/Tie-backs/Cushions inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="20">
<td width="49" height="20">FR11</td>
<td width="513">The   system will have a form tab for job element: Tracks/Wooden-pelmets</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr height="40">
<td width="49" height="40">FR12</td>
<td width="513">The   system will have ‘reminder date to order/date to write worksheets’ inside tab   job element: Tracks/Wooden-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR13</td>
<td width="513">The   system will have popup ‘reminder date to order/date to write worksheets’ on   tab job element: Tracks/Wooden-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR14</td>
<td width="513">The   system will have ‘reminder date ordered/date worksheet given to maker’ inside   tab job element: Tracks/Wooden-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR15</td>
<td width="513">The   system will have ‘follow up date if not arrived/completed by’ inside tab job   element: Tracks/Wooden-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR16</td>
<td width="513">The   system will have ‘follow up date if not arrived/completed by’ on tab job   element: Tracks/Wooden-pelmets inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR17</td>
<td width="513">The   system will have ‘arrival date/completion date’ inside tab job element:   Tracks/Wooden-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR18</td>
<td width="513">The   system will have ‘finalisation/outstanding items’ inside tab job element:   Tracks/Wooden-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR19</td>
<td width="513">The   system will have ‘popup finalisation/outstanding items’ on tab job element:   Tracks/Wooden-pelmets inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="20">
<td width="49" height="20">FR20</td>
<td width="513">The   system will have a form tab for job element: Blinds/Shutters</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr height="40">
<td width="49" height="40">FR21</td>
<td width="513">The   system will have ‘reminder date to order/date to write worksheets’ inside tab   job element: Blinds/Shutters</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR22</td>
<td width="513">The    system will have popup ‘reminder date to order/date to write  worksheets’ on   tab job element: Blinds/Shutters inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR23</td>
<td width="513">The   system will have ‘reminder date ordered/date worksheet given to maker’ inside   tab job element: Blinds/Shutters</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR24</td>
<td width="513">The   system will have ‘follow up date if not arrived/completed by’ inside tab job   element: Blinds/Shutters</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR25</td>
<td width="513">The   system will have popup ‘follow up date if not arrived/completed by’ on tab   job element: Blinds/Shutters inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR26</td>
<td width="513">The   system will have ‘arrival date/completion date’ inside tab job element:   Blinds/Shutters</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR27</td>
<td width="513">The   system will have ‘finalisation/outstanding items’ inside tab job element:   Blinds/Shutters</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR28</td>
<td width="513">The   system will have popup ‘finalisation/outstanding items’ on tab job element:   Blinds/Shutters inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="20">
<td width="49" height="20">FR29</td>
<td width="513">The   system will have a form tab for job element: Padded-pelmets</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr height="40">
<td width="49" height="40">FR30</td>
<td width="513">The   system will have ‘reminder date to order/date to write worksheets’ inside tab   job element: Padded-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR31</td>
<td width="513">The   system will have popup ‘reminder date to order/date to write worksheets’ on   tab job element: Padded-pelmets inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR32</td>
<td width="513">The   system will have ‘reminder date ordered/date worksheet given to maker’ inside   tab job element: Padded-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR33</td>
<td width="513">The   system will have ‘follow up date if not arrived/completed by’ inside tab job   element: Padded-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR34</td>
<td width="513">The   system will have popup ‘follow up date if not arrived/completed by’ on tab   job element: Padded-pelmets inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR35</td>
<td width="513">The   system will have ‘arrival date/completion date’ inside tab job element:   Padded-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR36</td>
<td width="513">The   system will have ‘finalisation/outstanding items’ inside tab job element:   Padded-pelmets</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR37</td>
<td width="513">The   system will have popup ‘finalisation/outstanding items’ on tab job element:   Padded-pelmets inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR38</td>
<td width="513">The   system will have a form tab for job element: Installation/Customer   notification – ready to collect</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr height="40">
<td width="49" height="40">FR39</td>
<td width="513">The    system will have ‘reminder date to order/date to write worksheets’  inside tab   job element: Installation/Customer notification – ready to  collect</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="60">
<td width="49" height="60">FR40</td>
<td width="513">The    system will have popup ‘reminder date to order/date to write  worksheets’ on   tab job element: Installation/Customer notification –  ready to collect inside   diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR41</td>
<td width="513">The    system will have ‘reminder date ordered/date worksheet given to  maker’ inside   tab job element: Installation/Customer notification –  ready to collect</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR42</td>
<td width="513">The    system will have ‘follow up date if not arrived/completed by’ inside  tab job   element: Installation/Customer notification – ready to collect</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR43</td>
<td width="513">The    system will have popup ‘follow up date if not arrived/completed by’  on tab   job element: Installation/Customer notification – ready to  collect inside   diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR44</td>
<td width="513">The    system will have ‘arrival date/completion date’ inside tab job  element:   Installation/Customer notification – ready to collect</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR45</td>
<td width="513">The    system will have ‘finalisation/outstanding items’ inside tab job  element:   Installation/Customer notification – ready to collect</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR46</td>
<td width="513">The    system will have popup ‘finalisation/outstanding items’ on tab job  element:   Installation/Customer notification – ready to collect inside  diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR47</td>
<td width="513">The   system will have a form tab for job element: Fabric/Trims &amp; Accessories   being ordered</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr height="40">
<td width="49" height="40">FR48</td>
<td width="513">The    system will have ‘reminder date to order/date to write worksheets’  inside tab   job element: Fabric/Trims &amp; Accessories being ordered</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR49</td>
<td width="513">The    system will have popup ‘reminder date to order/date to write  worksheets’ on   tab job element: Fabric/Trims &amp; Accessories being  ordered inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR50</td>
<td width="513">The    system will have ‘reminder date ordered/date worksheet given to  maker’ inside   tab job element: Fabric/Trims &amp; Accessories being  ordered</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR51</td>
<td width="513">The    system will have ‘follow up date if not arrived/completed by’ inside  tab job   element: Fabric/Trims &amp; Accessories being ordered</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR52</td>
<td width="513">The    system will have popup ‘follow up date if not arrived/completed by’  on tab   job element: Fabric/Trims &amp; Accessories being ordered</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR53</td>
<td width="513">The   system will have ‘arrival date/completion date’ inside tab job element:   Fabric/Trims &amp; Accessories being ordered</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR54</td>
<td width="513">The   system will have ‘finalisation/outstanding items’ inside tab job element:   Fabric/Trims &amp; Accessories being ordered</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR55</td>
<td width="513">The    system will have popup ‘finalisation/outstanding items’ on tab job  element:   Fabric/Trims &amp; Accessories being ordered inside diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR56</td>
<td width="513">The    system will have one tab on the master form for all recurring tasks  such as   BAS, cleaning the windows, cleaning showroom, check various  stock levels, ETC</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr height="20">
<td width="49" height="20">FR57</td>
<td width="513">The   system will have ‘date to start task’ for each task in the recurring task   form</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR58</td>
<td width="513">The   system will have popup ‘date to start task’ from the recurring task form into   the diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR59</td>
<td width="513">The   system will have ‘title of person who should do the task’ for all tasks   inside the recurring task form</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR60</td>
<td width="513">The   system will have ‘name of person in current position to do task’ inside the   recurring task form</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="20">
<td width="49" height="20">FR61</td>
<td width="513">The   system will have ‘deadline to finish task’ inside the recurring task form</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="40">
<td width="49" height="40">FR62</td>
<td width="513">The   system will have popup ‘deadline to finish task’ from recurring task form   into diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="20">
<td width="49" height="20">FR63</td>
<td width="513">The   system will have ‘user input notes section’ inside recurring task form</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="20">
<td width="49" height="20">FR64</td>
<td width="513">The   system will have popup ‘alert to inform customers of delays’ into diary</td>
<td>EQ</td>
<td>Low</td>
<td align="right">3</td>
</tr>
<tr height="20">
<td width="49" height="20">FR65</td>
<td width="513">The   system will allow supervisors to sign off important tasks</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr height="20">
<td width="49" height="20">FR66</td>
<td width="513">The   system will not allow jobs to be deleted without supervisor sign off</td>
<td>ILF</td>
<td>Low</td>
<td align="right">7</td>
</tr>
<tr>
<td>Total</td>
<td></td>
<td></td>
<td></td>
<td>237</td>
</tr>
</tbody>
</table>
<p><label for="bodyContents"></label></p>
<h2>6.3. MS Project 2010 File</h2>
<p>Gantt &amp; Network Diagrams are included as part of this file.</p>
<p>Please note this file uses the MS Project 2010 File Format.</p>
<p><a title="Scheduling-Software.mpp" href="http://www.jeremycade.com/wp-content/uploads/2011/05/Scheduling-Software.mpp">Scheduling Software.mpp</a></p>
<h2>6.4 Risk Assesment</h2>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="45"><strong>Risk No</strong></td>
<td width="201"><strong>Risk (Cause and    Consequence)</strong></td>
<td width="76"><strong>Pre-Strategy Risk    Exposure </strong></td>
<td width="217"><strong>Strategy    Description</strong></td>
<td width="76"><strong>Residual Risk    Exposure </strong></td>
</tr>
</thead>
<tbody>
<tr>
<td width="45" valign="top">R01</td>
<td width="201" valign="top">Risk: Excelsior staff do not use system.</p>
<p>Cause: Lack of communication and business   buy-in.</p>
<p>Consequence: System perceived as a failure to   business and benefits not realised.</p>
<p>Likelihood:    Medium</td>
<td width="76" valign="top">High</td>
<td width="217" valign="top">
<ul>
<li>Provide clear        documentation on how processes will work.</li>
<li>Involve teams in        iterative testing and feedback cycle.         Follow-up with individual teams to ensure understanding.</li>
<li>Post implementation        follow-up to ensure processes working as expected.</li>
</ul>
</td>
<td width="76" valign="top">Medium</td>
</tr>
<tr>
<td width="45" valign="top">R02</td>
<td width="201" valign="top">Risk: Lack of executive level support.</p>
<p>Cause: Competing priorities or lack of   understanding.</p>
<p>Consequence: Project does not progress, or is   delayed excessively.</p>
<p>Likelihood: Low</td>
<td width="76" valign="top">Medium</td>
<td width="217" valign="top">
<ul>
<li>Provide regular updates        on project status</li>
<li>Provide one on one        briefings when required to ensure understanding</li>
<li>Ensure project board        members understand and own their Board responsibilities.</li>
</ul>
</td>
<td width="76" valign="top">Low</td>
</tr>
<tr>
<td width="45" valign="top">R03</td>
<td width="201" valign="top">Risk: Database system is poorly supported by Superlative   post implementation.</p>
<p>Cause: Unclear handover from project team to   operational team.</p>
<p>Consequence: Database System is operationally   unstable.</p>
<p>Likelihood: Medium</td>
<td width="76" valign="top">Medium</td>
<td width="217" valign="top">
<ul>
<li>Develop  support and        handover document which  outlines technical and  operational procedures        for full proof  management of Database  system.</li>
<li>Have operational team        sign off on handover of this system and expected standards expected of        Database System.</li>
</ul>
</td>
<td width="76" valign="top">Low</td>
</tr>
<tr>
<td width="45" valign="top">R04</td>
<td width="201" valign="top">Risk: Scope Creep in project</p>
<p>Cause: Increased customer requirements added   after planning stage of project.</p>
<p>Consequence: Project is delayed.</p>
<p>Likelihood: Medium</td>
<td width="76" valign="top">Low</td>
<td width="217" valign="top">
<ul>
<li>Develop detailed        project direction and apply methods from the Suplative Project        Management Framework.</li>
<li>Monitor progress at        each stage to keep track of timelines.</li>
</ul>
</td>
<td width="76" valign="top">Low</td>
</tr>
<tr>
<td width="45" valign="top">R05</td>
<td width="201" valign="top">Risk: Lack of example documentation and   project team experience with full ICT Project Lifecycle.</p>
<p>Cause: ICT Project Lifecycle has been   reviewed and no example/case study documentation exists.</p>
<p>Consequence: Project is delayed.</p>
<p>Likelihood: Low</td>
<td width="76" valign="top">Low</td>
<td width="217" valign="top">
<ul>
<li>Request assistance        from Project Management Office when necessary.</li>
</ul>
</td>
<td width="76" valign="top">Low</td>
</tr>
<tr>
<td width="45" valign="top">R06</td>
<td width="201" valign="top">Risk: Failure to meet deadline of tasks</p>
<p>Cause: Tasks made unclear by Project Manager</p>
<p>Consequence: Project is delayed</p>
<p>Likelihood: Medium</td>
<td width="76" valign="top">Medium</td>
<td width="217" valign="top">
<ul>
<li>Develop detailed WBS</li>
<li>Review weekly reports</li>
<li>Hold weekly meetings</li>
</ul>
</td>
<td width="76" valign="top">Low</td>
</tr>
<tr>
<td width="45" valign="top">R07</td>
<td width="201" valign="top">Risk: Changes to resource level</p>
<p>Cause: Staff find another job, staff have   other priorities</p>
<p>Consequence: Delay project</p>
<p>Likelihood: Medium</p>
<p>&nbsp;</td>
<td width="76" valign="top">Low</td>
<td width="217" valign="top">
<ul>
<li>Understand motivational        factors of team members</li>
<li>Provide constant        feedback and communiction</li>
</ul>
</td>
<td width="76" valign="top">Low</td>
</tr>
<tr>
<td width="45" valign="top">R08</td>
<td width="201" valign="top">Risk: Change in client requirements</p>
<p>Cause: clients changes their mind</p>
<p>Consequence: Scope change</p>
<p>Likelihood: High</td>
<td width="76" valign="top">Medium</td>
<td width="217" valign="top">
<ul>
<li>Have clear scope and        scope statement sign off</li>
<li>Report on progress        and communicate weekly with client</li>
</ul>
</td>
<td width="76" valign="top">Medium</td>
</tr>
<tr>
<td width="45" valign="top">R09</td>
<td width="201" valign="top">Risk: Hardware compatibility issues</p>
<p>Cause: any new hardware want communicate with   existing infrastructure</p>
<p>Consequence: Budget cost blow out and delay   in project</p>
<p>Likelihood: Low</td>
<td width="76" valign="top">Low</td>
<td width="217" valign="top">
<ul>
<li>New hardware is out        of scope for this project</li>
</ul>
</td>
<td width="76" valign="top">Low</td>
</tr>
<tr>
<td width="45" valign="top">R10</td>
<td width="201" valign="top">Risk: Software compatibility issues</p>
<p>Cause: Proposed software want communicate   with existing software</p>
<p>Consequence: Blow out in budget and delay in   project</p>
<p>Likelihood: Medium</td>
<td width="76" valign="top">Medium</td>
<td width="217" valign="top">
<ul>
<li>Ensure that software        is compatible with existing systems</li>
<li>Conduct testing</li>
</ul>
</td>
<td width="76" valign="top">Medium</td>
</tr>
<tr>
<td width="45" valign="top">R11</td>
<td width="201" valign="top">Risk: Budget problems</p>
<p>Cause: Client can not longer fund project</p>
<p>Consequence: Project stop</p>
<p>Likelihood: Medium</td>
<td width="76" valign="top">High</td>
<td width="217" valign="top">
<ul>
<li>Ensure down payment        and agreement has been reached</li>
</ul>
</td>
<td width="76" valign="top">Medium</td>
</tr>
<tr>
<td width="45" valign="top">R12</td>
<td width="201" valign="top">Risk: Poor communication</p>
<p>Cause: Project team and/or client are not   communicating</p>
<p>Consequence: Requirements not understood,   Errors in project phases, delay in project, misunderstood scope, budget blow   out</p>
<p>Likelihood: High</td>
<td width="76" valign="top">High</td>
<td width="217" valign="top">
<ul>
<li>Hold regular meetings</li>
<li>Prepare and submit        reports regularly</li>
<li>Open communication        channels</li>
</ul>
</td>
<td width="76" valign="top">Medium</td>
</tr>
<tr>
<td width="45" valign="top">R13</td>
<td width="201" valign="top">Risk: Conflict among team members</p>
<p>Cause: Different personalities clashing<br />
Consequence: Delay in project and integrity of team suffers</p>
<p>Likelihood: Medium</td>
<td width="76" valign="top">Medium</td>
<td width="217" valign="top">
<ul>
<li>Maintain a certain        culture that members can adhere to</li>
<li>Put in place a        conflict resolution process</li>
</ul>
</td>
<td width="76" valign="top">Medium</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2011/05/project-plan-project-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Knowledge Areas for IT Project Management</title>
		<link>http://www.jeremycade.com/2011/05/knowledge-areas-for-it-project-management/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=knowledge-areas-for-it-project-management</link>
		<comments>http://www.jeremycade.com/2011/05/knowledge-areas-for-it-project-management/#comments</comments>
		<pubDate>Tue, 31 May 2011 10:53:31 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[University Papers]]></category>
		<category><![CDATA[2001ICT]]></category>
		<category><![CDATA[Griffith University]]></category>
		<category><![CDATA[Project Management]]></category>
		<category><![CDATA[Tech Republic]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=46</guid>
		<description><![CDATA[University: Griffith University, Brisbane, Australia Degree: Bachelor of Information Technology Accelerated Date: August 23, 2010 Class/Course: 2001ICT Project Management Paper Grade: 15.33/20 Table of contents Learn from other’s mistakes. Do your research first. Have a plan. Follow standards and use &#8230; <a href="http://www.jeremycade.com/2011/05/knowledge-areas-for-it-project-management/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>University</strong>: Griffith University, Brisbane, Australia<br />
<strong>Degree</strong>: Bachelor of Information Technology Accelerated<br />
<strong>Date</strong>: August 23, 2010<br />
<strong>Class/Course</strong>: 2001ICT Project Management<br />
<strong>Paper Grade</strong>: 15.33/20</p>
<h2>Table of contents</h2>
<p style="padding-left: 30px;">Learn from other’s mistakes.<br />
Do your research first.<br />
Have a plan.<br />
Follow standards and use templates.<br />
Communicate and coordinate with others.<br />
Allow enough time.<br />
Reuse proven code.<br />
Use Checklists.<br />
Test, test, test.. and carefully review your work.<br />
Test again with a third party.</p>
<p>In his article, “10 ways to avoid mistakes during project development”, Alan Norton describes 10 items or methods that can be used to avoid critical mistakes during the project planning and management processes (Norton, 2010). Each of these 10 items or methods can be addressed through the application of the 42 project management activities, grouped within the nine Knowledge Areas, as described in the Project Management Body of Knowledge, otherwise known as the ”PMBOK”.</p>
<h2>Learn from other’s mistakes.</h2>
<p>Mistakes are often the result of poor project planning and/or process execution, something which can easily be prevented during project the planning stages (Project Scope Management and Project Risk Management) and if need be remedied during both the execution stages and monitoring stages (Project Quality Management) of a project.</p>
<p>During the planning stages a clear set of goals or defined requirements greatly aids in the Project Managers ability to properly assess the risks associated with the project. The Collect Requirements and Define Scope processes associated with the Project Scope knowledge area are fundamental to this action. Having a clearly defined set of goals allows for the Project Manager to perform in depth Qualitative and Quantitative Risk Analysis, along with the development of a Risk Response plan, all of which are associated with the Project Risk Management knowledge area.</p>
<p>In the event of an issue or mistake, the Quality Assurance and Quality Control Procedures associated with the Project Quality Management knowledge area, could be used to rectify the issue, and to make sure the project meets the required project goals.</p>
<h2>Do your research first.</h2>
<p>As Norton states, “there is little excuse for mistakes made because you didn’t do the proper research in advance” (Norton, 2010).  Proper research should be performed during the planning phrase of a project. As such there are a number of processes available to a project manager to make sure that he or she has the correct information at his or her disposal, specifically, collection of project requirements, definition of project scope and the creation of a Work Breakdown Structure or WBS. All of which are part of the Scope Management knowledge area.</p>
<p>The Work Breakdown Structure is perhaps the most important deliverable at this stage, as it not only defines the scope of the project, but it also gives the project manager an overview of all required work within a project. This in turn allows for the proper execution of each unit of work required for successful completion of the project.</p>
<h2>Have a plan.</h2>
<p>This is perhaps, the single most important item on Norton’s list, and is best served by developing a project management plan, associated with the Project Integration Management knowledge area.</p>
<p>A Project Management Plan is a deliverable item, used to coordinate all planning activities and execution of the project.  Development of a Project Plan requires knowledge of all aspects of a given project. As such the project manager should consult with members of the project team as well as the applicable stakeholders. The Project Plan, while unique should include information relating to project objectives or goals, project organisation, timeline and of course budget.</p>
<h2>Follow standards and use templates.</h2>
<p>The use of templates offers a number of benefits, not only cost and time savings, but there are also quality benefits. Templates and other forms of standard items are often purchased, or acquired from an outside source. Be that a different department or team within an organisation or an external organisation altogether. In this case, a purchasing or acquisition decision would need to be made. This procedure is known as Planning Procurements, and falls under the Project Procurement Knowledge area.</p>
<p>In order for effective procurement, the project manager should develop a Procurement Management Plan. This plan should detail how the procurement process will be managed and maintained for the duration of the project.</p>
<h2>Communicate and coordinate with others.</h2>
<p>Communication is quite possibly the most important part of every project (Schwalbe, 2010). Regular communication between team members along with stakeholders is a crucial component of success. As such there are a number of processes dedicated to the effective management of communication, all of which are associated with the Project Communications Management knowledge area. As such is it important that each of the processes association with this knowledge area are completed in full and to the best ability of the project manager and associated team members.</p>
<p>As such an effective Communications Management Plan document, produced from an efficient use of the Plan Communications process helps to mitigate any potential issues. Another factor that may come into play is the choice of communication medium. For instance email may be fine for internal team communications, but hard copy (printed documents) may be better for stakeholder progress reports.</p>
<h2>Allow enough time.</h2>
<p>It is no secret that IT Projects have historically run over schedule and over budget, making Project Time Management an extremely important knowledge area. In order to allow enough time for a project to be completed, an effective Project Schedule must be developed.</p>
<p>However a Project Schedule cannot be developed without defining the actives that need to be complete along with estimating how long each of those activates will take to complete.  Both of which rely on effective communication between the project manager, stakeholders and team members, along with an established WBS. The WBS acts as a de facto activity list, which is in turn broken up into more defined activities.  Once the activities list has been defined it can be sequenced to find interrelated or dependent activities, in order to help prioritise the activity work list, and estimate the required resources for each activity.</p>
<p>Once completed, consultations with the team members responsible for a particular activity should be conducted in order to properly estimate the required duration of each activity.</p>
<h2>Reuse proven code.</h2>
<p>Reusing proven technologies is great way to save time and to maintain quality of a project. In order to make use of existing technologies it is important to know if there are technologies that are applicable to your project. As such the Project Scope Management and Project Procurement knowledge areas are fundamental to the assessment of these technologies.</p>
<p>For example without knowing the project requirements it would be impossible to assess if a particular technology is applicable to your project. Or, how do you assess a technology to see if it was applicable without a procurement planning detailing the selection criteria for external acquisitions.</p>
<h2>Use Checklists.</h2>
<p>Checklists are most commonly associated with the Project Quality Management knowledge area, as they are commonly used during the Quality Assurance and Quality Control processes of a project. Checklists offer a simple way to establish whether or not a project has met the criteria or goals set out in the Project Plan. They can also be used to provide a simple framework for Stakeholders and team members to sign off on units.</p>
<h2>Test, test, test.. and carefully review your work.</h2>
<p>Quality Assurance is quickly becoming one of the most talked about aspects of IT Project Management, as again, it is no secret that IT Projects are far from being error free. That mere fact alone makes the Project Quality Management knowledge area of great importance to modern IT Projects. This is especially true of the Quality Assurance process.</p>
<p>The Quality Assurance process enables project managers to quickly gauge the health of an IT projects through the use of benchmarking and quality audits. Benchmarking allows for comparative assessments of current and previous projects, along with providing immediate feedback, allowing for adjustments to be made to the project in order to deliver the necessary level of quality.</p>
<p>Quality audits allow for specific metrics to be applied to a particular activity in order to assess its ability to meet the goals of the overall project.</p>
<h2>Test again with a third party.</h2>
<p>Again, as pointed out previously IT Project Quality is of great importance due, as such expert user or third party testing is of great importance. Third party testing can be facilitated through the use of the Project Human Resource Management and Project Management knowledge areas.</p>
<p>The Acquire Project Team process from the Project Human Resource knowledge area facilitates the acquisition of third party users or testers, while the Project Quality Control process from the Project Quality Management knowledge area provides the framework needed for those users/testers to perform quality control on the project.</p>
<h2>Summary</h2>
<p>Of the addressed knowledge areas there are four that standout as having the most impact when considering Alan Norton’s “10 ways to avoid mistakes during project development”.</p>
<p>They are, in order:</p>
<ol>
<li>Project Scope Management</li>
<li>Project Communications Management</li>
<li>Project Quality Management</li>
<li>Project Procurement Management</li>
</ol>
<p>However, this in no way diminishes the impact of the other knowledge areas as a whole. Each knowledge area addressed plays a critical role during project management process.</p>
<p>Special attention should be paid to the following knowledge areas during each phase of the project as they appear to be reoccurring issues when dealing with IT Projects:</p>
<ul>
<li>Project Communications Management</li>
<li>Project Quality Management</li>
<li>Project Time Management</li>
</ul>
<h2>References</h2>
<p>Norton, A. (2010). <em>10 ways to avoid mistakes during project development.<br />
</em>Retrieved from <a href="http://blogs.techrepublic.com.com/10things/?p=1360">http://blogs.techrepublic.com.com/10things/?p=1360</a></p>
<p>Schwalbe, K (2010). <em>Information Technology Project Management, Sixth edition</em>. Boston, MA: Course Technology</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2011/05/knowledge-areas-for-it-project-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improving offline customers shopping experience through web-based Information Systems.</title>
		<link>http://www.jeremycade.com/2011/05/improving-offline-customers-shopping-experience-through-web-based-information-systems/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=improving-offline-customers-shopping-experience-through-web-based-information-systems</link>
		<comments>http://www.jeremycade.com/2011/05/improving-offline-customers-shopping-experience-through-web-based-information-systems/#comments</comments>
		<pubDate>Tue, 31 May 2011 10:45:13 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[University Papers]]></category>
		<category><![CDATA[1410ICT]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Geolocation]]></category>
		<category><![CDATA[Griffith University]]></category>
		<category><![CDATA[Information Systems]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Woolworths]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=28</guid>
		<description><![CDATA[University: Griffith University, Brisbane, Australia Degree: Bachelor of Information Technology Accelerated Date: May 12, 2010 Class/Course: 1410ICT Introduction to Information Systems Paper Grade: Unavailable Author(s): Jeremy Cade, Robert Forrester Abstract: Woolworths Limited stands to gain a substantial technical advantage over &#8230; <a href="http://www.jeremycade.com/2011/05/improving-offline-customers-shopping-experience-through-web-based-information-systems/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>University</strong>: Griffith University, Brisbane, Australia<br />
<strong>Degree</strong>: Bachelor of Information Technology Accelerated<br />
<strong>Date</strong>: May 12, 2010<br />
<strong>Class/Course</strong>: 1410ICT Introduction to Information Systems<br />
<strong>Paper Grade</strong>: Unavailable<strong><br />
Author(s): </strong>Jeremy Cade, Robert Forrester<br />
<strong>Abstract:</strong> Woolworths Limited stands to gain a substantial     technical  advantage over its competitors through the strategic use of     public  facing information systems.</p>
<h2>Table of Contents</h2>
<p style="padding-left: 30px;">1. Summary<br />
2. History and  Operational Context<br />
3. Typical Offline (In  store) Customer Behaviour<br />
3.1 Survey Results<br />
4. Possible Areas of  Improvement<br />
4.1 Awareness of the  Current Weekly Specials<br />
4.2 Geolocation<br />
4.3 Email Delivery of  weekly specials<br />
4.4 Awareness of store  layout and product placement locations<br />
5. Conclusion<br />
6. Appendix<br />
6.1 Website Usability  Sequences<br />
7. Reference List</p>
<h2>1. Summary</h2>
<p>Woolworths Limited stands to gain a substantial technical advantage over its competitors through the strategic use of public facing information systems. Implementation of location aware online services for both Personal computer and smart phone have the potential to drastically reduce the amount of time that Woolworths customers spend looking for information and increase the convenience factor of shopping at Woolworths stores.</p>
<h2>2. History and Operational Context</h2>
<p>Woolworths Limited, founded in Sydney, Australia in September of 1924 is the largest retailing group and second largest private employer in Australia. Woolworths started life as “Wallworths Bazzar Limited”, a take on the F.W. Woolworths (now Foot Locker Inc) name. Woolworths focuses on the Australian and New Zealand retail sectors. Woolworths Limited operates a under a number of brands, including: Woolworths, Safeway, Thomas Dux, ALH Group, BWS, Dan Murphy’s, Langton, Big W, Dick Smith, Tandy, Countdown, Foodtown, Fresh Choice and SuperValue.</p>
<p>Woolworths has a strong market share, currently commanding 30% of the Australian food, liquor and grocery market (<em>InvestSMART: Woolworths Limited (WOW) </em>2010), with reported 2009 financial year sales in the range of $49.6 billion dollars (Woolworths Limited, 2009, p.3).</p>
<p>Woolworths has a high level of commitment to their staff, the community, and the environment but most importantly Woolworths values their customers. Woolworths stated strategy is to provide customers with greater convenience, quality, lower prices and better value, range, freshness and service, (Woolworths Limited 2009, p.25).</p>
<p>Woolworths offers a range of incentives to help retain customers, including the weekly “Fresh food sales” and the Everyday Rewards Program, which allows shoppers to earn Qantas frequent flyer points &amp; a 4c per litre discount on fuel purchases made via co-branded petrol stations.  Woolworths see the Everyday Rewards Program as an integral part of their sales process (Woolworths Limited 2009, p.8).</p>
<h2>3. Typical Offline (In store) Customer Behaviour</h2>
<p>We surveyed a range of Woolworth’s customers, asking 7 basic questions:</p>
<ol>
<li>Do you or a member of your Family/Household shop at Woolworths?</li>
<li>How many times per week, on average, do you visit a grocery store?</li>
<li>Before visiting a grocery store do you check the available specials for that week? I.e. Woolworths Weekly Specials or Coles Red Spot Specials?</li>
<li>Have you ever used the Woolworths Website to check the Weekly Specials?</li>
<li>Did you know that Woolworths has an online shopping facility?</li>
<li>How do you feel about the possibility of receiving weekly grocery specials via email?</li>
<li>Did you know that Woolworths has a smart phone (iPhone, Android etc.) compatible website?</li>
</ol>
<h3>3.1 Survey Results</h3>
<ul>
<li>Of the total number of customers surveyed 80% said that they or a member of their family / household shopped at Woolworths. Of those 80%, 60% visits a grocery store, one to two times per week, 35% visited less than once per week, and 5% visited three to four times per week.</li>
<li>All respondents stated that they did not check the available specials for the week before visiting a grocery store. <em>We have marked this as a possible area for improvement</em>.</li>
<li>All respondents stated that they have not used the Woolworths Website to check for Weekly specials. <em>We have marked this as a possible area for improvement</em>.</li>
<li>Of the total number of customers surveyed, 80% stated that they were aware of Woolworths’ online shopping facilities.  20% responded that they were not aware of the online shopping facilities.</li>
<li>Of the total number of customers surveyed, 16.7% said they were happy to receive emails from Woolworths in relation to its weekly specials, 66.7% said they were okay with the idea and 16.7% stated that they did not want to receive email from Woolworths. <em>We have marked this as a possible area for improvement.</em></li>
<li>Of the total number of customers surveyed, 90% stated that they did not know Woolworths had a smart phone compatible website. <em>We have marked this as a possible area for improvement.</em></li>
</ul>
<p>Observations were also made in regards to purchasing and general movement of customers whilst in store:</p>
<ul>
<li>It was noticed that most customers were purchasing a small number of goods and using the express checkout or self-service check out options.</li>
<li>Customers were often asking employees for directions or locations of specific items and goods within the store. <em>We have marked this as a possible area for improvement.</em></li>
<li>Customers regularly made purchasing decisions based on the price per unit indicators. i.e.; Toilet Paper pricing has the unit price along with a price per 100 sheets. This made for easy price comparison between competing brands.</li>
<li>Customer service provided by staff was generally provided in a timely manner and of a high standard.</li>
</ul>
<p>Informal discussions were also held with the general public in order to gauge the general knowledge of Woolworths Mobile/Smart phone internet offerings. However no quantitative data was recorded from those discussions.</p>
<h2>4. Possible Areas of Improvement</h2>
<p>As a result of our survey and in-store observations we have identified two key areas that we feel may be improved through the appropriate use of available Information Technologies, and reflect Woolworths strategic goals.</p>
<p>These are:</p>
<ol>
<li>Awareness of the current weekly specials.</li>
<li>Awareness of store layout and product placement locations.</li>
</ol>
<h3>4.1 Awareness of the Current Weekly Specials</h3>
<p>One of Woolworths’ stated strategic goals is to provide its customers with better value; one way Woolworths does this is to provide weekly specials on various items to its customers, these specials vary from location to location as supply and demand dictates.</p>
<p>Currently Woolworths’ weekly specials are delivered in 2 formats:</p>
<ul>
<li>Physical print brochures, delivered to residential address in the areas surrounding store locations.</li>
<li>Online format:
<ul>
<li>Personal computer (PC) compatible version available online via <a href="http://www.woolworths.com.au">http://www.woolworths.com.au</a></li>
<li>Smart phone  compatible version available online via <a href="http://i.woolworths.com.au">http://i.woolworths.com.au</a></li>
</ul>
</li>
</ul>
<p>However as our survey results have demonstrated, Woolworths’ customers are not taking advantage of the weekly special information provided in these formats. We believe this is due to the significant barriers presented when trying to find information in relation to the customer’s physical location, along with the lack of electronic mail delivery of the weekly specials to interested customers.</p>
<h3>4.2 Geolocation</h3>
<p>When we consider the smart phone compatible version of the Woolworths website, it requires up to 5 actions on the users behalf before they are able to view the weekly specials relevant to their location (Sequence 1). The PC compatible version requires a similar number of steps, before redirecting to a third party website.</p>
<p>The number of steps required before being able to view the weekly specials could be drastically reduced by making both the smart phone and PC versions of the Woolworths’s website location aware. This can be done via the Geographic Location Application Programming Interface (geolocation API) available as part of the HTML5 standard (W3C 2010). The geolocation API is a client side technology which allows users to make a decision to share their current location with Woolworths’ website server (Figures 1 &amp; 2).</p>
<p><div id="attachment_31" class="wp-caption alignnone" style="width: 335px"><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Geoloc-iPhone.png"><img class="size-full wp-image-31  " title="Figure 1 - Geolocation API behaviour on an iPhone" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Geoloc-iPhone.png" alt="Figure 1 - Geolocation API behaviour on an iPhone" width="325" height="487" /></a><p class="wp-caption-text">Figure 1 - Geolocation API behaviour on an iPhone</p></div></p>
<p><div id="attachment_32" class="wp-caption alignnone" style="width: 335px"><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Geoloc-iPhone2.png"><img class="size-full wp-image-32 " title="Figure 2 - Geolocation API behaviour on an iPhone" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Geoloc-iPhone2.png" alt="Figure 2 - Geolocation API behaviour on an iPhone" width="325" height="487" /></a><p class="wp-caption-text">Figure 2 - Geolocation API behaviour on an iPhone</p></div></p>
<p>The geolocation API provides the users location as latitude and longitude coordinates, which can then be used to locate the closet Woolworths store location to the user.</p>
<p>Currently iPhone, Android and Palm smart phones support the use of geolocation API’s along with the popular Firefox (Figure 3 &amp; 4), Chrome and Safari PC desktop browsers. Other devices and browsers that do not support geolocation API’s can be gracefully degraded to the current, or a more streamlined version of the current website.</p>
<p><div id="attachment_33" class="wp-caption alignnone" style="width: 667px"><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Geoloc-Firefox.png"><img class="size-full wp-image-33  " title="Figure 3 – Geolocation API behaviour in Firefox" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Geoloc-Firefox.png" alt="Figure 3 – Geolocation API behaviour in Firefox" width="657" height="390" /></a><p class="wp-caption-text">Figure 3 – Geolocation API behaviour in Firefox</p></div></p>
<p><div id="attachment_34" class="wp-caption alignnone" style="width: 667px"><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Geoloc-Firefox2.png"><img class="size-full wp-image-34 " title="Figure 4 - Geolocation API behaviour in Firefox" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Geoloc-Firefox2.png" alt="Figure 4 - Geolocation API behaviour in Firefox" width="657" height="390" /></a><p class="wp-caption-text">Figure 4 - Geolocation API behaviour in Firefox</p></div></p>
<p>At this stage Woolworths’ major competitors (e.g. Coles) are yet to implement this technology. This presents an opportunity for Woolworths to be the market leader in the use of geographic targeting to deliver relevant information to its customers based on their physical location.</p>
<p>As the geolocation API is a client side technology no additional infrastructure purchases are necessary on Woolworths’ part, however there is an investment requirement to make the appropriate code changes to both website database (backend) and public facing PC and smart phone websites in order to properly support geolocation features.</p>
<p>Once in place, geolocation technology could easily be implemented on within other sections of the Woolworths website. A prime candidate would be the Price Check feature.</p>
<p>There are numerous benefits associated with this technology, they are:</p>
<ul>
<li>Increased customer awareness of the weekly specials available to them in their geographic location.</li>
<li>Increased ability to record the location of Woolworths customers locations when using the Woolworths websites.</li>
</ul>
<h3>4.3 Email Delivery of weekly specials</h3>
<p>Woolworths does not currently distribute its weekly specials to its customers via email. In our survey we asked Woolworths’ customers if they were comfortable with receiving weekly emails containing information relating to the weekly specials offered by Woolworths. 83.4% of customers surveyed responded favourably to this idea.</p>
<p>Currently Woolworths’ major competition, Coles, operates an eNewsletter, which Coles uses to convey information about its weekly specials, competitions and other news related to Coles (Fig 5 &amp; 6).</p>
<p><div id="attachment_36" class="wp-caption alignnone" style="width: 667px"><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Coles-eNews-SignUp.png"><img class="size-full wp-image-36 " title="Figure 5 – Coles eNewsletter Signup" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Coles-eNews-SignUp.png" alt="Figure 5 – Coles eNewsletter Signup" width="657" height="390" /></a><p class="wp-caption-text">Figure 5 – Coles eNewsletter Signup</p></div></p>
<p><div id="attachment_35" class="wp-caption alignnone" style="width: 667px"><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/Coles-eNews-Detail.png"><img class="size-full wp-image-35 " title="Figure 6 – Coles eNewsletter detail" src="http://www.jeremycade.com/wp-content/uploads/2011/05/Coles-eNews-Detail.png" alt="Figure 6 – Coles eNewsletter detail" width="657" height="390" /></a><p class="wp-caption-text">Figure 6 – Coles eNewsletter detail.</p></div></p>
<p>Email newsletters are a proven low cost, measurable, communication method. There are numerous Email Marketing service providers who specialises in large scale mass mail-outs for corporate clients, such as Vision6 (<em>Vision6: Our Clients</em> 2010) and Gen3Media (<em>Gen3Media: Corporate</em> 2010). Each of these providers allows for personalisation of the emails sent to each customer based on a number of customisable factors. These could include:</p>
<ul>
<li>Customers geographic location</li>
<li>Customers previous purchasing habits</li>
<li>Customers indicated items of interest i.e.; Health Foods, Fresh fruit or vegetables etc.</li>
</ul>
<p>As Email Marketing is provided as “Software as a Service” by a third party provider no additional infrastructure would need to purchase on the part of Woolworths. A small investment would need to be made on modifying the Woolworths PC website to accommodate email capture to be used with the Email Marketing services.</p>
<p>Benefits of the proposed weekly email system include:</p>
<ul>
<li>Increased level of communication with customers.</li>
<li>Increased customer awareness of available weekly specials</li>
</ul>
<h3>4.4 Awareness of store layout and product placement locations</h3>
<p>During in-store observations of Woolworths’ customers, a recurring pattern of user behaviour was recorded: Customers often had trouble finding a specific product’s location within the store.  The current process for customers to find a specific product would be to look walk around the store, possibly reading the isle signs, finally they would ask a staff member to point them in the right direction. This process while functional is somewhat time consuming, both on behalf of the customer and the staff member, and doesn’t satisfy Woolworth’s strategic goal of providing its customers with greater convenience.</p>
<p>We suggest making available, online (via PC and smart phone) a detailed isle map of product locations for each store, similar in function to Google Maps. A customer could search for a product by product name or product type and have that products location displayed on a store map, allowing them to easily navigate to the correct area of the store to retrieve the product.</p>
<p>This system could also be integrated with the weekly specials and inventory management systems of each store in order to provide the best possible information to the customer. As an example: A customer may search for toilet paper in the Moorooka store, the system would then provide a map showing where in the store toilet paper is located, along with the relevant weekly special information for that group of products and inventory levels of popular brands of toilet paper.</p>
<p>A system of this type would require a substantial investment in mapping &amp; inventory tracking technologies in order to accurately track and place items within any given store. There would also need to be substantial investment in both PC and smart phone version of the Woolworths website in order to provide a seamless experience for the customer in order to allow them to easily and quickly locate the desired product.</p>
<p>Again at this stage none of Woolworths’ major competitors (eg. Coles) have implemented this type of system. This presents an opportunity for Woolworths to be the market leader in this type of integrated online/offline customer service.</p>
<p>There are a number of benefits associated with this type of system, not only from the customers prospective, but also for the efficiency of Woolworths’ in-store operations.</p>
<p>From the customers perspective a product mapping and location systems allows for:</p>
<ul>
<li>Decreased periods of time spent waiting for assistance.</li>
<li>Decreased periods of time spent looking for specific products.</li>
<li>Increased levels of convenience when searching for products.</li>
<li>Increased awareness of potential savings or specials.</li>
</ul>
<p>From Woolworths’ operation perspective a product mapping and location system allows for:</p>
<ul>
<li>Decrease in the amount of interruptions to staff performing stocking, or re-shelving duties.</li>
<li>Decrease in the number of staff needed to effectively manage customers’ expectations in-store. Resulting in HR cost savings.</li>
</ul>
<h2>5. Conclusion</h2>
<p>Surveys indicated that Woolworths’ customers are currently either not aware of or are not taking advantage of Woolworths’ weekly specials. Additional in-store observations indicated that customers often had issues locating specific products whilst shopping at Woolworths stores.</p>
<p>We have recommended the introduction of three online (PC and smart phone) technologies that we believe will help Woolworths’ offline customers to overcome these issues. They are:</p>
<ul>
<li>Develop and implement location aware services (geolocation API) for Woolworths PC and smart phone websites to help with the delivery of weekly specials and other information specific to the customer’s geographic locations, i.e. Price Check information.</li>
<li>Develop and implement electronic mail delivery of weekly specials.</li>
<li>Develop and implement in-store mapping services to help Woolworths’ customer’s location specific products in store without assistance from Woolworths’ staff members.</li>
</ul>
<p>Currently none of Woolworths major competitors make use of geolocation technologies or in-store mapping technologies. This presents Woolworths with an opportunity to become a market leader in the adoption of these technologies.</p>
<h2>6. Appendix</h2>
<h3>6.1 Website Usability Sequences</h3>
<p>Screen shots were made with a clean browser. Browser cache, history &amp; cookies were all cleared prior to opening the site.</p>
<h4>6.1.1 Sequence 1<strong> </strong></h4>
<p><strong> </strong>Woolworths Smart Phone Website: setting users preferred store location.</p>
<p><strong>Screen 1: Home </strong></p>
<p><strong> </strong><strong> </strong><strong> </strong><strong> </strong></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0128.png"><img class="alignnone size-full wp-image-37" title="IMG_0128" src="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0128.png" alt="" width="320" height="480" /></a><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0129.png"><img class="alignnone size-full wp-image-38" title="IMG_0129" src="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0129.png" alt="" width="320" height="480" /></a></p>
<p>Screen 1 clearly demostrates that the default location is Town Hall, NSW.<br />
In this demonstration, the user is physically located in Moorooka, QLD, ~925km’s from Town Hall, NSW</p>
<p><strong>Screen 2: Store Locator</strong></p>
<p><strong> </strong><strong> </strong><strong> </strong><strong> </strong></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0130.png"><img class="alignnone size-full wp-image-39" title="IMG_0130" src="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0130.png" alt="" width="320" height="480" /></a><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0131.png"><img class="alignnone size-full wp-image-40" title="IMG_0131" src="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0131.png" alt="" width="320" height="480" /></a></p>
<p>Screen 2 requires the user to enter the post code of their location in order to find the closest store. This is a issue for travellers who may not know the post code of the area. Once the post code has been entered, the page reloads and the user needs to select the desired store location.</p>
<p><strong>Screen 3: Store Information</strong></p>
<p><strong> </strong><strong> </strong><strong> </strong><strong> </strong></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0132.png"><img class="alignnone size-full wp-image-41" title="IMG_0132" src="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0132.png" alt="" width="320" height="480" /></a><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0133.png"><img class="alignnone size-full wp-image-42" title="IMG_0133" src="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0133.png" alt="" width="320" height="480" /></a></p>
<p>Screen 3 demonstrates the store information provided. At this point the user may select to view the the store location, latest specials or set the this store as their default location.</p>
<p><strong>Screen 4: Default Location</strong></p>
<p><strong> </strong></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0134.png"><img class="alignnone size-full wp-image-43" title="IMG_0134" src="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0134.png" alt="" width="320" height="480" /></a></p>
<p>Screen 4 demonstrates the setting of the users default store location.</p>
<p><strong>Screen 5: Local Specials</strong></p>
<p><strong> </strong></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0135.png"><img class="alignnone size-full wp-image-44" title="IMG_0135" src="http://www.jeremycade.com/wp-content/uploads/2011/05/IMG_0135.png" alt="" width="320" height="480" /></a></p>
<p>Screen 5 demonstrates the local specials available at the Moorooka, QLD Woolworth’s store for the week May 10<sup>th</sup>, 2010.</p>
<h2>7. Reference List:</h2>
<p><em>InvestSMART: Woolworths Limited</em> (WOW), 2010, viewed 4<sup>th</sup> May 2010,<br />
&lt;http://www.investsmart.com.au/shares/asx/Woolworths-WOW.asp&gt;</p>
<p><em>Gen3Media: Corporate</em>, 2010, viewed 7<sup>th</sup> May 2010,<br />
&lt;http://www.gen3media.com.au/index.php?option=com_content&amp;task=view&amp;id=43&amp;Itemid=70&gt;</p>
<p><em>Vision6: Our Clients</em>, 2010, viewed 7<sup>th</sup> May 2010,<br />
&lt;http://www.vision6.com.au/our_clients.html&gt;</p>
<p>W3C (2009), ‘Geolocation API Specification’, 2010, viewed 9<sup>th</sup> May 2010,<br />
&lt;http://www.w3.org/TR/geolocation-API/&gt;</p>
<p>Woolworths Limited (2009), ‘Annual Report’<br />
&lt;http://thomson.mobular.net/thomson/7/3022/4089/&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2011/05/improving-offline-customers-shopping-experience-through-web-based-information-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Charles Babbage’s Analytical Engine</title>
		<link>http://www.jeremycade.com/2011/05/charles-babbage%e2%80%99s-analytical-engine/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=charles-babbage%25e2%2580%2599s-analytical-engine</link>
		<comments>http://www.jeremycade.com/2011/05/charles-babbage%e2%80%99s-analytical-engine/#comments</comments>
		<pubDate>Tue, 31 May 2011 10:04:18 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[University Papers]]></category>
		<category><![CDATA[1004ICT]]></category>
		<category><![CDATA[Babbage]]></category>
		<category><![CDATA[Griffith University]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=26</guid>
		<description><![CDATA[University: Griffith University, Brisbane, Australia Degree: Bachelor of Information Technology Accelerated Date: April 15, 2010 Class/Course: 1004ICT Foundations of Computing &#38; Communication Paper Grade: Unavailable Between 1834 and 1836, Charles Babbage, an English Mathematician began work his Analytical Engine. It &#8230; <a href="http://www.jeremycade.com/2011/05/charles-babbage%e2%80%99s-analytical-engine/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>University</strong>: Griffith University, Brisbane, Australia<br />
<strong>Degree</strong>: Bachelor of Information Technology Accelerated<br />
<strong>Date</strong>: April 15, 2010<br />
<strong>Class/Course</strong>: 1004ICT Foundations of Computing &amp; Communication<br />
<strong>Paper Grade</strong>: Unavailable</p>
<p>Between 1834 and 1836, Charles Babbage, an English Mathematician began work his Analytical Engine. It was proposed to be a mechanical general purpose computer, one which, at least on paper shares many of the features of what we now think of as a being necessary to fit the description of a modern computer system. Had it been built it would have been capable of basic arithmetic addition, subtraction, multiplication and division, it would have also had a basic set of instructions allowing a user to create programs using punch cards. Its physical layout of a “store” (memory) and a “mill” (processing unit) would have mirrored what we would now know to be a Von Neumann based architecture. Babbage’s vision of the Analytical Engine was such that it would have been able to evaluate arbitrary formulas in a similar way to a modern computer with absolute integrity of the results. (Wilkes, 1991).</p>
<p>Work on the Analytical Engine began during the summer of 1834 after the 10 year Difference Engine No.1 Project had finished. Initial work proceeded at pace with a workable plan devised in the middle of 1836. During this time that Babbage was able to devise the first automated direct multiplication and division, at which point Babbage had devised a four function calculator, capable of all of the basic arithmetic operations (addition, subtraction, multiplication and division). (Swade, 2000), the idea of separate areas of the Engine for arithmetical operations and the “mill” and an area for storage of numbers, the “store” (terms borrowed from the textile industry) (Swade, 2000). Babbage also suggested the use of punch cards as a way to control the Analytical Engine, a technology borrowed from the Jacquard Loom (Essinger, 2004).</p>
<p>Multiplication and division operation were controlled by “barrels”, the surface of which contained fixed studs, similar to what can be seen on a children’s music box. Unfortunately the process of multiplication and division was time consuming, due in part for the need of repeated operations. To accommodate the execution time need for multiplication and division, Babbage set to work reducing the amount of time needed for addition. The difficulty with addition lay in the ability to carry tens. Babbage’s felt that his previous method of Successive Carry, used in the Difference Engine No.1 was too slow, as it required an extra unit of time for each digit in the working numbers. Babbage states: “At last I came to the conclusion that I had exhausted the principle of successive carriage. I concluded also that nothing but teaching the Engine to foresee and then to act upon that foresight could ever lead me to the object I desired, namely, to make the whole or any unlimited number of carriages in one unit of time.” (Morrison, P. &amp; E. 1961. p. 53). The result of this line of thought was the anticipating carriage. Babbage thought this to be the single most important part of the Analytical Engine. The ENIAC machine would later use an electronic implementation of this idea (Thornton, 2007).</p>
<p>There was another issue relating to the carriage of tens. The amount of machinery required. Babbage found that it would be more economical to centralise all of the expensive machinery in one place rather than spreading it around the Engine as needed. So he split the engine into two distinct parts (Swade, 2000). The section of the engine dedicated to performing arithmetical functions he named the “mill”, the section of the engine used to store numbers was named the “store”. The Store consisted of columns of wheels which held the numbers that were to be used during operations. Today we would refer to the “store” as memory. The Mill on the other hand, contained all the machinery needed for arithmetical functions.  Numbers would be called up from the Store and sent to the Mill via a set of axes that would act as buffer registers. This arrangement is very similar to today’s modern electronic computers. The architecture, now known as the Von Neumann architecture was first described in a paper published in 1945 by John Von Neumann (Swade, 2000). In that paper Von Neumann describes the internal layout of a modern electronic computer. One of the main features of that paper is the separation of the central processor for general memory. An idea clearly demonstrated by Babbage over 100 years earlier.</p>
<p>Prior to deciding on the use of punch cards, Babbage had experimented with studded barrels to control the sequence of operations to be executed by the engine. This approached had a level of inflexibility that was easily overcome with the use of punch cards (Bromley, 1982). Babbage realised that by using punch cards he could create a device with essentially unlimited capacity. The engine was designed to read in such a way, that the engine would register any given hole if a metal rod was able to pierce it. Babbage also devised a number of ways to ensure that cards were read correctly.</p>
<p>Babbage proposed four different types of punch cards: operation cards, number cards, variable cards and combinatorial cards.</p>
<p>Operation cards told the engine which type of operation to perform – addition, subtraction, multiplication or division. Operation cards could be strung together to perform set sequences of operations. This could be extended without limit. Variable cards specified where in the store a number was to be fetched and where to store a result of an operation. Number cards held numerical data. These cards could be used for setting initial values in the store automatically. They could also be used as secondary or reserve memory. Babbage had planned for number cards to be able to express numbers up to 10<sup>50</sup>-1 (Essinger, 2004). Combinatorial cards added the ability to loop back and iterate a through a set of operations.</p>
<p>Punch cards also have the distinct advantage of being a permanent record of both inputs and output from the engine, for instance, when a number is read out from the machine the figure wheel containing that number is set to zero, this is termed a destructive read out, where the number is lost after being read. Punch cards allow for a non-destructive read out of the values stored on those cards. This would have allowed for libraries of operation, variable and number cards to be created and used at will. It would also have allowed for a user to re-run a particular sequence and be confident that the result was correct. Babbage himself states “There is no limit to the number of such cards which may be strung together according to the nature of the operations required.” (Morrison, P. &amp; E. 1961. p. 62).</p>
<p>By combining sets of punch cards it was possible to give instruction to the Analytical Engine, in a way similar to a modern computer. An operation card could correspond to the action to be performed or an Opcode using modern terminology, a variable card would specify where in memory to store or retrieve a value from, or an Operand. Number cards could act as user input in order to set values in the store as an alternative to setting them by hand; they could also be used for the input of pre-computed values (Swade, 2000).</p>
<p>Babbage’s engine was now capable of executing sequences of instructions entered via punch cards, which used the internal operations (microprograms) in any order, what we would today refer to as a program. The descendant of punch card technology would later be used with great success by IBM with their multiplying punch systems (Thornton, 2000).</p>
<p>While the Analytical Engine was programmable via punch cards, it appears that not effort was made by Babbage to store users programs internally in the engine. As such it was not a Stored-Program computer (Bromley 2000). This is in stark contrast to today’s modern computers. Each time a program was to be run the user would need to enter the full sequence of punch, where the concept of stored programs is fundamental to their operation. However the technology required for stored program computers wouldn’t be fully realised until the end of the 1940s.</p>
<p>As Babbage’s goal for the Analytical Engine was integrity of the results, he spent great amounts of time ensuring that the engine was resilient when encountering errors. For instance he devised a system of wedges to lock each figure wheel in place during the engines operations. The wedges would be withdrawn for the short periods of time when that figure wheel was required for an operation. The wedge would also help to keep figure wheels in correct alignment. If a figure wheel was out of alignment the wedge would class with the gears on the wheel and cause the engine to jam. Using this method Babbage could theoretically use the jamming of the engine as an error detection mechanism (Swade, 2000).</p>
<p>Babbage’s Analytical Engine was an extremely complex mechanical wonder, with many similarities to today’s modern computers. Particularly in the areas programmability along with logical and physical layout of the engine, in that Babbage choose to use punch cards and the segregation of the Store and Mill.</p>
<p>It could be said that with his design of the a centralised processing until along with a memory store that he is a father of modern computing, and indeed many text books make this claim, however as Swade (2000, p.93) states it was not until the 1960’s that Babbage’s work was studied in any great detail by academics. Allan Bromley goes one further and says with some authority: “Babbage had effectively no influence on the design of the modern computer” (Swade, 2000, p.309)</p>
<h2>REFERENCES</h2>
<p>Bromley, A. G.  (2000). Babbage’s Analytical Engine Plans 28 and 28a. The Programmers Interface [Electronic version]. <em>Annals of the History of Computing</em>, 22(4) 5-19.</p>
<p>Bromley, A. G. (1982). Charles Babbage’s Analytical Engine, 1838 [Electronic version]. <em>Annals of the History of Computing, </em>4(3) 196-217</p>
<p>Essinger, J. (2004). <em>Jacquard’s Web. How a hand-loom led to the birth of the information age.</em> Oxford: Oxford University Press.</p>
<p>Morrison, P. and E. (Eds) (1961) <em>Charles Babbage and his Calculating Engines.</em> <em>Of the Analytical Engine </em>(pp. 52-72) Canada: Dover Publications, Inc.</p>
<p>Swade, D. (2000). <em>The Cogwheel Brain.</em> London: Little, Brown and Company</p>
<p>Thorton, J. (2007). <em>The Foundations of Computing and the Information Technology Age. – A Historical, Sociological and Philosophical Enquiry.</em> Sydney: Pearson Education Australia.</p>
<p>Wilkes, M. V.  (1991). Babbage’s Expectations for his Engines [Electronic version].  Annals of the History of Computing, 13(2) 141-145</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2011/05/charles-babbage%e2%80%99s-analytical-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Word for the wise..</title>
		<link>http://www.jeremycade.com/2010/07/word-for-the-wise/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=word-for-the-wise</link>
		<comments>http://www.jeremycade.com/2010/07/word-for-the-wise/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 02:06:12 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Stupidity]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=22</guid>
		<description><![CDATA[When doing detach &#8211; copy of SQL databases: Try not to delete both the original database and the copy.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jeremycade.com/wp-content/uploads/2010/07/facepalm1.jpg"><img class="alignright size-thumbnail wp-image-23" title="Face Palm" src="http://www.jeremycade.com/wp-content/uploads/2010/07/facepalm1-150x150.jpg" alt="Face Palm" width="150" height="150" /></a>When doing detach &#8211; copy of SQL databases:</p>
<p>Try not to delete both the original database and the copy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2010/07/word-for-the-wise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A WTF moment with Entity Framework 4.0</title>
		<link>http://www.jeremycade.com/2010/06/a-wtf-moment-with-entity-framework-4-0/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-wtf-moment-with-entity-framework-4-0</link>
		<comments>http://www.jeremycade.com/2010/06/a-wtf-moment-with-entity-framework-4-0/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 06:54:40 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[.Net 4.0]]></category>
		<category><![CDATA[WTF]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=14</guid>
		<description><![CDATA[I&#8217;m currently working a new website that uses Entity Framework 4.0 as it&#8217;s data access layer. I&#8217;m still learning the ropes as it&#8217;s the first time I&#8217;ve used Entity Framework in a project, but the way Entity Framework handles T-SQL &#8230; <a href="http://www.jeremycade.com/2010/06/a-wtf-moment-with-entity-framework-4-0/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_16" class="wp-caption alignright" style="width: 310px"><a href="http://www.jeremycade.com/wp-content/uploads/2010/06/Sql.png"><img class="size-medium wp-image-16 " title="Table Design in SQL Express  2008 R2" src="http://www.jeremycade.com/wp-content/uploads/2010/06/Sql-300x187.png" alt="Table Design in SQL Express 2008 R2" width="300" height="187" /></a><p class="wp-caption-text">Figure 1: Business Table  design. You will notice that the letter row is marked as a 1 charcter  &quot;char&quot; type.</p></div></p>
<p>I&#8217;m currently working a new website that uses Entity Framework 4.0 as it&#8217;s data access layer. I&#8217;m still learning the ropes as it&#8217;s the first time I&#8217;ve used Entity Framework in a project, but the way Entity Framework handles T-SQL char data types struck me as being quite odd. Specifically the fact that Entity Framework maps char to String.</p>
<p><div id="attachment_15" class="wp-caption alignright" style="width: 310px"><a href="http://www.jeremycade.com/wp-content/uploads/2010/06/EF.png"><img class="size-medium wp-image-15 " title="Mapping Details in  Entity  Frame Work 4.0" src="http://www.jeremycade.com/wp-content/uploads/2010/06/EF-300x185.png" alt="" width="300" height="185" /></a><p class="wp-caption-text">Figure 2: Mapping Details in EF 4: Notice that the  letter row is now mapped as a String data type? </p></div></p>
<p>I would have thought that a T-SQL char data type would be mapped to the equivalent .Net char data type.</p>
<p>It&#8217;s my understanding that the String data type is a Class instead of being an value type or structure, and that its essentially an array or sequence of System.Char unicode characters. Not to mention Strings are immutable, so WHY map a Char to String?</p>
<p>It&#8217;s actually caused me a good 15 minutes of pain, simply because I didn&#8217;t bother to look at the mappings. Essentially what I was trying to do was return a IQueryable of my Business entities based on this particular character field. Guess what, passing a char when .Net expects a String doesn&#8217;t work.</p>
<pre class="brush: csharp; title: ; notranslate">
public IQueryable&lt;Business&gt; getBusinessesByChar(char charAlpha) {
 return db.Businesses.Where(b =&gt; b.letter.Equals(charAlpha));
 }
</pre>
<p>Doesn&#8217;t Work..<br />
<em>&#8220;Unable to create a constant value of type &#8216;System.Object&#8217;. Only primitive types (&#8216;such as Int32, String, and Guid&#8217;) are supported in this context.&#8221;</em><br />
Que?</p>
<pre class="brush: csharp; title: ; notranslate">
public IQueryable&lt;Business&gt; getBusinessesByChar(char charAlpha) {
 return db.Businesses.Where(b =&gt; b.letter.Equals(alpha.toString()));
 }
</pre>
<p>Doesn&#8217;t Work..<br />
<em> &#8220;LINQ to Entities does not recognize the method &#8216;System.String ToString()&#8217; method, and this method cannot be translated into a store expression.&#8221;</em><br />
Great..</p>
<pre class="brush: csharp; title: ; notranslate">
public IQueryable&lt;Business&gt; getBusinessesByChar(char charAlpha) {
 //SCREW YOU EF!!
 String alpha = charAlpha.ToString();
 return db.Businesses.Where(b =&gt; b.letter.Equals(alpha));
 }
</pre>
<p>That works.. Seriously.. How is creating a new String object and passing it to LINQ any different from using the char.ToString() method?</p>
<p>If anyone out that feels like cluing me in, then by all means, I gave up trying to work it out after 15 mins.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2010/06/a-wtf-moment-with-entity-framework-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating Page Slugs using T-SQL</title>
		<link>http://www.jeremycade.com/2010/06/generating-page-slugs-using-t-sql/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=generating-page-slugs-using-t-sql</link>
		<comments>http://www.jeremycade.com/2010/06/generating-page-slugs-using-t-sql/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 03:28:20 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[SLUG]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=8</guid>
		<description><![CDATA[I recently came across a situation where I needed to generate page Slugs from some 5,000,000+ records in a MS-SQL database. Unfortunately I didn&#8217;t have Remote Desktop or Telnet access to the SQL box which precluded me from running one &#8230; <a href="http://www.jeremycade.com/2010/06/generating-page-slugs-using-t-sql/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently came across a situation where I needed to generate page Slugs from some 5,000,000+ records in a MS-SQL database. Unfortunately I didn&#8217;t have Remote Desktop or Telnet access to the SQL box which precluded me from running one of my normal C# or Powershell solutions, and the idea of doing all of the processing over the wire just didn&#8217;t appeal to me. So I decided the best course of action would be to use T-SQL to generate the Slugs for me.</p>
<p>After posting the question to <a href="http://stackoverflow.com/questions/3082588/t-sql-function-for-generating-slugs">StackOverflow</a> and doing some searching on Google I came across Pinal Dave&#8217;s <a href="http://blog.sqlauthority.com/2007/05/13/sql-server-udf-function-to-parse-alphanumeric-characters-from-string/">UDF_ParseAlphaChars</a> function. Luckily it had most of the functionality I required, so it only required minor modifications to get the desired result.</p>
<p>The modified code is below.</p>
<pre class="brush: sql; title: ; notranslate">CREATE FUNCTION [dbo].[UDF_GenerateSlug]
(
@str VARCHAR(100)
)
RETURNS VARCHAR(100)
AS
BEGIN
DECLARE @IncCharLoc SMALLINT
SET @str = LOWER(@str)
SET @IncCharLoc = PATINDEX('%[^0-9a-z] %',@str)
WHILE @IncCharLoc &amp;gt; 0
BEGIN
SET @str = STUFF(@str,@IncCharLoc,1,'')
SET @IncCharLoc = PATINDEX('%[^0-9a-z] %',@str)
END
SET @str = REPLACE(@str,' ','-')
RETURN @str
END

GO</pre>
</pre>
<p>First of all I need to leave spaces so they can be replaced with  hyphens, and secondly I only require lower case characters. You may also  notice that I'm doing a case transformation against the incoming  string. This is due to the SQL database being setup with case insensitivity.</p>
<p>I would like to thank Pinal Dave for his original code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2010/06/generating-page-slugs-using-t-sql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kicking around in Tokyo</title>
		<link>http://www.jeremycade.com/2009/02/kicking-around-in-tokyo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kicking-around-in-tokyo</link>
		<comments>http://www.jeremycade.com/2009/02/kicking-around-in-tokyo/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 14:17:48 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[japan]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=60</guid>
		<description><![CDATA[I’ve been in Tokyo for about a month, and it’s interesting to say the least. I haven’t had a lot of time to explore the city as yet, but I have to been to a few of the major city &#8230; <a href="http://www.jeremycade.com/2009/02/kicking-around-in-tokyo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I’ve been in Tokyo for about a month, and it’s interesting to say the least. </p>
<p>I haven’t had a lot of time to explore the city as yet, but I have to been to a few of the major city centres, along with some of the major cultural sites.</p>
<p>I’m definitely hurting with the exchange rate. My weekly expendable wage is converting to around 25,000 JPY, while my rent is 56,000 per month. So that’s a good chunk of that money gone. </p>
<p>The other major expense is food and transport. </p>
<p>Anything resembling red meat will run about $30 AUD per kilogram, for the standard off the shelf grocery store cuts. </p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00636.jpg"><img title="DSC00636" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="180" alt="DSC00636" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00636-thumb.jpg" width="240" border="0" /></a>&#160;</p>
<p>Transport runs me around 1,000 JPY every time I leave the house, being that I need to change trains &amp; lines at least once to get to any major destination in greater Tokyo. </p>
<p>So far my two favourite places in Tokyo are the Shinjuku Goen and Kokyo (The Imperial Residence).</p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00645.jpg"><img title="DSC00645" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px; border-right-width: 0px" height="180" alt="DSC00645" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00645-thumb.jpg" width="240" border="0" /></a> </p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00646.jpg"><img title="DSC00646" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px; border-right-width: 0px" height="180" alt="DSC00646" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00646-thumb.jpg" width="240" border="0" /></a> </p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00648.jpg"><img title="DSC00648" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px; border-right-width: 0px" height="180" alt="DSC00648" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00648-thumb.jpg" width="240" border="0" /></a> </p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00652.jpg"><img title="DSC00652" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px; border-right-width: 0px" height="180" alt="DSC00652" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00652-thumb.jpg" width="240" border="0" /></a> </p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00675.jpg"><img title="DSC00675" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px; border-right-width: 0px" height="180" alt="DSC00675" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00675-thumb.jpg" width="240" border="0" /></a></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00679.jpg"><img title="DSC00679" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px 0px 5px 5px; border-right-width: 0px" height="180" alt="DSC00679" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00679-thumb.jpg" width="240" border="0" /></a></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00665.jpg"><img title="DSC00665" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px 0px 5px 5px; border-right-width: 0px" height="180" alt="DSC00665" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00665-thumb.jpg" width="240" border="0" /></a></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00666.jpg"><img title="DSC00666" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px; border-right-width: 0px" height="180" alt="DSC00666" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00666-thumb.jpg" width="240" border="0" /></a></p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00669.jpg"><img title="DSC00669" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 5px; border-right-width: 0px" height="180" alt="DSC00669" src="http://www.jeremycade.com/wp-content/uploads/2009/02/dsc00669-thumb.jpg" width="240" border="0" /></a></p>
<p>I’m yet to visit any of the major shrines, but I hope to do so in the coming days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2009/02/kicking-around-in-tokyo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Lack of Design Skills..</title>
		<link>http://www.jeremycade.com/2008/12/my-lack-of-design-skills/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-lack-of-design-skills</link>
		<comments>http://www.jeremycade.com/2008/12/my-lack-of-design-skills/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 07:13:55 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.jeremycade.com/?p=39</guid>
		<description><![CDATA[I think it’s safe to say that my design skills are amateur at best. Being that I spend 85% of my time creating Google AdWords campaigns, and the other 15% developing or maintaining Asp.Net applications, the longest I spend in &#8230; <a href="http://www.jeremycade.com/2008/12/my-lack-of-design-skills/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I think it’s safe to say that my design skills are amateur at best. Being that I spend 85% of my time creating Google AdWords campaigns, and the other 15% developing or maintaining Asp.Net applications, the longest I spend in any graphics applications is 15 – 20 minutes resizing images for use in Image Ads. </p>
<p>So I was caught a little off guard when one of my friends asked me to help him design a flyer for his upcoming Bboy Bootcamp. </p>
<p>Thankfully he gave me a very clear idea of what he needed done. </p>
<p>The main element was the background, It needed to have a camouflage feel to it. I thought that was easy enough to accomplish. I can use my trusty buddy Google and search for Photoshop Camouflage Tutorials. </p>
<p>Lucky I found a great little tutorial on <a href="http://www.quantumpetshop.com/tutorials/camo.asp" target="_blank">Quantum Petshop</a> written by a Ryan Foss, which set out some very easy steps for creating a multi-layer camouflage background. </p>
<p>After about 20 minutes of playing around with filters and getting the colours right, I had my camouflage background. I spent another 20 minutes adding text and resizing images, and wollah, a very very basic flyer for the Bboy Bootcamp.</p>
<p><a href="http://www.jeremycade.com/wp-content/uploads/2008/12/rushbootcamp72dpiseconddraft.jpg"><img title="Bboy Bootcamp 2009" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="480" alt="Bboy Bootcamp 2009" src="http://www.jeremycade.com/wp-content/uploads/2008/12/rushbootcamp72dpiseconddraft-thumb.jpg" width="339" border="0" /></a></p>
<p>I’m actually quite happy with how it turned out, considering that I’m not an artistic person. Thankfully my friend was happy with the end result as well. </p>
<p>It’s not great, I know, but it’s something.. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeremycade.com/2008/12/my-lack-of-design-skills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

