User Guide > Scripting > Script Statements > Global Statement
Was this helpful?
Global Statement
Note:  This statement has been deprecated. Use either Public or Private variables instead of Global. Global is synonymous with Private. Private variables are variables that are global to a step, but are not shared by all steps in a process.
 
Description
Declare global variables (variables that are available to all procedures). That is, a global variable may be used by any expression written in any/all target field expressions for any/all target fields.
Syntax
Global variablename
Arguments
variablename - Name of a variable.
Example
Global x
x = 7
Last modified date: 08/02/2023