Symptom:
- Error: "[Element] item is not defined."
Resolution:
- Connect element's arrow to the next element.
Example:
- Error: Email 'Send Email' Error item is not defined.
|
Symptom:
- Error: "No target defined."
Resolution:
- Select a target variable or dataset to receive the assignment.
|
Symptom:
- Error: "Next item is not defined."
Resolution:
- Add the next item/element, then connect the arrow to it.
|
Symptom:
- Error: "Item 'Trim(V_VariableName)' does not exist."
Cause:
- 'Trim(V_VariableName)' has been assigned to an output parameter.
Resolution:
- Remove "Trim" around output variable. Pass just 'V_VariableName' as the output variable.
|
Symptom:
- Error: "Next item not defined" (or similar).
- *AND* Cannot find any reason for it.
Resolution:
- Change the "Return Code" value of one of the "Exit Sub" elements.
- Publish (should be successful, even if the entered code value does not exist).
- Change the "Return Code" value back to the desired value.
- Publish again.
- TO TRY: Just change the "Return Code" value to the one you want.
|
Symptom:
- Error: Item '[item ID]' is across subroutine boundaries.
Cause:
- Connector name is not unique in entire app across all subroutines.
- This became a requirement starting in release 8.x.
Resolution:
- Change connector names to be unique in the entire app acress all subroutines.
|
Symptom:
- Error: Problem with validation parameter.
Cause:
- Variable passed in the parameter is not defined/declared.
Resolution:
- Define/declare the variable.
|