Skip Headers

Oracle Reports Building Reports
10g (9.0.4)

Part Number B10602-01
Go To Documentation Library
Home
Go To Table Of Contents
Contents
Go To Index
Index

Go to previous page Go to next page

5
Building a Tabular Report

Figure 5-1 Tabular report output

Text description of orbrtab_fin.gif follows.

Text description of the illustration orbrtab_fin.gif

Reports Builder enables you to build many types of reports, such as tabular, form letter, and group above reports. You can learn more about these different types of reports in the Reports Builder online help. This chapter describes the basic elements of a tabular report and how to build a simple tabular report.

About tabular reports

A tabular report is the most basic type of report you can build. The report output is organized in a multicolumn, multirow format, with each column corresponding to a column in the database table. In this example, the column labels "Deptno," "Dname," and "Loc," are derived from the columns in your SQL SELECT statement, but you can modify column labels as you wish.

Concepts

When you start Oracle Reports, it automatically creates a new report definition, which consists of default settings stored in a report buffer. You create the report you want by customizing this report definition.

Data Relationships
Layout

Example Scenario

In this example, you will use the Report Wizard to build one query to select all of the columns displayed in this report. Oracle Reports will create all other necessary objects (e.g., groups and columns) by default.

To see a sample tabular report, open the examples folder named tabular, then open the Oracle Reports example named tabular.rdf. For details on how to open it, see "Accessing the example reports" in the Preface.

Table 5-1 Features demonstrated in this example
Feature Location

Use the Report Wizard to create a tabular report with a paper layout.

Section 5.2, "Use the Report Wizard to create a report"

5.1 Prerequisites for this example

To build the example in this chapter, you must have access to the sample schema provided with the Oracle9i database. If you don't know if you have access to this sample schema, contact your database administrator. You should have access to the "Human Resources" portion of the schema to complete this example.

5.2 Use the Report Wizard to create a report

When you create a report, you can either use the Report Wizard to assist you or create the report yourself. To build the simple report in this example, you can use the Report Wizard. Using the wizard enables you to define the layout for the report, as well as set the data definition.

To create a simple report:

  1. Launch Reports Builder (or, if already open, choose File > New > Report)

  2. In the Welcome or New Report dialog box, select Use the Report Wizard, then click OK.

  3. If the Welcome page displays, click Next.

  4. On the Report Type page, select Create Paper Layout Only, then click Next.

  5. On the Style page, type a Title for your report, select Tabular, then click Next.

  6. On the Data Source page, click SQL Query, then click Next.

  7. On the Data page, enter the following SELECT statement in the Data Source definition field:

    SELECT ALL DEPARTMENTS.DEPARTMENT_ID, DEPARTMENTS.DEPARTMENT_NAME, 
    DEPARTMENTS.MANAGER_ID, DEPARTMENTS.LOCATION_ID
    FROM DEPARTMENTS
    ORDER BY DEPARTMENTS.DEPARTMENT_ID
    
    

    Tip:

    This query selects all the department IDs, the department names, the manager IDs, and the location IDs, then sorts the data by the department IDs.


Note:

You can enter this query in any of the following ways:

  • Copy and paste the code from the provided text file called tabular_code.txt into the Data Source definition field.

  • Click Query Builder to build the query without entering any code manually.

  • Type the code in the Data Source definition field.


  1. Click Next.


    Note:

    If you are not already connected to a database, you will be prompted to connect to the database when you click Next. Ensure that you connect to a database that has the appropriate schema for this example. Section 5.1, "Prerequisites for this example" describes the sample schema requirements for this example.


  1. On the Fields page, click the double right arrows (>>) to move all of the fields to the Displayed Fields list, then click Next.

  2. On the Totals page, click Next.

  3. On the Labels page, click Next.

  4. On the Template page, select Predefined Template and click Beige, then click Finish to display your report output in the Paper Design view. It should look something like this:

Figure 5-2 Paper Design view for the tabular report

Text description of orbrtab_fin.gif follows.

Text description of the illustration orbrtab_fin.gif


Note:

In the Paper Design view, you can see how the tabular report displays the data like a table, in order of department ID number.


  1. Save the report as tabularreport_<your initials>.rdf.

5.3 Summary

Congratulations! You have successfully created a tabular paper report. You now know how to:

For more information on any of the wizards, views, or properties used in this example, refer to the Reports Builder online help, which you can access in two ways:


Go to previous page Go to next page
Oracle
Copyright © 2002, 2003 Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Table Of Contents
Contents
Go To Index
Index