Home > Articles

Like this article? We recommend

1.5 An Overview of the Requirements Management Process

A simplified description of the requirements management process contains the following major steps:

  • Establishing a requirements management plan
  • Requirements elicitation
  • Developing the Vision document
  • Creating use cases
  • Supplementary specification
  • Creating test cases from use cases
  • Creating test cases from the supplementary specification
  • System design

The first step (requirements management plan) defines the requirements pyramid. In each of the next seven steps, one of the elements of the pyramid is built. Table 1.1 describes which requirement types and what documents are created in each step. As you can see, the process navigates through the pyramid from the top down and from left to right.

Table 1.1 Requirements and Documents Created in Each Phase

Step

Requirement Types

Documents

Requirements elicitation

Stakeholder needs

Stakeholder requests

Developing the Vision document

Features

Vision

Creating use cases

Use cases, scenarios

Use case specifications

Supplementary specification

Supplementary requirements

Supplementary specification

Creating test cases from use cases

Test cases

Test cases

Creating test cases from the supplementary specification

Test cases

Test cases

System design

Class diagrams, interaction diagrams

UML diagrams

Requirements management is an interactive process. In a typical iteration, a full pass through the pyramid is performed. Even in the same iteration, we can go back a few steps and repeat the activity. For example, during the creation of a test case, we can discover that some information is missing, and we need more input from a stakeholder, so we go back a step to “gathering requirements.” To maintain the model’s integrity, it is important to update all affected requirements. In initial iterations the emphasis is placed on the first few steps (the top of the pyramid), and in later iterations more time is spent on the lower part of the pyramid.

This description is simplified because only major steps are described. For example, some activities defined by the Rational Unified Process (RUP) are more granular. (For example, our step of creating use cases contains the following RUP activities: find actors and use cases, structure the use case model, prioritize use cases, and detail use cases.)

Let’s briefly look through all the steps.

Establishing a Requirements Management Plan

One of the first tasks in the project is developing a Requirements Management Plan (RMP). The RMP describes the overall approach to managing requirements in the project. The document details how requirements are created, organized, modified, and traced during the project lifecycle. It also describes all requirement types and their attributes used in the project.

Here are some questions that can be answered in the RMP:

  • Will any RM tool be used?
  • What requirement types will be tracked in the project?
  • What are the attributes of these requirements?
  • Where will the requirements be created—in the database only or in the documents?
  • Between which requirements do we need to implement traceability?
  • What documents are required?
  • Which requirements and documents will be used as a contract with customers?
  • If part of the project is outsourced, what requirements and documents will be used as a contract with a vendor?
  • Will we follow the RUP or some other methodology?
  • Does the customer need any specific documents to comply with his development process?
  • How will change management be implemented?
  • Assuming that RequisitePro is used, will the whole system be stored in one RequisitePro project or spread among many projects?
  • What process will guarantee that all requirements were implemented and tested?
  • Which requirements or views do we need to generate reports?

Chapter 3, “Establishing a Requirements Management Plan,” describes all these decisions in detail.

Requirements Elicitation

At the top level of the pyramid are stakeholder needs, as shown in Figure 1.3.

Figure 1.3

Figure 1.3 Needs (stakeholder requests) are at the top of the pyramid.

This book uses the terms “stakeholder needs” and “stakeholder requests” as synonyms. However, if project specifics require, it is possible to define them as two separate requirement types. In that case, needs would be very high-level requirements, such as “The system shall have the capability to book a flight.” Usually there are no more than five high-level needs per stakeholder and no more than 15 needs per project. All detailed requirements would be captured as stakeholder requests. However, in many projects it is easier to capture all input from the stakeholders in the same type of requirement, so in the example used in this book, stakeholder needs represent all input from the stakeholders, regardless of granularity. In some projects there may be a need to distinguish between “stakeholder needs” describing initial requirements and “stakeholder requests” that may include subsequent change requests.

Requirements elicitation, also called requirements gathering, is a very important step. Missing or misinterpreting a requirement at this stage will propagate the problem through the development lifecycle.

Here are some of the techniques used to elicit requirements from stakeholders:

  • Interviews
  • Questionnaires
  • Workshops
  • Storyboards
  • Role-playing
  • Brainstorming sessions
  • Affinity diagrams
  • Prototyping
  • Analysis of existing documents
  • Use cases
  • Analysis of existing systems

These techniques are described in Chapter 5, “Requirements Elicitation.”

Developing the Vision Document

Section 1.3 discussed attributes of a good requirement. However, information that comes from stakeholders does not necessarily have these attributes. It is especially the case that requirements coming from different sources may be conflicting or redundant.

