When you are creating a single-query report, such as this one, you can use the Report Wizard to create the data model and layout simultaneously.
To create a data model and group above layout:
Launch Reports Builder (or, if already open, choose File > New > Report).
In the Welcome or New Report dialog box, select Use the Report Wizard, then click OK.
If the Welcome page displays, click Next.
On the Report Type page, select Create both Web and Paper Layout, then click Next.
On the Style page, type a Title for your report, select Group Above, then click Next.
On the Data Source page, click SQL Query, then click Next.
On the Data page, enter the following SELECT
statement in the Data Source definition field:
SELECT ENAME, REPID, CUSTID, NAME, ADDRESS, TRIM(CITY)||', '||STATE||' '||ZIP LOCATION, AREA||' '||PHONE, CREDITLIMIT FROM EMP, CUSTOMER WHERE EMPNO = REPID ORDER BY REPID
Note:
You can enter this query in any of the following ways:Copy and paste the code from the provided text file called pagenum_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.
Click Next.
Note:
If you are not already connected to a database, you will be prompted to connect to the database when you click Query Builder or Next. Ensure that you connect to a database that has the appropriate schema for this example. Section 19.1, "Prerequisites for This Example"On the Groups page, click ENAME in the Available Fields list and click the right arrow (>) to move this field to the Group Fields list.
Move REPID to the Group Fields list, too, then click Next.
Figure 19-2 Selecting group fields in the Report Wizard
On the Fields page, click the double right arrows (>>) to move all of the fields to the Displayed Fields list, then click CUSTID and click the left arrow (<) to move it back to the Available Fields list, then click Next.
On the Totals page, click Next.
On the Labels page, change the labels and field widths as follows, then click Next:
Fields | Labels | Width |
---|---|---|
ENAME | Rep Name |
10 |
REPID | Rep ID |
6 |
NAME | Customer Name |
20 |
ADDRESS | Address |
20 |
LOCATION | Location |
20 |
AREA_PHONE | Area Phone |
12 |
CREDITLIMIT | Credit Limit |
8 |
Figure 19-3 Specifying labels and widths in the Report Wizard
On the Template page, click Finish to display your report output in the Paper Design view.
Save the report as pagenum_
your_initials
.rdf
.