Error -108 (Symbol not defined)¶
This error occurs when a function attempts to use an undeclared variable (symbols are variables) while the report option requiring all variables to be declared is enabled.
Example¶
let sName={Customer.LastName}*{Customer.FirstName}
When the report option "All variables in Functions Must be Declared" is enabled, the solution for this error is to add a DIM statement:
dim sName
let sName={Customer.LastName}*{Customer.FirstName}