Assign variables

The ASSIGN statement assigns a new value to a variable. The new value must have the appropriate type for the type of the variable.

 ASSIGN variable := expression

An example is provided here.

ASSIGN saluation := "Dear"
ASSIGN next_year := today + 10000
ASSIGN preferred_customer := (_data.NumberOfOrders >= 10)
ASSIGN Partner := _data.Partner