When trying to open the flow/action in Flow Designer, "Failed to deserialize ComplexObject" error message is displayedIssue When trying to open the flow/action in Flow Designer, "Failed to deserialize ComplexObject" error message is displayed. Browser Console Error:Failed to load resource: the server responded with a status of 500 (Internal Server Error)js_includes_amb.jsx:3 amb.ServerConnection [ERROR] Connection brokenCause The issue might be: - Due to the max length problem (Somehow the complex object field was set to have a max length of 500 when changed it to 8000 it works). OR - Complex object data for Action Output was wrongfully saved as a wrong data type (Somehow complex data staying as Array.Object format where its type was updated to String type and therefore a type mismatch had occurred). OR - Users might have an input/output with the name "sys_id" which is restricted and causes database issues. ResolutionWe would recommend: - Changing the max length of the field and then disassociating the truncated complex object value from the flow should fix this issue. (Note: We now normally set complex objects to 65000 max length.) OR - Updating the sys_complex_object table files to specify complex data as the correct object type should fix this issue. OR - Users can use other words from reserved/restricted keywords (like sysid but not sys_id) should fix this issue.