@HspStringCompareArray returns incorrectly
Content
Hi,
I tried using the @HspStringCompareArray function in a business rule which is pretty simple like the example below.
FIX(XXXXX)
"Jan"(
IF(@HspStringCompareArray(@NAME("Jan"),@NAME("Jul":"Dec"))==1)
@RETURN("Bingo",ERROR);
ENDIF
)
I would expect and it should never return the error message because obviously Jan is not present in Jul ~ Dec, however it is returning the error message. Even with IF(@HspStringCompareArray(@NAME("Jan"),@NAME("Jul"))==1) it is returning the error message whis is so weird. But if I use IF(@HspStringCompare(@NAME("Jan"),@NAME("Jul"))) then it will not go to the return line which is correct.
0