Variables

Variables are placeholders for values in your process. Each variable has a name, description, type and value. Oracle BPM provides different classes of variables based on the scope and context where they are used.

Order of Precedence within a PBL method

Variable names are resolved in the following order of precedence:
  1. Local
  2. Argument
  3. Instance

When accessing variables within a method, you should be aware of the order of precedence among different types of variables. This is important if you have variables of different types that have identical names.

To explicitly state the scope of a variable, use the following prefix keywords:
Keyword Description
this. Explicitly specifies an instance variable, including project and predefined variables.
arg. Explicitly specifies an argument variable.