Variable Declaration
A variable is used to store the data that it represents. It is treated as a placeholder that can be referenced in a rule.
Syntax
variableName is a[n] Data_Type;
where
- variableName is the name of the variable.
- Data_Type is the data type of the variable (boolean, integer, real, or string).
For example:
expDate is an integer;
expDate = Date_Convert(PIS12.expirationDate);