Salesforce Flow Error: Value of class com.force.swag.soap.Time is not a ValueType: STRING

Published by

on


It’s a simple but confusing error. You’re getting this error because flow doesn’t support Time Data Type and you are using Time data type field in your flow.

Simply create a formula field of return type ‘Text’ and embed your time field from that. Now use this new formula field in flow in-place of the Time field (Text(TimeField__c)).