During development of the Vision document, one of the main goals of business analysts is deriving features from stakeholder needs (see Figure 1.4). Features should have all the attributes of a good requirement. They should be testable, nonredundant, clear, and so on.

Figure 1.4

Figure 1.4 Features are derived from needs.

The Vision document should contain essential information about the system being developed. Besides listing all the features, it should contain a product overview, a user description, a summary of the system’s capabilities, and other information that may be required to understand the system’s purpose. It may also list all stakeholder needs in case they were not captured in separate documents.

Some parts of the Vision are created at the very beginning, before we even start eliciting requirements from stakeholders. Examples of these sections are

  • A description of the problem being solved.
  • Identification of users/customers/stakeholders.

Creating Use Cases

Functional requirements are best described in the form of use cases. They are derived from features, as shown in Figure 1.5.

Figure 1.5

Figure 1.5 Use cases are derived from features that describe the system’s functionality. Scenarios are derived from use cases.

A use case is a description of a system in terms of a sequence of actions. It should yield an observable result or value for the actor (an actor is someone or something that interacts with the system). The use cases

  • Are initiated by an actor.
  • Model an interaction between an actor and the system.
  • Describe a sequence of actions.
  • Capture functional requirements.
  • Should provide some value to an actor.
  • Represent a complete and meaningful flow of events.

Here is a fragment of a use case:

  1. The user enters required flight information: departure airport and date, arrival airport and date.
  2. The system displays all outbound flights matching the search criteria.
  3. The user selects an outbound flight.
  4. The system displays a list of available return flights.

The purpose of a use case is to facilitate agreement between developers, customers, and users about what the system should do. A use case becomes sort of a contract between developers and customers. It’s also a basis for use case realizations, which play a major role in design. In addition, you can produce sequence diagrams, communication diagrams, and class diagrams from use cases. Furthermore, you can derive user documentation from use cases. Use cases may also be useful in planning the technical content of iterations and give system developers a better understanding of the system’s purpose. Finally, you can use them as an input for test cases.

While designing use cases we will also define scenarios—specific paths through the use case. We usually implement systems scenario by scenario, not the whole use case at once. Scenarios are required when we derive test cases from use cases. On the requirements pyramid, scenarios are one level below use cases (see Figure 1.5).

Supplementary Specification

Supplementary specification captures nonfunctional requirements (usability, reliability, performance, supportability) and some functional requirements that are spread across the system, so it is tough to capture them in the use cases. These requirements are called supplementary requirements and are derived from features, as shown in Figure 1.6.

Figure 1.6

Figure 1.6 Supplementary requirements are derived from features that cannot be captured in the use cases.

Chapter 8, “Supplementary Specification,” discusses this type of requirement in detail.

Creating Test Cases from Use Cases

As soon as all the requirements are captured, we should design a way to check whether they are properly implemented in the final product. Test cases will show the testers what steps should be performed to test all requirements. In this step we will concentrate on creating test cases from use cases. If we did not create scenarios while generating use cases, we need to define them now. Test cases are at the lowest level of the pyramid, as shown in Figure 1.7.

Figure 1.7

Figure 1.7 Test cases for testing use cases.

This process is described in detail in Chapter 9, “Creating Test Cases from Use Cases.”

Creating Test Cases from the Supplementary Specification

The approach used in the preceding step does not apply to testing supplementary requirements. Because these requirements are not expressed as a sequence of actions, the concept of scenarios does not apply to them. An individual approach should be applied to each of the supplementary requirements because techniques used to test performance requirements are different from techniques used to test usability requirements. In this step we also design testing infrastructure and platform-related issues.

Sometimes we need to “borrow” one scenario that was created to test use cases (see Figure 1.8). For example, to test the requirement “The system should run using the Internet Explorer (IE) browser and using the Netscape browser,” we should select one scenario (preferably basic flow of the most popular use case) and test the full scenario in the IE browser. Then we should test the same scenario again in the Netscape browser. There is no need to test all test cases created in the preceding step in both browsers. Just select those that contain some functionality that may be browser-specific.

Figure 1.8

Figure 1.8 Test cases for testing supplementary requirements.

Some of the supplementary requirements can be tested using automated testing tools such as Rational Robot.

System Design

Requirements are the basis for system design, which is often facilitated by use of the Unified Modeling Language (UML) [BOO98]. Many tools, such as Rational Rose, Rational Software Architect, Rational Data Architect, and Rational Software Modeler, can significantly facilitate the creation of all required diagrams.

One approach is to create interaction diagrams from scenarios and, at the same time, assign functionality to the classes (see Figure 1.9). This topic is discussed in detail in Chapter 11, “Object-Oriented Design.”

Figure 1.9

Figure 1.9 System design.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020