ACTEX0007E:
The following value of the name attribute for a variable
is not valid:
incorrect_value.
Explanation:
A variable name has these restrictions:
- It can include only the following characters:
- Uppercase ASCII Latin letters A-Z.
The Unicode representation is \u0041-\u005a.
- Lowercase ASCII Latin letters a-z.
The Unicode representation is \u0061-\u007a.
- The ASCII underscore (_).
The Unicode representation is \u005f.
- The dollar sign ($).
The Unicode representation is \u0024.
- The ASCII digits 0-9.
The Unicode representation is \u0030-\u0039.
- It cannot be an empty string.
- It cannot contain any blank spaces.
- It cannot contain a period.
- It cannot start with
act_
in any form
(not in uppercase, lowercase, or mixed case).
Operator Response:
Correct the value of the name attribute for the variable, and update
any expression code that references the variable to use the new name.