Skip Headers
Oracle® Database Express Edition 2 Day Plus Application Express Developer Guide
Release 2.1

Part Number B25310-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

2 How to Create a Parameterized Report

In an Oracle Application Express application, a report is the formatted result of a SQL query. You can generate reports in three ways:

This tutorial illustrates how to create a report in which the results depend on the form input, or a parameterized report. In this exercise, you create a report region based on a SQL query which references the value of a form item within the application.

This section contains the following topics:

Sample Report Utilizing a Form Input

Figure 2-1 is an example of a form in which the report results are based on user input. In this example, this user populates the form by making a selection from the Show list. The easiest way to create this type of report in Application Builder is to define a report region based on a SQL query.

About Sample Application

Application Builder installs with a number of demonstration applications. In this exercise, you create a new page within the demonstration application, Sample Application.

To see if Sample Application is installed:

  1. Log in to the Database Home Page using your database username and password.

  2. Click the down arrow on the right side of the Application Builder icon.

  3. From the menu, select Demonstrations.

    The Demonstration Applications page appears, displaying links to demonstration applications.

  4. Locate Sample Application and check the Status column:

    1. If the Status column displays Installed, return to the Database Home Page.

    2. If the Status column displays Not Installed, select Install in the Action column. Follow the on-screen instructions.

Creating a New Page

First, you create a new blank page and within Sample Application.

To create a new page:

  1. On Database Home Page, click the Application Builder icon.

  2. Select Sample Application.

  3. Click the Create Page button.

  4. For Page, select Blank Page and click Next.

  5. For Page, enter 700 and click Next.

  6. In Name, enter Ordered Products and click Next.

  7. For Tabs, accept the default, No, and click Next.

  8. Review your selections and click Finish.

  9. On the Success Page, click the Edit Page icon.

    The Page Definition for page 700 appears.

Creating the Query Region

Next, you need to create a report.

To create a query region to contain the report:

  1. Under Regions, click the Create icon as shown in Figure 2-2.

  2. Select Report and click Next.

  3. For Report Implementation, select SQL Report and click Next.

  4. For Display Region Attributes:

    1. For Title, enter Ordered Products.

    2. Accept the remaining default values and click Next.

  5. Enter following SQL query:

    SELECT p.category,
           p.product_name,
           i.quantity  FROM demo_product_info p,
           demo_order_items i
    WHERE p.product_id = i.product_id
      AND ( p.category = :P700_SHOW or :P700_SHOW = 'ALL' )
    
    
  6. Click Create Region.

Adding an Item

The previous SQL query references an item named P700_SHOW. Next, you need to create this item. An item is part of an HTML form. An item can be a text field, text area, password, select list, check box, and so on.

To create the select list P700_SHOW:

  1. Under Items, click the Create icon as shown in Figure 2-3.

  2. For Item Type, select Select List and click Next.

  3. For Select List Control Type, accept the default of Select List and click Next.

  4. For Item Name, enter P700_SHOW, accept the remaining defaults, and click Next.

  5. For List of Values:

    1. For Named LOV, select CATEGORIES.

    2. In Null Text, enter:

      - All Categories -
      
      
    3. For Null Value, enter:

      ALL
      
      
    4. Click Next.

  6. For Item Attributes, accept the defaults and click Next.

  7. Click Create Item.

Adding a Button to Submit the Page

For the report to be driven by the Product Category select list (the form input), you need to submit the page. To accomplish this, you need add a button.

To add a button to submit the page:

  1. Under Buttons, click the Create icon.

  2. For Button Region, select Ordered Products and click Next.

  3. For Button Position, select Create a button displayed among this region's items and click Next.

  4. In Button Name, enter P700_GO.

  5. Accept the remaining defaults and click Create Button.

    The Page Definition for page 700 appears.

Run the Page

To run the page:.

  1. Click the Run Page icon in the upper right corner as shown in Figure 2-4.

  2. If prompted to enter a username and password:

    1. For User Name, enter either demo or admin.

    2. For Password, enter your database username in lowercase letters.

    3. Click Login.

  3. When the Order Products page appears, select Computer from the Show menu and click Go.

As shown in Figure 2-5, notice that making a selection from the Show menu populates the form.

Figure 2-5 Form Results Being Populated from a Select List

Description of Figure 2-5 follows
Description of "Figure 2-5 Form Results Being Populated from a Select List"