Function specified in criteria has returned null value and it cannot be evaluated
Im trying to evaluate if a variable is null. It doesnt matter if i use .isBlank() or .isNull() the line always returns: "value cannot be evaluated". I dont know how to handle this type of scenario.
Error: Function specified in criteria has returned null value and it cannot be evaluated Line:(5)
I run this script on User Input
- if(input.Action_Quote == "Edit")
- {
- input.Action_Quote = null;
- currentRecord = Quotes[ID == input.ID];
- if( currentRecord.isBlank())
- {
- info "work";
- }
- else
- {
- info "it doesnt";
- }