The method uses 7 phases which are successively executed, like the waterfall model. The phases are: • Information planning: Problem definition and initial plan • Definition study:
Requirements analysis and revised plan • Basic Design: High level technical design and revised plan • Detailed Design: Building the system (and revised plan) • Realization: Testing and acceptance (and revised plan) • Implementation: Installation,
data conversion, and cut-over to production • Operation and Support: Delivery to ICT support department Upon completion of a phase, it is decided whether to go on to the next phase or not; the terms 'Go' and 'No-Go' are used for this. The next phase will not start until a 'Go' is given, while if there is a 'No-Go', the project either stays in the current phase to be improved or is canceled completely.
Information planning In this phase, the problems that have to be solved by the project are defined. The current and desired situations are analysed, and goals for the project are decided upon. In this phase, it is important to consider the needs of all parties, such as future users and their management. Often, their expectations clash, causing problems later during development or during use of the system.
Definition study In this phase, a more in-depth study of the project is made. The organization is analysed to determine their needs and determine the impact of the system on the organization. The requirements for the system are discussed and decided upon. The feasibility of the project is determined. Aspects that can be considered to determine feasibility are: • Advisable — Are the resources (both time and knowledge) available to complete the project. • Significance — Does the current system need to be replaced? • Technique — Can the available equipment handle the requirements the system places on it? • Economics — Are the costs of developing the system lower than the profit made from using it? • Organization — Will the organization be able to use the new system? • Legal — Does the new system conflict with existing laws?
Basic Design In this phase, the design for the product is made. After the definition study has determined what the system needs to do, the design determines how this will be done. This often results in two documents: The
functional design, or
User interface design explaining what each part of the system does, and the high-level technical design, explaining how each part of the system is going to work. This phase combines the functional and technical design and only gives a broad design for the whole system. Often, the architecture of the system is described here. SDM2 split this step in two parts, one for the BD phase, and one for the DD phase, in order to create a Global Design document.
Detailed Design In this phase, the design for the product is described technically in the jargon needed for software developers (and later, the team responsible for support of the system in the O&S phase). After the basic design has been signed off, the technical detailed design determines how this will be developed with software. This often results in a library of source documentation: The
functional design per function, and the technical design per function, explaining how each part of the system is going to work, and how they relate to each other. In SDM2, this phase elaborates on the Global Design by creating more detailed designs, or further refining existing detailed designs, to the point where they can be used to build the system itself.
Realization In this phase, the design is converted to a working system. The actual way this is done will depend on the system used. Where in older systems programmers often had to write all of the code, newer systems allow the programmers to convert the design into code directly, leaving less work to be done and a smaller chance for errors. At the same type, the system becomes more reliant on the design—if the design has been properly tested, the proper code will be generated, but if the design is not fully correct, the code will be incorrect without a programmer to look for such problems.
Implementation The implementation, or testing phase consists of two steps: a system test and an acceptance test. During the system test the development team—or a separate testing team—tests the system. Most of this will be focused on the technical aspects: does the system work as it should, or are there bugs still present? Bugs that are found in this phase will be fixed. At the ending of this phase, the program should work properly. During the acceptance test, the end-users will test the system. They will test to see if the program does what they want it to do. They will not test every possible scenario, but they will test to see if the program does what they want and expect it to do and that it works in an easy way. Bugs that are found in this phase will be reported to the development team so that they can fix these bugs. During this phase, the final version of the system is implemented by the organization: the hardware is set up, the software is installed, end user documentation is created and, end users trained to use the program, existing data is entered into the system.
Operation and Support Once the system has been implemented, it is used within the organization. During its lifetime, it needs to be kept running and possibly enhanced. ==References==