Product Information > JADE Error Messages and System Messages > 6000 through 6999 - JADE Compiler Errors > 6408 - ExecuteFlag name is not a Boolean global constant

6408   ExecuteFlag name is not a Boolean global constant

Cause

This error occurs when the executeFlag name specified in the executeWhen statement is not a Boolean global constant. In the following example, Debug is a Boolean constant in the user-defined DemoFlagCategory category of global constants.

executeWhen Debug;
    write obj.name;
endExecuteWhen;

Action

Ensure that you have defined a Boolean global constant.