Home > Articles

This chapter is from the book

This chapter is from the book

Tutorial 1: Building a simple listing report

This section provides step-by-step instructions for building a report that lists customer names, phone numbers, and contact names. The report uses data from the sample database that is supplied with BIRT Report Designer, Classic Models. Figure 3-4 shows a portion of the finished report.

Figure 3-4

Figure 3-4 Report listing customer names, phone numbers, and contacts

In this tutorial, you perform the following tasks:

  • Create a new project. If you are using BIRT RCP Report Designer, you do not complete this step.
  • Create a new report.
  • Build a data source.
  • Build a data set.
  • Lay out the report to display each row of the data set.
  • Sort the data.
  • Format the report to enhance its appearance.
  • Create a report title.

Task 1: Create a new project

Eclipse organizes files by projects. You can create one project to organize all your reports or create multiple projects to organize your reports by categories. For each project that you create, Eclipse creates a directory in your file system.

If you are using BIRT RCP Report Designer, this task does not apply to you.

  1. Choose File rarrd.jpg New rarrd.jpgProject. New Project, which appears in Figure 3-5, displays the types of projects that you can create.
    Figure 3-5

    Figure 3-5 New Project

  2. Expand Business Intelligence and Reporting Tools, select Report Project, then choose Next.
  3. In New Report Project, in Project name, type the following text, as shown in Figure 3-6:
    My Reports
    Figure 3-6

    Figure 3-6 New Report Project

  4. To add the project, choose Finish. You can now see the project in the Navigator view, as shown in Figure 3-7.
    Figure 3-7

    Figure 3-7 A project in the Navigator view

Task 2: Create a new report

You can create a report in the following ways:

  • Start with a blank report design.
  • Use a predefined report template.

    For each template, BIRT Report Designer provides a cheat sheet, which contains step-by-step instructions, to help you create the report.

For this tutorial, you start with a blank report design.

  1. Choose File rarrd.jpg New rarrd.jpg Report. New Report appears. Figure 3-8 shows the window that appears in BIRT Report Designer. New Report is slightly different in BIRT RCP Report Designer.
    Figure 3-8

    Figure 3-8 New Report in BIRT Report Designer

  2. In BIRT Report Designer, in the tree view of the available folders, select the project that you created. This step applies only to BIRT Report Designer users.
  3. Type the following text as the file name:
    Customers.rptdesign
  4. Choose Next. New Report provides options for starting with a blank report and several report templates, as shown in Figure 3-9.
    Figure 3-9

    Figure 3-9 Report templates in New Report

  5. Select Blank Report, then choose Finish. Your new report appears in the main window. This window displays the layout editor, as shown in Figure 3-10. The layout editor shows an empty report page.
    Figure 3-10

    Figure 3-10 Blank report design

The remainder of this tutorial provides the detailed steps for creating the customer report.

Task 3: Build a data source

Before you begin designing your report in the layout editor, you build a BIRT data source to connect your report to a database or other type of data source. When you build a data source, you specify the driver class, data source name, and other connection information that is specific to the type of data source. For this tutorial, you use the sample database, Classic Models, that is already configured for use with BIRT Report Designer. You do not need to specify the connection information for this sample database.

  1. Choose Data Explorer. If you use the default report design perspective, Data Explorer is to the left of the layout editor, next to Palette, as shown in Figure 3-11. If Data Explorer is not open, choose Window rarrd.jpg Show View rarrd.jpg Data Explorer.
    Figure 3-11

    Figure 3-11 Data Explorer

  2. Right-click Data Sources, then choose New Data Source from the context menu. New Data Source displays the types of data sources you can create, as shown in Figure 3-12.
    Figure 3-12

    Figure 3-12 New Data Source

  3. Select Classic Models Inc. Sample Database from the list of data source types. Use the default data source name, then choose Next. Connection information about the new data source appears.
  4. Choose Finish. BIRT Report Designer creates a new data source that connects to the sample database. It appears within Data Sources in Data Explorer, shown in Figure 3-13.
    Figure 3-13

    Figure 3-13 Data Sources in Data Explorer

Task 4: Build a data set

