Placement of Variable Declarations

Variables are declared after the class definition (the end-class statement) before anything else. After you have declared a variable, you can use it anywhere in your program.

class Example
   method Example_M1(&par As string);
end-class;

Global boolean &b;

method Example_M1
   /+ &par as String +/
   &b = False;
end-method;