Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

A global variable is a variable that is accessible from any session in the same execution. You can use ALH API to create a global variable and specify its value by calling ALH.setGlobalVariable(String variableName, Object value).
 

Code Block
languagetext
public void setGlobalVariable(String variableName, Object value) {
	...
}

 

The code example is as follows

...