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

22
Building a Conditional Form Letter Report

Figure 22-1 Conditional form letter report output, base version

Text description of cndfrm_fin.gif follows.

Text description of the illustration cndfrm_fin.gif

Figure 22-2 Conditional form letter report output, alternate version

Text description of cndfrm_out2.gif follows.

Text description of the illustration cndfrm_out2.gif

The two form letters above were generated from the same report. As you can see, the two letters share a number of features. Hence, it is more convenient to create a base form letter and then apply conditions to certain parts to determine whether they should be displayed for the current record, in this case, employees.

Concepts

Data Relationships
Layout

Example Scenario

Suppose that you want to create a form letter to invite all of your employees to the company picnic. For your top sales representatives, though, you also want to include a special invitation to a dinner party in the form letter. For all other employees, you want to include a thank you without the dinner invitation.

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

Table 22-1 Features demonstrated in this example
Feature Location

Create a data model and a layout.

Section 22.2, "Create the data model and layout"

Add text.

Section 22.3, "Add additional text"

Anchor objects together and create format triggers to control whether the text displays.

Section 22.4, "Add logic for text"

22.1 Prerequisites for this example

To build the example in this chapter, you must have access to the EMP and DEPT schema, which is provided by default with the Oracle9i database. The default user ID and password for accessing this schema is scott/tiger.

22.2 Create the data model and layout

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 layout:

  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 Form Letter, 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 ENAME, COMM FROM EMP
    ORDER BY ENAME
    


Note:

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

  • Copy and paste the code from the provided text file called condform1_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 Next. Ensure that you connect to a database that has the appropriate schema for this example. Section 22.1, "Prerequisites for this example" describes the sample schema requirements for this example.


    1. Type the first paragraph of your letter in the Form Letter Text window:

      Dear Employee  &<ENAME>, 
      
      Mark your calendar! You are invited to 
      attend the Summit Sporting Goods annual
      picnic on June 15, from 11:00 AM to 
      6:00 PM.  Be prepared for lots of food,
      lots of entertainment, and lots of fun.
      

      Tip:

      Be sure to include hard returns at the end of each line.

    1. Click Next.

    2. On the Template page, select No template, then click Finish to preview your report output in the Paper Design view.

    22.3 Add additional text

    After you add the basic text in the Report Wizard, you need to create some additional text. The text must reside inside of the repeating frame, so before you add text, you will resize the repeating frame.

    To resize the repeating frame:

    1. Click the Paper Layout button in the toolbar to display the Paper Layout view.

    2. In the Object Navigator, type R_G_ENAME in the Find field to locate it.

    3. Click R_G_ENAME to select it. It is simultaneously selected in the Paper Layout view.

    4. Click the title bar of the Report Editor to make it the active window.

    5. Click the bottom handle of R_G_ENAME and drag it down about 4 inches.

    To add more text:

    1. Click the Text tool in the tool palette.

    2. Click about 0.25 inches below the first text object.

    3. Type the following text:

      Because you're one of our top sales 
      representatives, we would like to 
      invite you to a celebration dinner 
      after the picnic. Employees such as 
      yourself brought in over $10 million 
      in increased revenues this year, a 
      15% increase over last year. The 
      dinner will be held at the City Inn 
      from 7:00 PM to midnight. Dinner will
      be served at 7:30 PM. Please reply to 
      Human Resources if you plan to 
      attend.

    1. Click once in an open area of the Paper Layout view.

    2. Choose Tools > Property Inspector to display the Property Inspector for the boilerplate text object:

      • Under General Information, set the Name property to B_SALESREP.

    3. Click on the title bar of the Report Editor to make it the active window again.

    4. Repeat the steps above, but this time use the following text and name it B_ALL2:

      We would also like to take this 
      opportunity to thank you for all of 
      your efforts over the last year.  As 
      a result of your hard work, company 
      revenues increased 15%.

    1. Again, repeat the steps above, but this time use the following text and name it B_ALL3:

      I look forward to seeing you there! 
      
      J. King 
      President 
      Summit Sporting Goods 

    1. Rename the original text object to B_ALL by selecting it and choosing Tools > Property Inspector to set the Name property.

    22.4 Add logic for text

    The text in B_SALESREP and B_ALL2 applies only to some employees. Hence, you need to apply a condition to each one to determine when it should appear. You also need to ensure that objects (e.g., B_ALL2 and B_ALL3) move up in the layout whenever objects above them (e.g., B_SALESREP and B_ALL2) do not print. Otherwise, you will have large gaps in your report output for employees who do not get all of the objects. To achieve this, you must anchor the text objects together.

    To create collapsing anchors:

    1. In the Paper Layout view, click the Anchor tool in the tool palette.

    2. Click and drag a line from the top left corner of B_SALESREP (the second text object) to the top left corner of B_ALL (the first text object). Double-click to create the new anchor object.

    3. Choose Tools > Property Inspector to display the Property Inspector for the anchor object:

      • Set the Child Edge Percent and Parent Edge Percent properties are set to 0.

      • Set the Collapse Vertically property to Yes.

    4. Click the title bar of the Report Editor to make it the active window again.

    5. Repeat the steps above, but this time drag from top left corner of B_ALL2 to the top left corner of B_SALESREP.

    6. Again, repeat the steps above, but this time drag from top left corner of B_ALL3 to the top left corner of B_ALL2.

    Figure 22-3 Property Inspector with anchor properties displayed

    Text description of cndfrm_pi.gif follows.

    Text description of the illustration cndfrm_pi.gif

    To create format triggers:

    1. In the Paper Layout view, double-click B_SALESREP to display the Property Inspector, and set properties:

      • Under Advanced Layout, click the Format Trigger property field to display the PL/SQL Editor.

    2. In the PL/SQL Editor, use the template to enter the following PL/SQL code:

      function B_SalesrepFormatTrigger return boolean is
      begin
        if :comm >= 500 then return(TRUE); 
         else return(FALSE); 
        end if; 
      end;


  • 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