Informix Error -660
-660 Loop variable variable-name cannot be modified.
An attempt was made to modify the value of a loop variable in a FOR statement. Loop variables cannot be modified inside a loop.
Example of error:
FOR i IN (1,2,3,4) LET i = i + 1; -- error END FOR
Correction: Use another variable in the LET statement.