Skip Headers
Oracle® Reports Building Reports
10g Release 2 (10.1.2)
B13895-01
  Go To Documentation Library
Library
Go To Product List
Product
Go To Table Of Contents
Contents
Go To Index
Index

Previous
Previous
Next
Next
 

22 Building a Conditional Form Letter Report

In this chapter, you will learn about reports that generate different versions of a form letter based on changing conditions. By following the steps in this chapter, you can generate the report output shown in Figure 22-1 and Figure 22-2.

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

Description of Figure 22-1  follows
Description of "Figure 22-1 Conditional form letter report output, base version"

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

Description of Figure 22-2  follows
Description of "Figure 22-2 Conditional form letter report output, alternate version"

Concepts

Data Relationships

This report uses one query to select all data.

Layout

This report uses the Form Letter layout style. You'll also create the various pieces of boilerplate that will comprise the letter. To govern the printing of these boilerplate objects, you'll use vertically collapsing anchors and PL/SQL format triggers to conditionally produce different form letters for employees who meet the specified criteria.

Example Scenario

In this example, you will 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.

As you build this example report, you will:

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.

22.1 Prerequisites for this example

To build the example in this chapter, you must have access to the SCOTT sample schema provided with the Oracle Database. If you do not know if you have access to this sample schema, contact your database administrator.

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 condform_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.


  8. 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 22.1, "Prerequisites for this example" describes the sample schema requirements for this example.

  9. 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.

  10. Click Next.

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

  12. Save the report as condform1_your_initials.rdf.

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 (10 centimeters).

To add more text:

  1. Click the Text tool in the tool palette.

  2. Click about 0.25 inches (0.5 centimeters) 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.
    
  4. Click once in an open area of the Paper Layout view.

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

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

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

  7. 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%.
    
  8. 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 
    
  9. 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 (for example, B_ALL2 and B_ALL3) move up in the layout whenever objects above them (for example, 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 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

Description of Figure 22-3  follows
Description of "Figure 22-3 Property Inspector with anchor properties displayed"

To create format triggers:

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

    • Under Advanced Layout, double-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;
    

    This boilerplate will print only in the letters to employees whose commissions are greater than $500.

  3. Repeat the steps above, but this time enter the following PL/SQL for B_ALL2:

    function B_ALL2FormatTrigger return boolean is
    begin
       if ((:comm < 500) or (:comm is null)) then 
         return(TRUE); 
       else return(FALSE); 
       end if; 
    end;
    

    This logic causes B_ALL2 to print only in the letters where B_SALESREP does not print.

    Figure 22-4 Paper Layout view of modified report

    Description of Figure 22-4  follows
    Description of "Figure 22-4 Paper Layout view of modified report"

  4. Compile, save, and run your report. Page through the form letters to see that some have the dinner invitation while others have the "thank you" message.


    Tip:

    To preview this report for a specific destination type, in the Paper Design view, choose File > Preview Format, and select the destination type. Your report output will display as though using Printer fonts instead of screen display fonts, and you can get a clearer indication of the appearance (for example, line wrapping) of the printed report.

    In addition, when you print a conditional form letter report on stationery as illustrated, be sure to take into account the position of the letterhead, and so on, when creating the layout so the text of the letter fits into the overall design of the stationery.


22.5 Summary

Congratulations! You have successfully created a conditional form letter report. You now know how to:

For more information on any of the wizards, views, or properties used in this example, refer to the Oracle Reports online Help, which is available in Reports Builder or hosted on the Oracle Technology Network (OTN), as described in Section 3.1.1, "Using the Oracle Reports online Help".