How can I troubleshoot workflow analysis errors in Savant?
Workflow analysis errors in Savant can occur due to various reasons, including unsupported conditions in workflow expressions. This guide provides steps to identify and resolve common issues.
Common Workflow Errors
Unsupported Conditions in Workflow Expressions
One common issue arises when a condition in your workflow uses an unsupported method or syntax. For example, checking if a value equals null is not supported in Savant. Instead, you should use the is_empty() method to check for empty values.
Troubleshooting Steps
Identify the Problematic Condition: - Review your workflow expressions to locate any conditions that might be causing errors. - Look for unsupported syntax, such as
equals null.Update the Expression: - Replace unsupported conditions with the appropriate method. For instance, use
is_empty()instead of checking fornull. - Example: Update your condition tois_empty(REG QUANTILE)to ensure compatibility.Test the Workflow: - After making changes, run your workflow to verify that the issue is resolved.
Additional Assistance
If you need help updating your workflow expressions or encounter further issues, feel free to contact Savant support for assistance.