Now, you are ready to build your data set. A data set identifies the data to retrieve from the data source. If your report connects to a JDBC data source, such as the sample database, you use a SQL SELECT statement to specify the data to retrieve.

  1. In Data Explorer, right-click Data Sets, and choose New Data Set from the context menu.
  2. In New Data Set, in Data Set Name, type the following text, as shown in Figure 3-14:
    Customers
    Figure 3-14

    Figure 3-14 New Data Set

  3. Use the default values for the other fields.
    • Data Source Selection shows the type and name of the data source that you created earlier.
    • Data Set Type indicates that the data set uses a SQL SELECT query.
  4. Choose Next.

    The Query page displays information to help you create a SQL query. Available Items lists all the schemas in the data source, including CLASSICMODELS, which you use for this tutorial and other reports you want to create with the sample database. You can click the plus (+) sign next to CLASSICMODELS to display the tables. The text area on the right side of this dialog shows the following required keywords of a SQL SELECT statement:

    select from
  5. In the text area, type the following SQL SELECT statement to specify the data to retrieve:
    select customerName, contactLastName, contactFirstName, phone from Customers

    Although the data set editor shows table and column names in uppercase letters, you can type these names in the case you prefer because SQL is not case-sensitive. If you do not want to type the query, you can drag columns and tables from Available Items to the text area.

    The SELECT statement that you created, which is shown in Figure 3-15, gets values from the CUSTOMERNAME, CONTACTLASTNAME, CONTACTFIRSTNAME, and PHONE columns in the CUSTOMERS table.

    Figure 3-15

    Figure 3-15 SQL SELECT statement in Edit Data Set

  6. Choose Finish to save the data set. If you typed the query correctly, Edit Data Set appears. If you made a mistake, an error message appears before Edit Data Set opens. Edit Data Set displays the columns you specified in the query, and provides options for editing the data set.
  7. Choose Preview Results to make sure the query is valid and that it returns the correct data. Figure 3-16 shows some of the data rows that the query returns.
    Figure 3-16

    Figure 3-16 Data rows returned by a SQL SELECT statement

  8. Choose OK.

Task 5: Lay out the report

In this procedure, you insert elements in the report page to display the data from the data set that you created previously. You start by inserting a table element, then you insert data elements in the table. It is important to understand the functionality that the table provides. The table:

  • Iterates through all the data rows that a data set returns
  • Enables you to lay out data easily in a row and column format
  1. Choose Palette. The palette displays all the elements that you can place in a report.
  2. Drag a table element from the palette, and drop it in the report in the layout editor. Insert Table prompts you to specify the number of columns and detail rows to create for the table. The dialog also prompts you to select a data set to bind with the table.
  3. In Insert Table, specify the following values:

    • In Number of columns, type 3.
    • In Number of details, type 1.
    • In Data Set, select Customers from the drop-down list.

    Choose OK. A table appears in the layout editor.

  4. Choose Data Explorer.
  5. In Data Explorer, expand Data Sets, then expand Customers. The columns that you specified in the query appear below Customers.
  6. Drag CUSTOMERNAME from Data Explorer, and drop it in the first cell in the table's detail row, as shown in Figure 3-17. The detail row displays the main data in the report. In the generated report, the detail row repeats to display all the data rows from the data set.
    Figure 3-17

    Figure 3-17 Dragging a column from Data Explorer and dropping it in a table cell

    In the layout editor, the table cell in which you dropped the CUSTOMERNAME field contains a data element that displays [CUSTOMERNAME]. Above this data element is a label element that the layout editor automatically added to the header row. This label displays the field name as static text. It serves as the column heading. Figure 3-18 shows the data and label elements.

    Figure 3-18

    Figure 3-18 Data and label elements in a table

  7. Drag PHONE from Data Explorer, and drop it in the second cell in the detail row.
  8. Drag CONTACTFIRSTNAME, and drop it in the third cell in the detail row.
  9. Drag CONTACTLASTNAME, and drop it in the third cell in the detail row, below CONTACTFIRSTNAME. The report page should look like the one shown in Figure 3-19.
    Figure 3-19

    Figure 3-19 Customer and contact information added to a table

  10. Choose Preview, the tab at the bottom of the layout editor. BIRT Report Designer generates and displays the report in HTML format, as shown in Figure 3-20. Scroll down to see the entire report.
    Figure 3-20

    Figure 3-20 Preview of report data

As Figure 3-20 shows, the data is correct, but it appears in random order. It makes more sense to sort the data alphabetically by customer name. The report's appearance also needs improvement.

Task 6: Sort the data

