Had some code doing strange things. This is the example:
IF VAR1 = "UNKNOWN" THEN *
CALL SEND.EMAIL(ORDER.NO)
do other things
There was no END statement. My best guess was that U2 considered the "*" at the end as a NULL and allowed it to compile.
Does anyone know?
We changed it to be the following to solve the problem.
IF VAR1 = "UNKNOWN" THEN
CALL SEND.EMAIL(ORDER.NO)
END
do other things
------------------------------
Nelson Schroth
president
C3CompleteShop LLC
Harrison OH US
------------------------------
