Playing with the version 4.0 evaluation I'm getting perplexing behaviour:
If I type in the following in the Textual form of Rule entry:
If CURRENT_DAY_OF_WEEK<>'Sunday' AND CURRENT_DAY_OF_WEEK<>'Saturday' Then
Sys.TodayIsWorkingDay='Yes'
Else
Sys.TodayIsWorkingDay='No'
then the automatic translation in the Rule table is:
CURRENT_DAY_OF_WEEK
Rule(1) <>'Sunday' AND <>'Saturday' Sys.TodayIsWorkingDay='Yes'
Rule(2) <>'Sunday' Sys.TodayIsWorkingDay='No'
Rule(3) <>'Saturday' Sys.TodayIsWorkingDay='No'
which I think is plain wrong! Is this a bug, or am I misunderstanding something?