When you first create and preview a report, the report displays the data rows in the order in which the query returns them. The order can vary, depending on many factors, such as how data was supplied in the data source. In most cases, you will want to change the order in which data appears in the report.

  1. Choose Layout to return to the layout editor.
  2. Open Property Editor, if necessary. If you use the default report design perspective, Property Editor appears below the layout editor. If it is not open, choose Window rarrd.jpg Show Viewrarrd.jpgProperty Editor.
  3. In the layout editor, select the table by selecting the Table tab in the lower left corner, as shown in Figure 3-21. This tab appears when you hover the mouse pointer over the lower left corner of the table.

    Figure 3-21

    Figure 3-21 Selecting the table

    Property Editor displays the properties for the table, as shown in Figure 3-22.

    Figure 3-22

    Figure 3-22 Property Editor displaying the general properties of the table

  4. Choose the Sorting tab, then choose Add to specify a sort key.
  5. In New Sort Key, specify the following values:

    • In Key, select CUSTOMERNAME from the drop-down list.
    • Use the default values for the other fields.

    Figure 3-23 shows the sort definition.

    Figure 3-23

    Figure 3-23 Sort definition in New Sort Key

    Choose OK. The Sort page displays the defined sort key.

  6. Preview the report. The sorted data appears in ascending order by customer name, as shown in Figure 3-24.

    Figure 3-24

    Figure 3-24 Data sorted by customer name

    Notice that names with uppercase letters appear at the top of the list. BIRT sorts string data by UCS-2 code point values. In ASCII-based character sets, uppercase letters have lower code point values than lowercase letters. Therefore, uppercase letters appear before lowercase letters.

  7. Sort the customer names case-insensitively so that ANG Resellers appears after American Souvenirs Inc., rather than before.

    1. Choose Layout to return to the layout editor.
    2. In the Sort page, shown in Figure 3-25, select the sort key, then choose Edit.

      Figure 3-25

      Figure 3-25 Sort key displayed on the Sort page

    3. In Edit Sort Key, change the Sort Key expression to the following expression, then choose OK:
    row["CUSTOMERNAME"].toUpperCase()

    This expression uses the JavaScript toUpperCase( ) function to convert all the customer name values to uppercase before sorting. JavaScript function names are case-sensitive, so you must type toUpperCase( ) exactly as shown. References to column names are also case-sensitive. In this expression, row["CUSTOMERNAME"] is the correct name to use. If you type row["customername"], for example, BIRT Report Designer displays an error when you run the report. You can verify the capitalization of a column name by looking at the name that is displayed in Data Explorer.

  8. Preview the report.

Task 7: Format the report

Now that you verified that the report displays the correct data in the correct order, you can turn your attention to improving the report's appearance. You perform the following tasks in this section:

  • Edit the text of the column headings.
  • Format the column headings.
  • Display the contact first and last names on the same line.
  • Increase the space between rows.

Edit the column headings

  1. Choose Layout to return to the layout editor.
  2. Double-click the first column heading, CUSTOMERNAME. The column heading is in the first row—the header row—of the table.
  3. To replace all the highlighted text, start typing, then press Enter when you finish. To edit the text, click once to deselect the text, then position the cursor where you want to add or delete characters.

    Replace CUSTOMERNAME with the following text:

    Customer
  4. Repeat steps 2 and 3 to change the second and third column headings to the following text:
    Phone Contact

    The report design should look like the one shown in Figure 3-26.

    Figure 3-26

    Figure 3-26 Revised column headings in a report design

Format the column headings

To format a report element, set its properties in one of the following two ways:

  • Set an element's properties through Property Editor. Use this method to format only the selected element.
  • Define a style that contains the desired properties, and apply the style to an element. Use this method to define format properties once and apply them to more than one element.

You might notice that in the report design, the column headings appear in plain text and are left-aligned. The generated HTML report, however, displays the column headings in bold and centered. This discrepancy occurs because BIRT uses the browser's default format for items placed in a table header.

In this procedure, you use the Property Editor to align the column headings to the left, and you define a style to add color to the header row.

  1. To format the column headings using Property Editor:
    1. Select all the column headings. To select multiple elements, press and hold the Shift key as you click each element. Property Editor displays the properties for the selected elements, as shown in Figure 3-27.
      Figure 3-27

      Figure 3-27 Properties for selected elements in Property Editor

    2. Choose the Left button to align the column headings to the left. leftbuttonicon.jpg
    3. Choose the B button to format the column headings as bold text. b_button.jpg
    4. Deselect the column headings by clicking the white space outside the table.
  2. To add a background color to the header row, using a style:
    1. From the main menu bar, choose Element rarrd.jpg Style rarrd.jpgNew Style.

      New Style appears, as shown in Figure 3-28. The left side displays the property categories. The right side displays the properties for the category that you select.

      Figure 3-28

      Figure 3-28 New Style

    2. For Custom Style, type the following name for the style:
      table_header_row
    3. Choose Background from the list of property categories. New Style displays the background properties that you can set.
    4. Specify a color for the Background Color property, using one of the following methods:

      • Select the button next to the property, then select a color from the color palette that appears.
      • Select a color from the drop-down list.

      Choose OK.

    5. In the layout editor, select the table. Selecting the table causes guide cells to appear at the top and left side of the table, as shown in Figure 3-29.
      Figure 3-29

      Figure 3-29 Guide cells at the top and left of a table

    6. Select the guide cell next to the header row.
    7. In Property Editor, choose Properties, then choose General to display the general properties for the row.
    8. Apply the style that you just created by selecting table_header_row from the drop-down list next to Style. BIRT Report Designer applies the style to the header row and it appears in color.
  3. Preview the report. The report should look like the one shown in Figure 3-30.
    Figure 3-30

    Figure 3-30 Report preview showing header row style

