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;