A script-enabled browser is required for this page to function properly.

Referencing Oracle Forms Item Values

The following types of items store values:

To reference the value stored in an item:

    Assign the value of an expression to an item:
    :ord.total := price * .85;

    Assign the value of one item to another item:
    :ord.comment := :control.textfield;

    Select database values into items:
    SELECT phone INTO :info.tel_no FROM warehouse
    WHERE id = :info.warehouse_id;