Use computations to assign a value to an identified item when a page is submitted or displayed.
See Also:
Parent topic: Managing Computations, Validations, and Processes
A page computation assigns a value to an identified item when a page is displayed or submitted (rendered and processed). You create a page computation by running the Create Page Computation Wizard. For each computation, specify the item for which you are creating the computation and a computation type.
You can also use application-level computations to assign values to items. Most page-level computations populate page items. In contrast, most application-level computations populate application items.
Parent topic: Understanding Page Computations
Once you create a computation, you can edit it on the Edit Page Computation page.
To edit a page computation:
See Also:
Parent topic: Understanding Page Computations
You control when a computation executes by editing the Sequence and Point attributes. The Sequence attribute determines the order of evaluation. The Point attribute determines the point in page rendering or processing at which the computation executes. The most typical computation point is After Submit.
To edit a computation point and source:
See Also:
Parent topic: Understanding Page Computations
A good example of using computations can be illustrated by a page containing form fields for entering phone numbers. In this example, the phone number is stored in one database column; however, the data entry form breaks the phone number into three components: area code, prefix, and line number. In this example, the page items are called P10_AREA_CODE
, P10_PREFIX
, and P10_LINE_NUMBER
.
Next, suppose you need to combine the values stored in these items into a single string. You could accomplish this by using an After Submit computation and store the combined values in an item called P10_PHONE_NUMBER
.
To create a computation to store the combined values of P10_AREA_CODE
, P10_PREFIX
, and P10_LINE_NUMBER
in new items:
P10_PHONE_NUMBER
to store the combined values of P10_AREA_CODE
, P10_PREFIX
, and P10_LINE_NUMBER
.P10_PHONE_NUMBER
.Parent topic: Understanding Page Computations