080     INTERNAL LOGIC ERROR, CANNOT CONTINUE - LOGIC ID - ID# LINE# - line#

Cause:             In general, the error occurs if the logic is overly complex and relies heavily on bracketing. The creation of intermediate variables can lead to the error.

It is also possible to encounter this error when building a PROIV Function which uses SSO Tag Names in the logic.

The following line generates the error:

$S = "[" +  "" + tagname.returnString() + "]"

The following line does not generate the error:

$S = "[" + tagname.returnString() + "]"

Action:            Rearrange the sequence of the logic statements and try the generation again. 

Comment on this topic

Topic ID: 710080