I've been at this a while now, I'm reading a boolean colulmn from a list of records. With that, not all the records have a value, thus some contain "NULL" during a looping process. Items without a value are to be orphaned and pushed back into the prior task to again be addressed.
Within the Split Rule I've attempted the following:
IF (Bool != scnull (Plain text)) THEN...
----
IF (ToString(Bool) = Empty String (text) THEN...
----
IF (Bool = True (True/False) OR Bool = False (True/False))
THEN IF (Bool = True(True/False)) THEN Approve (Path) ELSE Deny (Path) ELSE Orphan (Path)
----
IF (Length(ToString(Bool)) >= 0)
THEN IF (Bool = True(True/False)) THEN Approve (Path) ELSE Deny (Path) ELSE Orphan (Path)
A Few others, but in the end whenever I compare my Boolean against a "NULL" I get either:
String was not recognized as a valid Boolean
OR
Unable to compare values that are not of the same type
Any suggestions?
I also though of creating a reference before hand and filtering out thos items in the Split, but then again those inital items would need to be Split with the same type of logic.
In K2 4.7 the Filter Operations contained an "IS NULL & IS NOT NULL" value.
Essentially I'm recreating a workflow in the new version of an existing working process.
Thanks,