Display first and last names on the same line

When you place multiple elements in a single cell, BIRT Report Designer creates block-level elements. If you are familiar with HTML, you know that each block element starts on a new line. To display multiple elements on the same line, you need to set them as inline elements. Alternatively, you can concatenate the first and last name values to display in a single data element, as described in this procedure.

  1. Choose Layout to return to the layout editor.
  2. Delete the data element that displays [CONTACTLASTNAME].
  3. Double-click the data element that displays [CONTACTFIRSTNAME].

    Edit Data Binding, shown in Figure 3-31, shows information about the data associated with the current data element. In Expression, dataSetRow["CONTACTFIRSTNAME"] indicates that the data element displays data from the CONTACTFIRSTNAME field in the data set.

    Figure 3-31

    Figure 3-31 Edit Data Binding

  4. Click the expression builder button next to the Expression field.

    builderbuttonicon.jpg

    The expression builder displays the expression in the text area at the top of the window.

  5. To concatenate the first and last names, edit the expression as follows:
    dataSetRow["CONTACTFIRSTNAME"] + " " +
       dataSetRow["CONTACTLASTNAME"]
    Figure 3-32 shows this expression in the expression builder. The empty quotation marks (" ") add a space between the first name and last name. You can type the expression in the text area or double-click an item in the lower right of the window to insert it in the expression.
    Figure 3-32

    Figure 3-32 The expression builder displaying the expression to concatenate data

  6. Choose OK to close the expression builder.

    The edited expression appears in Edit Data Binding.

  7. Choose OK to save the changes to the data element.
  8. Preview the report. The report should look like the one shown in Figure 3-33.
    Figure 3-33

    Figure 3-33 Report preview showing concatenated contact names

Increase the space between rows

The default layout adds a minimum space between table rows. Typically, you will want to adjust the spacing between rows.

  1. Choose Layout to return to the layout editor.
  2. Select the table's detail row, the middle row, as shown in Figure 3-34.

    Figure 3-34

    Figure 3-34 Selected table row in the layout editor

    Property Editor displays the properties for the row. The title that appears in Property Editor shows the type of element that you select, so you should see Property Editor—Row.

  3. In the General properties, set Height to 24 points. The height of the row increases, as shown in Figure 3-35.
    Figure 3-35

    Figure 3-35 Row height set to 24 points

  4. Preview the report. The report should look like the one shown in Figure 3-36. There is more space between the rows of data.
    Figure 3-36

    Figure 3-36 Report preview showing increased row spacing

Task 8: Create a report title

All your report needs now is a title. To display a title, you can use either a label element, a text element, or a data element. The following list describes each type of element:

  • The label element is suitable for short, static text, such as column headings.
  • The data element is suitable for displaying dynamic values from a data set field or a computed field.
  • The text element is suitable for multiline text that contains different formatting or dynamic values.

In this procedure, you use a text element and HTML tags to format the text. Note that you are not required to use HTML to create formatted text. If, however, you are well-versed in HTML or web design, you might prefer using HTML to create a block of formatted text.

  1. Choose Layout to return to the layout editor.
  2. Choose Palette.
  3. Drag the text element from the palette, and drop it above the table.
  4. In Edit Text Item, select HTML from the drop-down list that displays Auto.

    When you select HTML, you can embed HTML tags or CSS properties in the text. You can type the tags or you can insert the commonly used HTML tags that the text editor provides.

  5. Specify the following text in the text area, shown in Figure 3-37:
    <CENTER><B><span style="font-size: larger"> Customer List </B></span><BR> <FONT size="small">For internal use only</FONT><BR><BR> Report generated on <VALUE-OF>new Date()</VALUE-OF> </CENTER><BR><BR>
    Figure 3-37

    Figure 3-37 Text with HTML tags

  6. Choose OK, then preview the report. The report should look like the one shown in Figure 3-38.
    Figure 3-38

    Figure 3-38 Report preview showing formatted report title

As you can see, using the text element with embedded HTML enables you to:

  • Use different formatting for each line in a multi-line text block.
  • Insert dynamic values, such as the current date.

Alternatively, you can use

  • Two label elements to display the first and second lines of static text
  • A data element to display the third line that contains the dynamic value

Next steps

You just built your first report and worked with some of the basic tools and features of BIRT Report Designer. There are many more tasks that you can accomplish to build more sophisticated reports. Some of these tasks, described in other chapters of this book, include

  • Connecting to your own data source
  • Creating charts
  • Creating cross tabs
  • Creating report parameters for user input
  • Building reports that contain subreports
  • Formatting report elements based on conditions
  • Hiding report elements or sections based on conditions
  • Adding hyperlinks to link your report to web locations or to link one report section to another

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