Skip to main content

How can I troubleshoot workflow analysis errors in Savant?

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

  1. 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.

  2. Update the Expression: - Replace unsupported conditions with the appropriate method. For instance, use is_empty() instead of checking for null. - Example: Update your condition to is_empty(REG QUANTILE) to ensure compatibility.

  3. 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.

Did this answer your question?