How to Leverage the Triple Constraint in IT Projects

Anadea
The Startup
Published in
5 min readJul 12, 2018

Project managers at IT companies often have to deal with the requests like “I want to do this app for a fixed price” or “Could you tell me a precise cost of my project?”. Clients asking these questions may have just a brief idea of what they want to implement and they may not be sure about all the details of their project, however, they need the answer.

The only way to handle such situations is to introduce a clear process which lets deliver a software product that meets technical requirements and at the same time achieve desired time / cost outcomes. Basically, this brings us to the necessity to find the right balance between the constraints faced in every IT project: scope, schedule and cost. This is also known as the Triple Constraint, the Project Management Triangle or Time, Cost, Quality Triangle.

In this article, we will show you how to properly manage all three constraints and maintain transparency throughout software development lifecycle.

Let’s review each constraint in detail.

Scope

Scope is the set of features and functionality required to complete the project. There are certain steps and activities needed to clearly define the scope and deliver it on time and within budget.

The first step is to create a specification document where we:

1. Break functionality into Epics and User Stories.

2. Write down scenarios for user stories .

3. Specify acceptance criteria for user stories .

The purpose of creating this document is to outline the requirements for all the features and make it clear where each feature starts and where it ends.

The second step is to create a design for the system (features). At this stage, all pages, screens, features and modules are accurately drawn so that all project participants can clearly understand how it will look like in the future.

Based on outcomes of these two steps, project manager creates Work breakdown structure which records all features that need to be implemented. Now, the project has the list of items that can be estimated by a development team and this is the next step of the process.

Estimation of every feature includes the following activities:

1. Development of the feature. At this stage, a developer writes the code based on specification document and design.

2. Feature testing. QA specialist ensures that the feature meets specified requirements and do not cause any negative impact on other parts of the system. If any issues are detected, quality engineer documents the issue (called ‘bug’) and addresses it to the development camp.

3. Bugfixing. Based on QA specialist’s recommendations, developer fixes bugs or implements improvements initiated by QA.

In order to track progress on the development phase, project manager compares planned estimate with actual one so that there is a clear understanding if the project is on schedule or not.

Schedule

Once we have the Work breakdown structure with estimations, we can understand how long it will take to implement the project given allocated development team.

A tool which is used for this purpose is a Gantt chart. This chart makes it easy to visualize project management timelines by transforming task names, start dates, durations, and end dates into cascading horizontal bar charts.

In Agile (Scrum) development, the project is usually divided into iterations (Sprints). Duration of each Sprint is 2 weeks and it includes such activities as:

1. Sprint planning to plan the scope of work for sprint.

2. Implementation of the scope (development and testing).

3. Daily standups to get the team synced on sprint progress.

4. Demo meeting to show results of sprint work.

5. Retrospective meeting to summarize sprint results.

So using Gantt chart allows all participants to know when feature development starts and when it ends.

Cost

The 3rd side of the project triangle is cost — the funds which should be paid for the Scope implementation within the planned Schedule. Cost is usually calculated by the following formula.

Service Hours (h) * Rate per hour ($) = Cost ($)

Project costs is a very sensitive aspect and should be tracked very carefully. For the budget tracking, we can use Burndown chart, a graphical representation of how project budget is spent versus planned funds baseline. Funds are shown on the vertical axis, with sprints on the horizontal one. This chart shows if we are staying within the budget or there is a risk to exceed it.

Change requests, e.g. adding new features or modifying UX flow, may significantly affect the budget. The Burndown chart will help to keep finger on the budget pulse and control budget throughout project lifecycle.

Conclusion

Using Work breakdown structure, Gantt chart and Burndown chart allows us to maintain transparency and keep the balance between Scope, Schedule and Cost during the development process. When you understand the actual state of things in your project, you can efficiently manage it and address issues if something goes wrong.

It doesn’t matter how big or small your project is, it will have its own project management triangle which, when managed properly, can become a triangle of success for your business venture.

Originally published at anadea.info

This story is published in The Startup, Medium’s largest entrepreneurship publication followed by 343,876+ people.

Subscribe to receive our top stories here.

--

--